Auto-commit of generated files.
This commit is contained in:
parent
d8a05828fd
commit
6b10626d74
3 changed files with 47 additions and 11 deletions
|
@ -733,7 +733,6 @@ STDINT_H = @STDINT_H@
|
|||
STRIP = @STRIP@
|
||||
SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@
|
||||
SYS_TIME_H_DEFINES_STRUCT_TIMESPEC = @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@
|
||||
S_FILE = @S_FILE@
|
||||
TEMACS_LDFLAGS2 = @TEMACS_LDFLAGS2@
|
||||
TERMCAP_OBJ = @TERMCAP_OBJ@
|
||||
TIME_H_DEFINES_STRUCT_TIMESPEC = @TIME_H_DEFINES_STRUCT_TIMESPEC@
|
||||
|
|
|
@ -117,6 +117,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Name of the default sound device. */
|
||||
#undef DEFAULT_SOUND_DEVICE
|
||||
|
||||
/* Character that separates a device in a file name. */
|
||||
#undef DEVICE_SEP
|
||||
|
||||
/* Define to 1 for DGUX with <sys/dg_sys_info.h>. */
|
||||
#undef DGUX
|
||||
|
||||
|
@ -142,6 +145,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
*/
|
||||
#undef FIRST_PTY_LETTER
|
||||
|
||||
/* Define if the float library doesn't handle errors by either setting errno,
|
||||
or signaling SIGFPE/SIGILL. */
|
||||
#undef FLOAT_CHECK_DOMAIN
|
||||
|
||||
/* Define to 1 if futimesat mishandles a NULL file name. */
|
||||
#undef FUTIMESAT_NULL_BUG
|
||||
|
||||
|
@ -514,6 +521,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if you have the functions acosh, asinh, and atanh. */
|
||||
#undef HAVE_INVERSE_HYPERBOLIC
|
||||
|
||||
/* Define to 1 if you have the jpeg library (-ljpeg). */
|
||||
#undef HAVE_JPEG
|
||||
|
||||
|
@ -1091,12 +1101,24 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define if the system is HPUX. */
|
||||
#undef HPUX
|
||||
|
||||
/* This is substituted when $TERM is "internal". */
|
||||
#undef INTERNAL_TERMINAL
|
||||
|
||||
/* Define to read input using SIGIO. */
|
||||
#undef INTERRUPT_INPUT
|
||||
|
||||
/* Define if the system is IRIX. */
|
||||
#undef IRIX6_5
|
||||
|
||||
/* Returns true if character is any form of separator. */
|
||||
#undef IS_ANY_SEP
|
||||
|
||||
/* Returns true if character is a device separator. */
|
||||
#undef IS_DEVICE_SEP
|
||||
|
||||
/* Returns true if character is a directory separator. */
|
||||
#undef IS_DIRECTORY_SEP
|
||||
|
||||
/* Define to support Kerberos-authenticated POP mail retrieval. */
|
||||
#undef KERBEROS
|
||||
|
||||
|
@ -1504,7 +1526,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Some platforms redefine this. */
|
||||
#undef _setjmp
|
||||
|
||||
/* Define to the used os dependent file. */
|
||||
/* Some platforms that do not use configure define this to include extra
|
||||
configuration information. */
|
||||
#undef config_opsysfile
|
||||
|
||||
/* A replacement for va_copy, if needed. */
|
||||
|
|
32
autogen/configure
vendored
32
autogen/configure
vendored
|
@ -1119,7 +1119,6 @@ ns_appsrc
|
|||
ns_appresdir
|
||||
ns_appbindir
|
||||
ns_appdir
|
||||
S_FILE
|
||||
X_TOOLKIT_TYPE
|
||||
GNUSTEP_CFLAGS
|
||||
C_SWITCH_X_SITE
|
||||
|
@ -8169,8 +8168,8 @@ case $opsys in
|
|||
START_FILES='pre-crt0.o'
|
||||
;;
|
||||
freebsd )
|
||||
LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtend.o $(CRT_DIR)/crtn.o'
|
||||
START_FILES='pre-crt0.o $(CRT_DIR)/crt1.o $(CRT_DIR)/crti.o $(CRT_DIR)/crtbegin.o'
|
||||
LIB_STANDARD='-lgcc -lc -lgcc $(CRT_DIR)/crtn.o'
|
||||
START_FILES='pre-crt0.o $(CRT_DIR)/crt1.o $(CRT_DIR)/crti.o'
|
||||
SYSTEM_TYPE=berkeley-unix
|
||||
;;
|
||||
gnu-linux | gnu-kfreebsd )
|
||||
|
@ -14649,6 +14648,10 @@ $as_echo "#define AMPERSAND_FULL_NAME 1" >>confdefs.h
|
|||
$as_echo "#define CLASH_DETECTION 1" >>confdefs.h
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Note: PTYs are broken on darwin <6. Use at your own risk.
|
||||
|
||||
$as_echo "#define HAVE_PTYS 1" >>confdefs.h
|
||||
|
@ -14659,6 +14662,8 @@ $as_echo "#define HAVE_SOCKETS 1" >>confdefs.h
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
$as_echo "#define NULL_DEVICE \"/dev/null\"" >>confdefs.h
|
||||
|
||||
|
||||
|
@ -14677,6 +14682,21 @@ $as_echo "#define USER_FULL_NAME pw->pw_gecos" >>confdefs.h
|
|||
|
||||
|
||||
|
||||
|
||||
$as_echo "#define IS_DEVICE_SEP(_c_) 0" >>confdefs.h
|
||||
|
||||
|
||||
|
||||
$as_echo "#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)" >>confdefs.h
|
||||
|
||||
|
||||
|
||||
$as_echo "#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))" >>confdefs.h
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
case $opsys in
|
||||
aix4-2)
|
||||
if test x$ac_cv_lib_Xmu_XmuConvertStandardSelection != xyes; then
|
||||
|
@ -15459,8 +15479,6 @@ version=$PACKAGE_VERSION
|
|||
|
||||
## Used in lwlib/Makefile.in.
|
||||
|
||||
S_FILE=
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -15478,11 +15496,7 @@ cat >>confdefs.h <<_ACEOF
|
|||
#define EMACS_CONFIG_OPTIONS "${ac_configure_args}"
|
||||
_ACEOF
|
||||
|
||||
if test -z "No longer used"; then
|
||||
|
||||
$as_echo "#define config_opsysfile /**/" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
XMENU_OBJ=
|
||||
XOBJ=
|
||||
|
|
Loading…
Add table
Reference in a new issue