Auto-commit of generated files.
This commit is contained in:
parent
209c6a58b9
commit
eda33f7834
2 changed files with 6 additions and 200 deletions
|
@ -114,9 +114,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Character that separates directories in a file name. */
|
||||
#undef DIRECTORY_SEP
|
||||
|
||||
/* Define if dispnew.c should include stdio_ext.h. */
|
||||
#undef DISPNEW_NEEDS_STDIO_EXT
|
||||
|
||||
/* Define if process.c does not need to close a pty to make it a controlling
|
||||
terminal (it is already a controlling terminal of the subprocess, because
|
||||
we did ioctl TIOCSCTTY). */
|
||||
|
@ -177,9 +174,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
garbage collection in the jmp_buf. */
|
||||
#undef GC_SETJMP_WORKS
|
||||
|
||||
/* Define to 1 if the `getpgrp' function requires zero arguments. */
|
||||
#undef GETPGRP_VOID
|
||||
|
||||
/* Define if gettimeofday clobbers the localtime buffer. */
|
||||
#undef GETTIMEOFDAY_CLOBBERS_LOCALTIME
|
||||
|
||||
|
@ -781,15 +775,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define to 1 if you have the `setlocale' function. */
|
||||
#undef HAVE_SETLOCALE
|
||||
|
||||
/* Define to 1 if you have the `setpgid' function. */
|
||||
#undef HAVE_SETPGID
|
||||
|
||||
/* Define to 1 if you have the `setrlimit' function. */
|
||||
#undef HAVE_SETRLIMIT
|
||||
|
||||
/* Define to 1 if you have the `setsid' function. */
|
||||
#undef HAVE_SETSID
|
||||
|
||||
/* Define to 1 if you have the `shutdown' function. */
|
||||
#undef HAVE_SHUTDOWN
|
||||
|
||||
|
@ -1214,9 +1202,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Number of chars of output in the buffer of a stdio stream. */
|
||||
#undef PENDING_OUTPUT_COUNT
|
||||
|
||||
/* the number of pending output bytes on stream 'fp' */
|
||||
#undef PENDING_OUTPUT_N_BYTES
|
||||
|
||||
|
@ -1275,9 +1260,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Character that separates PATH elements. */
|
||||
#undef SEPCHAR
|
||||
|
||||
/* Define if process.c:child_setup should not call setpgrp. */
|
||||
#undef SETPGRP_RELEASES_CTTY
|
||||
|
||||
/* How to set up a slave PTY, if needed. */
|
||||
#undef SETUP_SLAVE_PTY
|
||||
|
||||
|
|
188
autogen/configure
vendored
188
autogen/configure
vendored
|
@ -3184,7 +3184,6 @@ fi
|
|||
|
||||
as_fn_append ac_header_list " linux/version.h"
|
||||
as_fn_append ac_header_list " sys/systeminfo.h"
|
||||
as_fn_append ac_header_list " stdio_ext.h"
|
||||
as_fn_append ac_header_list " fcntl.h"
|
||||
as_fn_append ac_header_list " coff.h"
|
||||
as_fn_append ac_header_list " pty.h"
|
||||
|
@ -3206,6 +3205,7 @@ as_fn_append ac_header_list " sys/un.h"
|
|||
as_fn_append ac_func_list " tzset"
|
||||
as_fn_append ac_func_list " readlinkat"
|
||||
as_fn_append ac_header_list " execinfo.h"
|
||||
as_fn_append ac_header_list " stdio_ext.h"
|
||||
as_fn_append ac_func_list " __fpending"
|
||||
gl_getopt_required=GNU
|
||||
as_fn_append ac_header_list " getopt.h"
|
||||
|
@ -8749,8 +8749,6 @@ done
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -13418,10 +13416,10 @@ esac
|
|||
|
||||
for ac_func in gethostname \
|
||||
closedir getrusage get_current_dir_name \
|
||||
lrand48 setsid \
|
||||
lrand48 \
|
||||
fpathconf select euidaccess getpagesize setlocale \
|
||||
utimes getrlimit setrlimit setpgid getcwd shutdown getaddrinfo \
|
||||
__fpending strsignal setitimer \
|
||||
utimes getrlimit setrlimit getcwd shutdown getaddrinfo \
|
||||
strsignal setitimer \
|
||||
sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \
|
||||
gai_strerror mkstemp getline getdelim fsync sync \
|
||||
difftime posix_memalign \
|
||||
|
@ -13587,40 +13585,6 @@ $as_echo "#define HAVE_FSEEKO 1" >>confdefs.h
|
|||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgrp requires zero arguments" >&5
|
||||
$as_echo_n "checking whether getpgrp requires zero arguments... " >&6; }
|
||||
if test "${ac_cv_func_getpgrp_void+set}" = set; then :
|
||||
$as_echo_n "(cached) " >&6
|
||||
else
|
||||
# Use it with a single arg.
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
$ac_includes_default
|
||||
int
|
||||
main ()
|
||||
{
|
||||
getpgrp (0);
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_compile "$LINENO"; then :
|
||||
ac_cv_func_getpgrp_void=no
|
||||
else
|
||||
ac_cv_func_getpgrp_void=yes
|
||||
fi
|
||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_getpgrp_void" >&5
|
||||
$as_echo "$ac_cv_func_getpgrp_void" >&6; }
|
||||
if test $ac_cv_func_getpgrp_void = yes; then
|
||||
|
||||
$as_echo "#define GETPGRP_VOID 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
|
||||
# UNIX98 PTYs.
|
||||
for ac_func in grantpt
|
||||
do :
|
||||
|
@ -15376,145 +15340,6 @@ esac
|
|||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C library" >&5
|
||||
$as_echo_n "checking whether we are using the GNU C library... " >&6; }
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
#include <features.h>
|
||||
#ifndef __GNU_LIBRARY__
|
||||
# error "this is not the GNU C library"
|
||||
#endif
|
||||
|
||||
int
|
||||
main ()
|
||||
{
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_cpp "$LINENO"; then :
|
||||
emacs_glibc=yes
|
||||
else
|
||||
emacs_glibc=no
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_ext
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $emacs_glibc" >&5
|
||||
$as_echo "$emacs_glibc" >&6; }
|
||||
|
||||
if test $emacs_glibc = yes; then
|
||||
|
||||
emacs_pending_output=unknown
|
||||
|
||||
case $opsys in
|
||||
gnu | gnu-linux | gnu-kfreebsd )
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of pending output formalism" >&5
|
||||
$as_echo_n "checking for style of pending output formalism... " >&6; }
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
#include <stdio.h>
|
||||
#if !defined (_IO_STDIO_H) && !defined (_STDIO_USES_IOSTREAM)
|
||||
# error "stdio definitions not found"
|
||||
#endif
|
||||
|
||||
int
|
||||
main ()
|
||||
{
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_cpp "$LINENO"; then :
|
||||
emacs_pending_output=new
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_ext
|
||||
|
||||
if test $emacs_pending_output = unknown; then
|
||||
case $opsys in
|
||||
gnu-linux | gnu-kfreebsd)
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
|
||||
#include <stdio.h>
|
||||
#ifndef __UCLIBC__
|
||||
# error "not using uclibc"
|
||||
#endif
|
||||
|
||||
int
|
||||
main ()
|
||||
{
|
||||
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
_ACEOF
|
||||
if ac_fn_c_try_cpp "$LINENO"; then :
|
||||
emacs_pending_output=uclibc
|
||||
else
|
||||
emacs_pending_output=old
|
||||
fi
|
||||
rm -f conftest.err conftest.$ac_ext
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $emacs_pending_output" >&5
|
||||
$as_echo "$emacs_pending_output" >&6; }
|
||||
|
||||
case $emacs_pending_output in
|
||||
new)
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_IO_write_ptr - (FILE)->_IO_write_base)" >>confdefs.h
|
||||
|
||||
;;
|
||||
uclibc)
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufpos - (FILE)->__bufstart)" >>confdefs.h
|
||||
|
||||
;;
|
||||
old)
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_pptr - (FILE)->_pbase)" >>confdefs.h
|
||||
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
if test $emacs_pending_output = unknown; then
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer)" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
else
|
||||
case $opsys in
|
||||
cygwin | darwin | freebsd | netbsd | openbsd )
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)" >>confdefs.h
|
||||
|
||||
;;
|
||||
|
||||
unixware)
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__ptr - (FILE)->__base)" >>confdefs.h
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
if test x$ac_cv_header_stdio_ext_h = xyes && \
|
||||
test x$ac_cv_func___fpending = xyes; then
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) __fpending (FILE)" >>confdefs.h
|
||||
|
||||
|
||||
$as_echo "#define DISPNEW_NEEDS_STDIO_EXT 1" >>confdefs.h
|
||||
|
||||
else
|
||||
$as_echo "#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base)" >>confdefs.h
|
||||
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
case $opsys in
|
||||
gnu)
|
||||
|
@ -15992,9 +15817,6 @@ $as_echo "#define USG_SUBTTY_WORKS 1" >>confdefs.h
|
|||
|
||||
$as_echo "#define PREFER_VSUSP 1" >>confdefs.h
|
||||
|
||||
|
||||
$as_echo "#define SETPGRP_RELEASES_CTTY 1" >>confdefs.h
|
||||
|
||||
;;
|
||||
|
||||
sol2-10)
|
||||
|
@ -17004,6 +16826,8 @@ _ACEOF
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
GNULIB__EXIT=0;
|
||||
GNULIB_ATOLL=0;
|
||||
GNULIB_CALLOC_POSIX=0;
|
||||
|
|
Loading…
Add table
Reference in a new issue