Trying to fix mingw issue with boost trac ticket 4258.

This commit is contained in:
lotodore
2010-08-02 21:52:48 +00:00
parent 7be2094dac
commit f159ba08c5
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -68,6 +68,9 @@
#include <QtPlugin> #include <QtPlugin>
Q_IMPORT_PLUGIN(qjpeg) Q_IMPORT_PLUGIN(qjpeg)
Q_IMPORT_PLUGIN(qgif) Q_IMPORT_PLUGIN(qgif)
#ifdef __GNUC__
extern "C" void tss_cleanup_implemented() {}
#endif
#endif #endif
using namespace std; using namespace std;
+6
View File
@@ -51,6 +51,12 @@
#define ENABLE_LEAK_CHECK() #define ENABLE_LEAK_CHECK()
#endif #endif
#ifdef _WIN32
#ifdef __GNUC__
extern "C" void tss_cleanup_implemented() {}
#endif
#endif
using namespace std; using namespace std;
namespace po = boost::program_options; namespace po = boost::program_options;
using namespace boost::filesystem; using namespace boost::filesystem;