summaryrefslogtreecommitdiff
path: root/src/options/options_template.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-07-18 16:31:20 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2013-07-24 16:50:04 -0400
commit62cec291d3204ae6eb30a9f5748b48fc4107efc9 (patch)
tree7f809bb5e9f7448e9ca659f6e32035741a044e3f /src/options/options_template.cpp
parent3797216a84228b6685df1f2337e17b1a4de97722 (diff)
Fixes for building with mingw win64.
Diffstat (limited to 'src/options/options_template.cpp')
-rw-r--r--src/options/options_template.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/options/options_template.cpp b/src/options/options_template.cpp
index 8af61b79f..229c25597 100644
--- a/src/options/options_template.cpp
+++ b/src/options/options_template.cpp
@@ -14,14 +14,18 @@
** Contains code for handling command-line options
**/
-#if !defined(_BSD_SOURCE) && (defined(__MINGW32__) || defined(__MINGW64__))
-// force use of optreset; mingw croaks on argv-switching otherwise
+#if !defined(_BSD_SOURCE) && defined(__MINGW32__) && !defined(__MINGW64__)
+// force use of optreset; mingw32 croaks on argv-switching otherwise
# include "cvc4autoconfig.h"
# define _BSD_SOURCE
# undef HAVE_DECL_OPTRESET
# define HAVE_DECL_OPTRESET 1
# define CVC4_IS_NOT_REALLY_BSD
-#endif /* !_BSD_SOURCE && (__MINGW32__ || __MINGW64__) */
+#endif /* !_BSD_SOURCE && __MINGW32__ && !__MINGW64__ */
+
+#ifdef __MINGW64__
+extern int optreset;
+#endif /* __MINGW64__ */
#include <getopt.h>
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback