]> git.saurik.com Git - wxWidgets.git/blobdiff - configure.in
Define HAVE_BOOLEAN when the Windows headers declare 'boolean' to avoid a
[wxWidgets.git] / configure.in
index ba3fc436b1e24437c80ae5770ad61376bb3d9327..adb3f31e57ea06a6eb2afc2e5d6c94947d5b8353 100644 (file)
@@ -2830,6 +2830,12 @@ if test "$USE_WIN32" = 1 ; then
 
     dnl install Win32-specific files in "make install"
     WIN32INSTALL=win32install
+
+    dnl the jpeg header jmorecfg.h delcares the type boolean, which conflicts
+    dnl on systems which declare it in the system headers. If HAVE_BOOLEAN is
+    dnl defined then jmorecfg.h doesn't declare it, so checking for it here
+    dnl solves the problem.
+    AC_CHECK_TYPES(boolean, [], [], [#include <windows.h>])
 fi
 
 if test "$wxUSE_GUI" = "yes"; then