aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-02-10 03:58:49 +0000
committerGlenn Morris2009-02-10 03:58:49 +0000
commita35462a1b0588e71ccd3fa6e7d34696342d5cdba (patch)
tree69e0960ae1ff11d2916afb4ba23ffbab9e67c195
parent44baa8ce8f731f55e8b571e3c276fe2281246fff (diff)
downloademacs-a35462a1b0588e71ccd3fa6e7d34696342d5cdba.tar.gz
emacs-a35462a1b0588e71ccd3fa6e7d34696342d5cdba.zip
Regenerate.
-rwxr-xr-xconfigure29
1 files changed, 8 insertions, 21 deletions
diff --git a/configure b/configure
index b2789ada3a7..142aebfed70 100755
--- a/configure
+++ b/configure
@@ -1337,8 +1337,6 @@ if test -n "$ac_init_help"; then
1337Optional Features: 1337Optional Features:
1338 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1338 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1339 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1339 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1340 --enable-cocoa-experimental-ctrl-g
1341 enable experimental improved ctrl-g recognition
1342 --disable-ns-self-contained 1340 --disable-ns-self-contained
1343 disable self contained build under NeXTstep 1341 disable self contained build under NeXTstep
1344 --enable-asserts compile code with asserts enabled 1342 --enable-asserts compile code with asserts enabled
@@ -2172,14 +2170,6 @@ test "X${with_gnustep_conf}" != X && test "${with_gnustep_conf}" != yes && \
2172test "X$GNUSTEP_CONFIG_FILE" = "X" && \ 2170test "X$GNUSTEP_CONFIG_FILE" = "X" && \
2173 GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf 2171 GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf
2174 2172
2175# Check whether --enable-cocoa-experimental-ctrl-g was given.
2176if test "${enable_cocoa_experimental_ctrl_g+set}" = set; then
2177 enableval=$enable_cocoa_experimental_ctrl_g; EN_COCOA_EXPERIMENTAL_CTRL_G=$enableval
2178else
2179 EN_COCOA_EXPERIMENTAL_CTRL_G=no
2180fi
2181
2182
2183# Check whether --enable-ns-self-contained was given. 2173# Check whether --enable-ns-self-contained was given.
2184if test "${enable_ns_self_contained+set}" = set; then 2174if test "${enable_ns_self_contained+set}" = set; then
2185 enableval=$enable_ns_self_contained; EN_NS_SELF_CONTAINED=$enableval 2175 enableval=$enable_ns_self_contained; EN_NS_SELF_CONTAINED=$enableval
@@ -14998,13 +14988,6 @@ _ACEOF
14998 GNU_OBJC_CFLAGS= 14988 GNU_OBJC_CFLAGS=
14999 LIB_SRC_EXTRA_INSTALLABLES=mac-fix-env 14989 LIB_SRC_EXTRA_INSTALLABLES=mac-fix-env
15000 fi 14990 fi
15001 if test "${EN_COCOA_EXPERIMENTAL_CTRL_G}" = "yes"; then
15002
15003cat >>confdefs.h <<\_ACEOF
15004#define COCOA_EXPERIMENTAL_CTRL_G 1
15005_ACEOF
15006
15007 fi
15008 if test "${NS_IMPL_GNUSTEP}" = "yes"; then 14991 if test "${NS_IMPL_GNUSTEP}" = "yes"; then
15009 14992
15010cat >>confdefs.h <<\_ACEOF 14993cat >>confdefs.h <<\_ACEOF
@@ -18856,11 +18839,13 @@ _ACEOF
18856cat confdefs.h >>conftest.$ac_ext 18839cat confdefs.h >>conftest.$ac_ext
18857cat >>conftest.$ac_ext <<_ACEOF 18840cat >>conftest.$ac_ext <<_ACEOF
18858/* end confdefs.h. */ 18841/* end confdefs.h. */
18859#include <stdio.h> 18842#include <sys/types.h> /* for off_t */
18843 #include <stdio.h>
18860int 18844int
18861main () 18845main ()
18862{ 18846{
18863return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18847int (*fp) (FILE *, off_t, int) = fseeko;
18848 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18864 ; 18849 ;
18865 return 0; 18850 return 0;
18866} 18851}
@@ -18900,11 +18885,13 @@ cat confdefs.h >>conftest.$ac_ext
18900cat >>conftest.$ac_ext <<_ACEOF 18885cat >>conftest.$ac_ext <<_ACEOF
18901/* end confdefs.h. */ 18886/* end confdefs.h. */
18902#define _LARGEFILE_SOURCE 1 18887#define _LARGEFILE_SOURCE 1
18903#include <stdio.h> 18888#include <sys/types.h> /* for off_t */
18889 #include <stdio.h>
18904int 18890int
18905main () 18891main ()
18906{ 18892{
18907return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); 18893int (*fp) (FILE *, off_t, int) = fseeko;
18894 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
18908 ; 18895 ;
18909 return 0; 18896 return 0;
18910} 18897}