]> git.saurik.com Git - wxWidgets.git/blobdiff - configure
don't change the wxUSE_XXX for the controls if --enable-controls wasn't specified
[wxWidgets.git] / configure
index fd4323c2993e8a48532098fc3be8ca96b2dd9c43..95af068deb44cf30a72509a0aa68f6cf96f4c5f8 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Id: configure.in 47419 2007-07-13 09:13:55Z VS .
+# From configure.in Id: configure.in 47439 2007-07-13 20:44:26Z VS .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for wxWidgets 2.9.0.
 #
@@ -1749,7 +1749,7 @@ Optional Features:
   --enable-clipboard      use wxClipboard class
   --enable-dnd            use Drag'n'Drop classes
   --enable-metafile       use win32 metafiles
-  --enable-controls       use all usual controls
+  --disable-controls      disable compilation of all standard controls
   --enable-accel          use accelerators
   --enable-animatectrl    use wxAnimationCtrl class
   --enable-button         use wxButton class
@@ -10168,9 +10168,10 @@ echo "${ECHO_T}$result" >&6; }
 
 
 
+DEFAULT_wxUSE_CONTROLS=none
 
-          enablestring=
-          defaultval=$wxUSE_ALL_FEATURES
+          enablestring=disable
+          defaultval=
           if test -z "$defaultval"; then
               if test x"$enablestring" = xdisable; then
                   defaultval=yes
@@ -25608,11 +25609,13 @@ _ACEOF
 cat confdefs.h >>conftest.$ac_ext
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
-#include <stdio.h>
+#include <sys/types.h> /* for off_t */
+     #include <stdio.h>
 int
 main ()
 {
-return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
+int (*fp) (FILE *, off_t, int) = fseeko;
+     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
   ;
   return 0;
 }
@@ -25652,11 +25655,13 @@ cat confdefs.h >>conftest.$ac_ext
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
 #define _LARGEFILE_SOURCE 1
-#include <stdio.h>
+#include <sys/types.h> /* for off_t */
+     #include <stdio.h>
 int
 main ()
 {
-return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
+int (*fp) (FILE *, off_t, int) = fseeko;
+     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
   ;
   return 0;
 }