Browse Source

Bug fix - mix: windows - crash when click on 'Deploy to Network' #1077

cl-refactor
yann300 10 years ago
parent
commit
a3278d1b11
  1. 6
      mix/main.cpp

6
mix/main.cpp

@ -36,6 +36,12 @@ int main(int _argc, char* _argv[])
//https://bugs.launchpad.net/ubuntu/+source/appmenu-qt5/+bug/1323853
putenv((char*)"QT_QPA_PLATFORMTHEME=");
putenv((char*)"QSG_RENDER_LOOP=threaded");
#endif
#ifdef _WIN32
putenv((char*)"OPENSSL_CONF=c:\\");
#endif
#ifdef _WIN64
putenv((char*)"OPENSSL_CONF=c:\\");
#endif
try
{

Loading…
Cancel
Save