Forráskód Böngészése

oops, this causes problems with buildbot, fix later

David Rose 14 éve
szülő
commit
19ff5a0d7f
1 módosított fájl, 3 hozzáadás és 0 törlés
  1. 3 0
      dtool/src/dtoolutil/preprocess_argv.cxx

+ 3 - 0
dtool/src/dtoolutil/preprocess_argv.cxx

@@ -36,6 +36,8 @@ preprocess_argv(int &argc, char **&argv) {
 #ifndef _WIN32
 #ifndef _WIN32
   // Not Windows: do nothing.
   // Not Windows: do nothing.
 #else  // _WIN32
 #else  // _WIN32
+  // Temporarily commenting out to fix build.  Revisit shortly.
+  /*
   static Win32ArgParser parser;
   static Win32ArgParser parser;
   if (parser.is_cygwin_shell()) {
   if (parser.is_cygwin_shell()) {
     // Running within Cygwin: do nothing.
     // Running within Cygwin: do nothing.
@@ -46,5 +48,6 @@ preprocess_argv(int &argc, char **&argv) {
   parser.set_system_command_line();
   parser.set_system_command_line();
   argc = parser.get_argc();
   argc = parser.get_argc();
   argv = parser.get_argv();
   argv = parser.get_argv();
+  */
 #endif  // _WIN32
 #endif  // _WIN32
 }
 }