diff options
| author | Glenn Morris | 2012-08-01 06:17:30 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-08-01 06:17:30 -0400 |
| commit | 6b10626d749282e1d811f5963ce36317e4704e73 (patch) | |
| tree | bcd1a795cc0120665f1b5c83010e5e5f393475aa | |
| parent | d8a05828fd9f78c6cadddd8b47b53d83833c3917 (diff) | |
| download | emacs-6b10626d749282e1d811f5963ce36317e4704e73.tar.gz emacs-6b10626d749282e1d811f5963ce36317e4704e73.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/Makefile.in | 1 | ||||
| -rw-r--r-- | autogen/config.in | 25 | ||||
| -rwxr-xr-x | autogen/configure | 32 |
3 files changed, 47 insertions, 11 deletions
diff --git a/autogen/Makefile.in b/autogen/Makefile.in index 8c569049754..bcaebd9e080 100644 --- a/autogen/Makefile.in +++ b/autogen/Makefile.in | |||
| @@ -733,7 +733,6 @@ STDINT_H = @STDINT_H@ | |||
| 733 | STRIP = @STRIP@ | 733 | STRIP = @STRIP@ |
| 734 | SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@ | 734 | SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@ |
| 735 | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@ | 735 | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@ |
| 736 | S_FILE = @S_FILE@ | ||
| 737 | TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@ | 736 | TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@ |
| 738 | TERMCAP_OBJ = @TERMCAP_OBJ@ | 737 | TERMCAP_OBJ = @TERMCAP_OBJ@ |
| 739 | TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@ | 738 | TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@ |
diff --git a/autogen/config.in b/autogen/config.in index d552b72be6c..c330f6425a2 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -117,6 +117,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 117 | /* Name of the default sound device. */ | 117 | /* Name of the default sound device. */ |
| 118 | #undef DEFAULT_SOUND_DEVICE | 118 | #undef DEFAULT_SOUND_DEVICE |
| 119 | 119 | ||
| 120 | /* Character that separates a device in a file name. */ | ||
| 121 | #undef DEVICE_SEP | ||
| 122 | |||
| 120 | /* Define to 1 for DGUX with <sys/dg_sys_info.h>. */ | 123 | /* Define to 1 for DGUX with <sys/dg_sys_info.h>. */ |
| 121 | #undef DGUX | 124 | #undef DGUX |
| 122 | 125 | ||
| @@ -142,6 +145,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 142 | */ | 145 | */ |
| 143 | #undef FIRST_PTY_LETTER | 146 | #undef FIRST_PTY_LETTER |
| 144 | 147 | ||
| 148 | /* Define if the float library doesn't handle errors by either setting errno, | ||
| 149 | or signaling SIGFPE/SIGILL. */ | ||
| 150 | #undef FLOAT_CHECK_DOMAIN | ||
| 151 | |||
| 145 | /* Define to 1 if futimesat mishandles a NULL file name. */ | 152 | /* Define to 1 if futimesat mishandles a NULL file name. */ |
| 146 | #undef FUTIMESAT_NULL_BUG | 153 | #undef FUTIMESAT_NULL_BUG |
| 147 | 154 | ||
| @@ -514,6 +521,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 514 | /* Define to 1 if you have the <inttypes.h> header file. */ | 521 | /* Define to 1 if you have the <inttypes.h> header file. */ |
| 515 | #undef HAVE_INTTYPES_H | 522 | #undef HAVE_INTTYPES_H |
| 516 | 523 | ||
| 524 | /* Define if you have the functions acosh, asinh, and atanh. */ | ||
| 525 | #undef HAVE_INVERSE_HYPERBOLIC | ||
| 526 | |||
| 517 | /* Define to 1 if you have the jpeg library (-ljpeg). */ | 527 | /* Define to 1 if you have the jpeg library (-ljpeg). */ |
| 518 | #undef HAVE_JPEG | 528 | #undef HAVE_JPEG |
| 519 | 529 | ||
| @@ -1091,12 +1101,24 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1091 | /* Define if the system is HPUX. */ | 1101 | /* Define if the system is HPUX. */ |
| 1092 | #undef HPUX | 1102 | #undef HPUX |
| 1093 | 1103 | ||
| 1104 | /* This is substituted when $TERM is "internal". */ | ||
| 1105 | #undef INTERNAL_TERMINAL | ||
| 1106 | |||
| 1094 | /* Define to read input using SIGIO. */ | 1107 | /* Define to read input using SIGIO. */ |
| 1095 | #undef INTERRUPT_INPUT | 1108 | #undef INTERRUPT_INPUT |
| 1096 | 1109 | ||
| 1097 | /* Define if the system is IRIX. */ | 1110 | /* Define if the system is IRIX. */ |
| 1098 | #undef IRIX6_5 | 1111 | #undef IRIX6_5 |
| 1099 | 1112 | ||
| 1113 | /* Returns true if character is any form of separator. */ | ||
| 1114 | #undef IS_ANY_SEP | ||
| 1115 | |||
| 1116 | /* Returns true if character is a device separator. */ | ||
| 1117 | #undef IS_DEVICE_SEP | ||
| 1118 | |||
| 1119 | /* Returns true if character is a directory separator. */ | ||
| 1120 | #undef IS_DIRECTORY_SEP | ||
| 1121 | |||
| 1100 | /* Define to support Kerberos-authenticated POP mail retrieval. */ | 1122 | /* Define to support Kerberos-authenticated POP mail retrieval. */ |
| 1101 | #undef KERBEROS | 1123 | #undef KERBEROS |
| 1102 | 1124 | ||
| @@ -1504,7 +1526,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1504 | /* Some platforms redefine this. */ | 1526 | /* Some platforms redefine this. */ |
| 1505 | #undef _setjmp | 1527 | #undef _setjmp |
| 1506 | 1528 | ||
| 1507 | /* Define to the used os dependent file. */ | 1529 | /* Some platforms that do not use configure define this to include extra |
| 1530 | configuration information. */ | ||
| 1508 | #undef config_opsysfile | 1531 | #undef config_opsysfile |
| 1509 | 1532 | ||
| 1510 | /* A replacement for va_copy, if needed. */ | 1533 | /* A replacement for va_copy, if needed. */ |
diff --git a/autogen/configure b/autogen/configure index 269987bf2df..0bd48822324 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -1119,7 +1119,6 @@ ns_appsrc | |||
| 1119 | ns_appresdir | 1119 | ns_appresdir |
| 1120 | ns_appbindir | 1120 | ns_appbindir |
| 1121 | ns_appdir | 1121 | ns_appdir |
| 1122 | S_FILE | ||
| 1123 | X_TOOLKIT_TYPE | 1122 | X_TOOLKIT_TYPE |
| 1124 | GNUSTEP_CFLAGS | 1123 | GNUSTEP_CFLAGS |
| 1125 | C_SWITCH_X_SITE | 1124 | C_SWITCH_X_SITE |
| @@ -8169,8 +8168,8 @@ case $opsys in | |||
| 8169 | START_FILES='pre-crt0.o' | 8168 | START_FILES='pre-crt0.o' |
| 8170 | ;; | 8169 | ;; |
| 8171 | freebsd ) | 8170 | freebsd ) |
| 8172 | LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o' | 8171 | LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtn.o' |
| 8173 | START_FILES='pre-crt0.o $(CRT_DIR)/crt1.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o' | 8172 | START_FILES='pre-crt0.o $(CRT_DIR)/crt1.o $(CRT_DIR)/crti.o' |
| 8174 | SYSTEM_TYPE=berkeley-unix | 8173 | SYSTEM_TYPE=berkeley-unix |
| 8175 | ;; | 8174 | ;; |
| 8176 | gnu-linux | gnu-kfreebsd ) | 8175 | gnu-linux | gnu-kfreebsd ) |
| @@ -14649,6 +14648,10 @@ $as_echo "#define AMPERSAND_FULL_NAME 1" >>confdefs.h | |||
| 14649 | $as_echo "#define CLASH_DETECTION 1" >>confdefs.h | 14648 | $as_echo "#define CLASH_DETECTION 1" >>confdefs.h |
| 14650 | 14649 | ||
| 14651 | 14650 | ||
| 14651 | |||
| 14652 | |||
| 14653 | |||
| 14654 | |||
| 14652 | ## Note: PTYs are broken on darwin <6. Use at your own risk. | 14655 | ## Note: PTYs are broken on darwin <6. Use at your own risk. |
| 14653 | 14656 | ||
| 14654 | $as_echo "#define HAVE_PTYS 1" >>confdefs.h | 14657 | $as_echo "#define HAVE_PTYS 1" >>confdefs.h |
| @@ -14659,6 +14662,8 @@ $as_echo "#define HAVE_SOCKETS 1" >>confdefs.h | |||
| 14659 | 14662 | ||
| 14660 | 14663 | ||
| 14661 | 14664 | ||
| 14665 | |||
| 14666 | |||
| 14662 | $as_echo "#define NULL_DEVICE \"/dev/null\"" >>confdefs.h | 14667 | $as_echo "#define NULL_DEVICE \"/dev/null\"" >>confdefs.h |
| 14663 | 14668 | ||
| 14664 | 14669 | ||
| @@ -14677,6 +14682,21 @@ $as_echo "#define USER_FULL_NAME pw->pw_gecos" >>confdefs.h | |||
| 14677 | 14682 | ||
| 14678 | 14683 | ||
| 14679 | 14684 | ||
| 14685 | |||
| 14686 | $as_echo "#define IS_DEVICE_SEP(_c_) 0" >>confdefs.h | ||
| 14687 | |||
| 14688 | |||
| 14689 | |||
| 14690 | $as_echo "#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)" >>confdefs.h | ||
| 14691 | |||
| 14692 | |||
| 14693 | |||
| 14694 | $as_echo "#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))" >>confdefs.h | ||
| 14695 | |||
| 14696 | |||
| 14697 | |||
| 14698 | |||
| 14699 | |||
| 14680 | case $opsys in | 14700 | case $opsys in |
| 14681 | aix4-2) | 14701 | aix4-2) |
| 14682 | if test x$ac_cv_lib_Xmu_XmuConvertStandardSelection != xyes; then | 14702 | if test x$ac_cv_lib_Xmu_XmuConvertStandardSelection != xyes; then |
| @@ -15459,8 +15479,6 @@ version=$PACKAGE_VERSION | |||
| 15459 | 15479 | ||
| 15460 | ## Used in lwlib/Makefile.in. | 15480 | ## Used in lwlib/Makefile.in. |
| 15461 | 15481 | ||
| 15462 | S_FILE= | ||
| 15463 | |||
| 15464 | 15482 | ||
| 15465 | 15483 | ||
| 15466 | 15484 | ||
| @@ -15478,11 +15496,7 @@ cat >>confdefs.h <<_ACEOF | |||
| 15478 | #define EMACS_CONFIG_OPTIONS "${ac_configure_args}" | 15496 | #define EMACS_CONFIG_OPTIONS "${ac_configure_args}" |
| 15479 | _ACEOF | 15497 | _ACEOF |
| 15480 | 15498 | ||
| 15481 | if test -z "No longer used"; then | ||
| 15482 | 15499 | ||
| 15483 | $as_echo "#define config_opsysfile /**/" >>confdefs.h | ||
| 15484 | |||
| 15485 | fi | ||
| 15486 | 15500 | ||
| 15487 | XMENU_OBJ= | 15501 | XMENU_OBJ= |
| 15488 | XOBJ= | 15502 | XOBJ= |