Browse Source

*** empty log message ***

Mike Goslin 25 years ago
parent
commit
99ab49ade3
2 changed files with 10 additions and 2 deletions
  1. 5 1
      panda/src/downloadertools/build_patch.cxx
  2. 5 1
      panda/src/downloadertools/multify.cxx

+ 5 - 1
panda/src/downloadertools/build_patch.cxx

@@ -1,5 +1,9 @@
 #include <pandabase.h>
-#include <getopt.h>
+#ifndef HAVE_GETOPT
+  #include <gnu_getopt.h>
+#else
+  #include <getopt.h>
+#endif
 #include <patchfile.h>
 #include <filename.h>
 

+ 5 - 1
panda/src/downloadertools/multify.cxx

@@ -1,5 +1,9 @@
 #include <pandabase.h>
-#include <getopt.h>
+#ifndef HAVE_GETOPT
+  #include <gnu_getopt.h>
+#else
+  #include <getopt.h>
+#endif
 #include <multifile.h>
 #include <filename.h>