diff options
| author | Glenn Morris | 2009-02-10 03:58:49 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-10 03:58:49 +0000 |
| commit | a35462a1b0588e71ccd3fa6e7d34696342d5cdba (patch) | |
| tree | 69e0960ae1ff11d2916afb4ba23ffbab9e67c195 | |
| parent | 44baa8ce8f731f55e8b571e3c276fe2281246fff (diff) | |
| download | emacs-a35462a1b0588e71ccd3fa6e7d34696342d5cdba.tar.gz emacs-a35462a1b0588e71ccd3fa6e7d34696342d5cdba.zip | |
Regenerate.
| -rwxr-xr-x | configure | 29 |
1 files changed, 8 insertions, 21 deletions
| @@ -1337,8 +1337,6 @@ if test -n "$ac_init_help"; then | |||
| 1337 | Optional Features: | 1337 | Optional 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 && \ | |||
| 2172 | test "X$GNUSTEP_CONFIG_FILE" = "X" && \ | 2170 | test "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. | ||
| 2176 | if test "${enable_cocoa_experimental_ctrl_g+set}" = set; then | ||
| 2177 | enableval=$enable_cocoa_experimental_ctrl_g; EN_COCOA_EXPERIMENTAL_CTRL_G=$enableval | ||
| 2178 | else | ||
| 2179 | EN_COCOA_EXPERIMENTAL_CTRL_G=no | ||
| 2180 | fi | ||
| 2181 | |||
| 2182 | |||
| 2183 | # Check whether --enable-ns-self-contained was given. | 2173 | # Check whether --enable-ns-self-contained was given. |
| 2184 | if test "${enable_ns_self_contained+set}" = set; then | 2174 | if 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 | |||
| 15003 | cat >>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 | ||
| 15010 | cat >>confdefs.h <<\_ACEOF | 14993 | cat >>confdefs.h <<\_ACEOF |
| @@ -18856,11 +18839,13 @@ _ACEOF | |||
| 18856 | cat confdefs.h >>conftest.$ac_ext | 18839 | cat confdefs.h >>conftest.$ac_ext |
| 18857 | cat >>conftest.$ac_ext <<_ACEOF | 18840 | cat >>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> | ||
| 18860 | int | 18844 | int |
| 18861 | main () | 18845 | main () |
| 18862 | { | 18846 | { |
| 18863 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18847 | int (*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 | |||
| 18900 | cat >>conftest.$ac_ext <<_ACEOF | 18885 | cat >>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> | ||
| 18904 | int | 18890 | int |
| 18905 | main () | 18891 | main () |
| 18906 | { | 18892 | { |
| 18907 | return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0); | 18893 | int (*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 | } |