Update from Gnulib
This incorporates:
2020-02-22 fchmodat, lchmod: simplify
2020-02-22 lchmod: fix link error on Solaris 10
2020-02-22 use 'restrict' in all POSIX function declarations
2020-02-22 chmodat, chownat: new modules
* lib/gnulib.mk.in: Regenerate.
* lib/inttypes.in.h, lib/openat.h, lib/signal.in.h:
* lib/stdio.in.h, lib/stdlib.in.h, lib/string.in.h:
* lib/sys_stat.in.h, lib/time.in.h, lib/unistd.in.h, m4/inttypes.m4:
* m4/signal_h.m4, m4/stdio_h.m4, m4/stdlib_h.m4, m4/string_h.m4:
* m4/sys_socket_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Copy from Gnulib.
2020-02-23 09:24:21 +00:00
|
|
|
# stdio_h.m4 serial 50
|
2020-01-01 00:19:43 +00:00
|
|
|
dnl Copyright (C) 2007-2020 Free Software Foundation, Inc.
|
2011-03-21 05:04:41 +00:00
|
|
|
dnl This file is free software; the Free Software Foundation
|
|
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
AC_DEFUN([gl_STDIO_H],
|
|
|
|
[
|
2016-09-16 07:55:40 +00:00
|
|
|
AH_VERBATIM([MINGW_ANSI_STDIO],
|
|
|
|
[/* Use GNU style printf and scanf. */
|
|
|
|
#ifndef __USE_MINGW_ANSI_STDIO
|
|
|
|
# undef __USE_MINGW_ANSI_STDIO
|
|
|
|
#endif
|
|
|
|
])
|
|
|
|
AC_DEFINE([__USE_MINGW_ANSI_STDIO])
|
2011-03-21 05:04:41 +00:00
|
|
|
AC_REQUIRE([gl_STDIO_H_DEFAULTS])
|
|
|
|
gl_NEXT_HEADERS([stdio.h])
|
2011-04-18 04:03:18 +00:00
|
|
|
|
2015-01-06 17:15:11 +00:00
|
|
|
dnl Determine whether __USE_MINGW_ANSI_STDIO makes printf and
|
|
|
|
dnl inttypes.h behave like gnu instead of system; we must give our
|
|
|
|
dnl printf wrapper the right attribute to match.
|
2015-05-28 00:46:15 +00:00
|
|
|
AC_CACHE_CHECK([which flavor of printf attribute matches inttypes macros],
|
2015-01-06 17:15:11 +00:00
|
|
|
[gl_cv_func_printf_attribute_flavor],
|
2015-05-28 00:46:15 +00:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|
|
|
#define __STDC_FORMAT_MACROS 1
|
2015-01-06 17:15:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <inttypes.h>
|
2015-05-28 00:46:15 +00:00
|
|
|
/* For non-mingw systems, compilation will trivially succeed.
|
|
|
|
For mingw, compilation will succeed for older mingw (system
|
|
|
|
printf, "I64d") and fail for newer mingw (gnu printf, "lld"). */
|
Update from Gnulib
This incorporates:
2018-05-21 crypto: omit stream ops Emacs doesn’t need
2018-05-13 truncate: Fix compilation error on Android
2018-05-13 imaxdiv: Fix compilation error on Android
2018-05-13 Support selective inclusion of recent mingw.org headers
2018-05-13 Add cross-compilation guesses for Linux systems sans glibc
2018-05-13 stdioext: Fix compilation errors with newer Android headers
2018-05-07 af_alg: Pacify --enable-gcc-warnings
2018-05-06 af_alg: Fix bug with streams that are not at position 0
2018-05-06 Followup to 'af_alg: New module'
2018-05-05 crypto/{md5,sha1,sha256,sha512}: simplify
2018-05-05 af_alg: New module
2018-05-05 af_alg: Improve function signature
2018-04-28 md5sum: Use AF_ALG when available
2018-04-28 sha512sum: Use AF_ALG when available
2018-04-28 sha256sum: Use AF_ALG when available
2018-04-28 sha1sum: Use AF_ALG when available
2018-05-05 all: Replace more http URLs by https URLs
2018-05-03 maint: port more modules to GCC 8
2018-05-03 Simplify code; drop support for Borland C++ on Windows
* admin/merge-gnulib (GNULIB_MODULES): Use crypto/md5-buffer
rather than crypto/md5, since Emacs doesn’t use the stream
operations that in recent Gnulib pull in other stuff Emacs doesn’t
need. Similarly for crypto/sha1-buffer, crypto/sha256-buffer,
crypto/sha512-buffer.
* build-aux/config.guess, build-aux/config.sub, lib/dosname.h:
* lib/dup2.c, lib/errno.in.h, lib/euidaccess.c, lib/fcntl.c:
* lib/fcntl.in.h, lib/fpending.c, lib/fsync.c, lib/getdtablesize.c:
* lib/getopt.c, lib/gettimeofday.c, lib/inttypes.in.h, lib/md5.c:
* lib/md5.h, lib/open.c, lib/pipe2.c, lib/putenv.c, lib/sha1.c:
* lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c:
* lib/sha512.h, lib/stat-time.h, lib/stdio-impl.h, lib/stdio.in.h:
* lib/stdlib.in.h, lib/sys_stat.in.h, lib/sys_types.in.h:
* lib/timespec.h, lib/unistd.in.h, lib/utimens.c, m4/c-strtod.m4:
* m4/gnulib-common.m4, m4/inttypes.m4, m4/lstat.m4, m4/nocrash.m4:
* m4/pselect.m4, m4/readlink.m4, m4/stdio_h.m4, m4/symlink.m4:
* m4/unistd_h.m4, m4/utimens.m4:
Copy from Gnulib.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
2018-05-21 18:42:18 +00:00
|
|
|
#if (defined _WIN32 && ! defined __CYGWIN__) && \
|
2015-05-28 00:46:15 +00:00
|
|
|
(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
|
|
|
|
extern char PRIdMAX_probe[sizeof PRIdMAX == sizeof "I64d" ? 1 : -1];
|
|
|
|
#endif
|
|
|
|
]])], [gl_cv_func_printf_attribute_flavor=system],
|
|
|
|
[gl_cv_func_printf_attribute_flavor=gnu])])
|
2015-01-06 17:15:11 +00:00
|
|
|
if test "$gl_cv_func_printf_attribute_flavor" = gnu; then
|
|
|
|
AC_DEFINE([GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU], [1],
|
|
|
|
[Define to 1 if printf and friends should be labeled with
|
|
|
|
attribute "__gnu_printf__" instead of "__printf__"])
|
|
|
|
fi
|
|
|
|
|
2011-04-18 04:03:18 +00:00
|
|
|
dnl No need to create extra modules for these functions. Everyone who uses
|
|
|
|
dnl <stdio.h> likely needs them.
|
|
|
|
GNULIB_FSCANF=1
|
Merge from gnulib.
* lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
* lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
* m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
* m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
Copy new versions from gnulib, incorporating the following changes:
2012-06-22 time_r: fix typo that always overrode localtime_r decl
2012-06-22 Write "Mac OS X" instead of "MacOS X".
2012-06-21 mktime: fix integer overflow in 'configure'-time test
2012-06-21 nonblocking: Avoid compilation error on mingw64.
2012-06-19 stat, fstat: Avoid warnings on mingw64.
2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
2012-06-22 17:20:00 +00:00
|
|
|
gl_MODULE_INDICATOR([fscanf])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_SCANF=1
|
Merge from gnulib.
* lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
* lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
* m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
* m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
Copy new versions from gnulib, incorporating the following changes:
2012-06-22 time_r: fix typo that always overrode localtime_r decl
2012-06-22 Write "Mac OS X" instead of "MacOS X".
2012-06-21 mktime: fix integer overflow in 'configure'-time test
2012-06-21 nonblocking: Avoid compilation error on mingw64.
2012-06-19 stat, fstat: Avoid warnings on mingw64.
2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
2012-06-22 17:20:00 +00:00
|
|
|
gl_MODULE_INDICATOR([scanf])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_FGETC=1
|
|
|
|
GNULIB_GETC=1
|
|
|
|
GNULIB_GETCHAR=1
|
|
|
|
GNULIB_FGETS=1
|
|
|
|
GNULIB_FREAD=1
|
|
|
|
dnl This ifdef is necessary to avoid an error "missing file lib/stdio-read.c"
|
|
|
|
dnl "expected source file, required through AC_LIBSOURCES, not found". It is
|
|
|
|
dnl also an optimization, to avoid performing a configure check whose result
|
|
|
|
dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING
|
|
|
|
dnl or GNULIB_NONBLOCKING redundant.
|
|
|
|
m4_ifdef([gl_NONBLOCKING_IO], [
|
|
|
|
gl_NONBLOCKING_IO
|
|
|
|
if test $gl_cv_have_nonblocking != yes; then
|
|
|
|
REPLACE_STDIO_READ_FUNCS=1
|
|
|
|
AC_LIBOBJ([stdio-read])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2011-03-21 05:04:41 +00:00
|
|
|
dnl No need to create extra modules for these functions. Everyone who uses
|
|
|
|
dnl <stdio.h> likely needs them.
|
|
|
|
GNULIB_FPRINTF=1
|
|
|
|
GNULIB_PRINTF=1
|
|
|
|
GNULIB_VFPRINTF=1
|
|
|
|
GNULIB_VPRINTF=1
|
|
|
|
GNULIB_FPUTC=1
|
|
|
|
GNULIB_PUTC=1
|
|
|
|
GNULIB_PUTCHAR=1
|
|
|
|
GNULIB_FPUTS=1
|
|
|
|
GNULIB_PUTS=1
|
|
|
|
GNULIB_FWRITE=1
|
2011-04-18 04:03:18 +00:00
|
|
|
dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
|
|
|
|
dnl "expected source file, required through AC_LIBSOURCES, not found". It is
|
|
|
|
dnl also an optimization, to avoid performing a configure check whose result
|
|
|
|
dnl is not used. But it does not make the test of GNULIB_STDIO_H_SIGPIPE or
|
|
|
|
dnl GNULIB_SIGPIPE redundant.
|
2011-03-21 05:04:41 +00:00
|
|
|
m4_ifdef([gl_SIGNAL_SIGPIPE], [
|
|
|
|
gl_SIGNAL_SIGPIPE
|
|
|
|
if test $gl_cv_header_signal_h_SIGPIPE != yes; then
|
|
|
|
REPLACE_STDIO_WRITE_FUNCS=1
|
|
|
|
AC_LIBOBJ([stdio-write])
|
|
|
|
fi
|
|
|
|
])
|
2011-04-18 04:03:18 +00:00
|
|
|
dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c"
|
|
|
|
dnl "expected source file, required through AC_LIBSOURCES, not found". It is
|
|
|
|
dnl also an optimization, to avoid performing a configure check whose result
|
|
|
|
dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING
|
|
|
|
dnl or GNULIB_NONBLOCKING redundant.
|
|
|
|
m4_ifdef([gl_NONBLOCKING_IO], [
|
|
|
|
gl_NONBLOCKING_IO
|
|
|
|
if test $gl_cv_have_nonblocking != yes; then
|
|
|
|
REPLACE_STDIO_WRITE_FUNCS=1
|
|
|
|
AC_LIBOBJ([stdio-write])
|
|
|
|
fi
|
|
|
|
])
|
2011-03-21 05:04:41 +00:00
|
|
|
|
|
|
|
dnl Check for declarations of anything we want to poison if the
|
|
|
|
dnl corresponding gnulib module is not in use, and which is not
|
2012-05-26 23:14:36 +00:00
|
|
|
dnl guaranteed by both C89 and C11.
|
2011-03-21 05:04:41 +00:00
|
|
|
gl_WARN_ON_USE_PREPARE([[#include <stdio.h>
|
2012-05-26 23:14:36 +00:00
|
|
|
]], [dprintf fpurge fseeko ftello getdelim getline gets pclose popen
|
|
|
|
renameat snprintf tmpfile vdprintf vsnprintf])
|
Update from Gnulib
This incorporates:
2020-02-22 fchmodat, lchmod: simplify
2020-02-22 lchmod: fix link error on Solaris 10
2020-02-22 use 'restrict' in all POSIX function declarations
2020-02-22 chmodat, chownat: new modules
* lib/gnulib.mk.in: Regenerate.
* lib/inttypes.in.h, lib/openat.h, lib/signal.in.h:
* lib/stdio.in.h, lib/stdlib.in.h, lib/string.in.h:
* lib/sys_stat.in.h, lib/time.in.h, lib/unistd.in.h, m4/inttypes.m4:
* m4/signal_h.m4, m4/stdio_h.m4, m4/stdlib_h.m4, m4/string_h.m4:
* m4/sys_socket_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Copy from Gnulib.
2020-02-23 09:24:21 +00:00
|
|
|
|
|
|
|
AC_REQUIRE([AC_C_RESTRICT])
|
2011-03-21 05:04:41 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([gl_STDIO_MODULE_INDICATOR],
|
|
|
|
[
|
|
|
|
dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
|
|
|
|
AC_REQUIRE([gl_STDIO_H_DEFAULTS])
|
|
|
|
gl_MODULE_INDICATOR_SET_VARIABLE([$1])
|
|
|
|
dnl Define it also as a C macro, for the benefit of the unit tests.
|
|
|
|
gl_MODULE_INDICATOR_FOR_TESTS([$1])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([gl_STDIO_H_DEFAULTS],
|
|
|
|
[
|
|
|
|
GNULIB_DPRINTF=0; AC_SUBST([GNULIB_DPRINTF])
|
|
|
|
GNULIB_FCLOSE=0; AC_SUBST([GNULIB_FCLOSE])
|
Merge from gnulib, improving some licensing wording.
This clarifies and fixes some licensing issues raised by Glenn Morris
<http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
It also merges the latest version of texinfo.tex and has some
MSVC-related changes that don't affect Emacs.
* Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
pathmax, and raise, since these are needed only to address
MSVC-related issues that Emacs doesn't have.
* doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
* lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
* lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
* m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
* m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Merge from gnulib.
2011-09-26 21:30:18 +00:00
|
|
|
GNULIB_FDOPEN=0; AC_SUBST([GNULIB_FDOPEN])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_FFLUSH=0; AC_SUBST([GNULIB_FFLUSH])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_FGETC=0; AC_SUBST([GNULIB_FGETC])
|
|
|
|
GNULIB_FGETS=0; AC_SUBST([GNULIB_FGETS])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_FOPEN=0; AC_SUBST([GNULIB_FOPEN])
|
|
|
|
GNULIB_FPRINTF=0; AC_SUBST([GNULIB_FPRINTF])
|
|
|
|
GNULIB_FPRINTF_POSIX=0; AC_SUBST([GNULIB_FPRINTF_POSIX])
|
|
|
|
GNULIB_FPURGE=0; AC_SUBST([GNULIB_FPURGE])
|
|
|
|
GNULIB_FPUTC=0; AC_SUBST([GNULIB_FPUTC])
|
|
|
|
GNULIB_FPUTS=0; AC_SUBST([GNULIB_FPUTS])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_FREAD=0; AC_SUBST([GNULIB_FREAD])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_FREOPEN=0; AC_SUBST([GNULIB_FREOPEN])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_FSCANF=0; AC_SUBST([GNULIB_FSCANF])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_FSEEK=0; AC_SUBST([GNULIB_FSEEK])
|
|
|
|
GNULIB_FSEEKO=0; AC_SUBST([GNULIB_FSEEKO])
|
|
|
|
GNULIB_FTELL=0; AC_SUBST([GNULIB_FTELL])
|
|
|
|
GNULIB_FTELLO=0; AC_SUBST([GNULIB_FTELLO])
|
|
|
|
GNULIB_FWRITE=0; AC_SUBST([GNULIB_FWRITE])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_GETC=0; AC_SUBST([GNULIB_GETC])
|
|
|
|
GNULIB_GETCHAR=0; AC_SUBST([GNULIB_GETCHAR])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_GETDELIM=0; AC_SUBST([GNULIB_GETDELIM])
|
|
|
|
GNULIB_GETLINE=0; AC_SUBST([GNULIB_GETLINE])
|
|
|
|
GNULIB_OBSTACK_PRINTF=0; AC_SUBST([GNULIB_OBSTACK_PRINTF])
|
|
|
|
GNULIB_OBSTACK_PRINTF_POSIX=0; AC_SUBST([GNULIB_OBSTACK_PRINTF_POSIX])
|
Merge from gnulib, improving some licensing wording.
This clarifies and fixes some licensing issues raised by Glenn Morris
<http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
It also merges the latest version of texinfo.tex and has some
MSVC-related changes that don't affect Emacs.
* Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
pathmax, and raise, since these are needed only to address
MSVC-related issues that Emacs doesn't have.
* doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
* lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
* lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
* m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
* m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Merge from gnulib.
2011-09-26 21:30:18 +00:00
|
|
|
GNULIB_PCLOSE=0; AC_SUBST([GNULIB_PCLOSE])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_PERROR=0; AC_SUBST([GNULIB_PERROR])
|
|
|
|
GNULIB_POPEN=0; AC_SUBST([GNULIB_POPEN])
|
|
|
|
GNULIB_PRINTF=0; AC_SUBST([GNULIB_PRINTF])
|
|
|
|
GNULIB_PRINTF_POSIX=0; AC_SUBST([GNULIB_PRINTF_POSIX])
|
|
|
|
GNULIB_PUTC=0; AC_SUBST([GNULIB_PUTC])
|
|
|
|
GNULIB_PUTCHAR=0; AC_SUBST([GNULIB_PUTCHAR])
|
|
|
|
GNULIB_PUTS=0; AC_SUBST([GNULIB_PUTS])
|
|
|
|
GNULIB_REMOVE=0; AC_SUBST([GNULIB_REMOVE])
|
|
|
|
GNULIB_RENAME=0; AC_SUBST([GNULIB_RENAME])
|
|
|
|
GNULIB_RENAMEAT=0; AC_SUBST([GNULIB_RENAMEAT])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_SCANF=0; AC_SUBST([GNULIB_SCANF])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_SNPRINTF=0; AC_SUBST([GNULIB_SNPRINTF])
|
|
|
|
GNULIB_SPRINTF_POSIX=0; AC_SUBST([GNULIB_SPRINTF_POSIX])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_STDIO_H_NONBLOCKING=0; AC_SUBST([GNULIB_STDIO_H_NONBLOCKING])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_STDIO_H_SIGPIPE=0; AC_SUBST([GNULIB_STDIO_H_SIGPIPE])
|
|
|
|
GNULIB_TMPFILE=0; AC_SUBST([GNULIB_TMPFILE])
|
|
|
|
GNULIB_VASPRINTF=0; AC_SUBST([GNULIB_VASPRINTF])
|
2011-04-18 04:03:18 +00:00
|
|
|
GNULIB_VFSCANF=0; AC_SUBST([GNULIB_VFSCANF])
|
|
|
|
GNULIB_VSCANF=0; AC_SUBST([GNULIB_VSCANF])
|
2011-03-21 05:04:41 +00:00
|
|
|
GNULIB_VDPRINTF=0; AC_SUBST([GNULIB_VDPRINTF])
|
|
|
|
GNULIB_VFPRINTF=0; AC_SUBST([GNULIB_VFPRINTF])
|
|
|
|
GNULIB_VFPRINTF_POSIX=0; AC_SUBST([GNULIB_VFPRINTF_POSIX])
|
|
|
|
GNULIB_VPRINTF=0; AC_SUBST([GNULIB_VPRINTF])
|
|
|
|
GNULIB_VPRINTF_POSIX=0; AC_SUBST([GNULIB_VPRINTF_POSIX])
|
|
|
|
GNULIB_VSNPRINTF=0; AC_SUBST([GNULIB_VSNPRINTF])
|
|
|
|
GNULIB_VSPRINTF_POSIX=0; AC_SUBST([GNULIB_VSPRINTF_POSIX])
|
|
|
|
dnl Assume proper GNU behavior unless another module says otherwise.
|
|
|
|
HAVE_DECL_FPURGE=1; AC_SUBST([HAVE_DECL_FPURGE])
|
|
|
|
HAVE_DECL_FSEEKO=1; AC_SUBST([HAVE_DECL_FSEEKO])
|
|
|
|
HAVE_DECL_FTELLO=1; AC_SUBST([HAVE_DECL_FTELLO])
|
|
|
|
HAVE_DECL_GETDELIM=1; AC_SUBST([HAVE_DECL_GETDELIM])
|
|
|
|
HAVE_DECL_GETLINE=1; AC_SUBST([HAVE_DECL_GETLINE])
|
|
|
|
HAVE_DECL_OBSTACK_PRINTF=1; AC_SUBST([HAVE_DECL_OBSTACK_PRINTF])
|
|
|
|
HAVE_DECL_SNPRINTF=1; AC_SUBST([HAVE_DECL_SNPRINTF])
|
|
|
|
HAVE_DECL_VSNPRINTF=1; AC_SUBST([HAVE_DECL_VSNPRINTF])
|
|
|
|
HAVE_DPRINTF=1; AC_SUBST([HAVE_DPRINTF])
|
|
|
|
HAVE_FSEEKO=1; AC_SUBST([HAVE_FSEEKO])
|
|
|
|
HAVE_FTELLO=1; AC_SUBST([HAVE_FTELLO])
|
Merge from gnulib, improving some licensing wording.
This clarifies and fixes some licensing issues raised by Glenn Morris
<http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
It also merges the latest version of texinfo.tex and has some
MSVC-related changes that don't affect Emacs.
* Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
pathmax, and raise, since these are needed only to address
MSVC-related issues that Emacs doesn't have.
* doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
* lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
* lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
* m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
* m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Merge from gnulib.
2011-09-26 21:30:18 +00:00
|
|
|
HAVE_PCLOSE=1; AC_SUBST([HAVE_PCLOSE])
|
|
|
|
HAVE_POPEN=1; AC_SUBST([HAVE_POPEN])
|
2011-03-21 05:04:41 +00:00
|
|
|
HAVE_RENAMEAT=1; AC_SUBST([HAVE_RENAMEAT])
|
|
|
|
HAVE_VASPRINTF=1; AC_SUBST([HAVE_VASPRINTF])
|
|
|
|
HAVE_VDPRINTF=1; AC_SUBST([HAVE_VDPRINTF])
|
|
|
|
REPLACE_DPRINTF=0; AC_SUBST([REPLACE_DPRINTF])
|
|
|
|
REPLACE_FCLOSE=0; AC_SUBST([REPLACE_FCLOSE])
|
Merge from gnulib, improving some licensing wording.
This clarifies and fixes some licensing issues raised by Glenn Morris
<http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
It also merges the latest version of texinfo.tex and has some
MSVC-related changes that don't affect Emacs.
* Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
pathmax, and raise, since these are needed only to address
MSVC-related issues that Emacs doesn't have.
* doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
* lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
* lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
* m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
* m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
* m4/unistd_h.m4: Merge from gnulib.
2011-09-26 21:30:18 +00:00
|
|
|
REPLACE_FDOPEN=0; AC_SUBST([REPLACE_FDOPEN])
|
2011-03-21 05:04:41 +00:00
|
|
|
REPLACE_FFLUSH=0; AC_SUBST([REPLACE_FFLUSH])
|
|
|
|
REPLACE_FOPEN=0; AC_SUBST([REPLACE_FOPEN])
|
|
|
|
REPLACE_FPRINTF=0; AC_SUBST([REPLACE_FPRINTF])
|
|
|
|
REPLACE_FPURGE=0; AC_SUBST([REPLACE_FPURGE])
|
|
|
|
REPLACE_FREOPEN=0; AC_SUBST([REPLACE_FREOPEN])
|
|
|
|
REPLACE_FSEEK=0; AC_SUBST([REPLACE_FSEEK])
|
|
|
|
REPLACE_FSEEKO=0; AC_SUBST([REPLACE_FSEEKO])
|
|
|
|
REPLACE_FTELL=0; AC_SUBST([REPLACE_FTELL])
|
|
|
|
REPLACE_FTELLO=0; AC_SUBST([REPLACE_FTELLO])
|
|
|
|
REPLACE_GETDELIM=0; AC_SUBST([REPLACE_GETDELIM])
|
|
|
|
REPLACE_GETLINE=0; AC_SUBST([REPLACE_GETLINE])
|
|
|
|
REPLACE_OBSTACK_PRINTF=0; AC_SUBST([REPLACE_OBSTACK_PRINTF])
|
|
|
|
REPLACE_PERROR=0; AC_SUBST([REPLACE_PERROR])
|
|
|
|
REPLACE_POPEN=0; AC_SUBST([REPLACE_POPEN])
|
|
|
|
REPLACE_PRINTF=0; AC_SUBST([REPLACE_PRINTF])
|
|
|
|
REPLACE_REMOVE=0; AC_SUBST([REPLACE_REMOVE])
|
|
|
|
REPLACE_RENAME=0; AC_SUBST([REPLACE_RENAME])
|
|
|
|
REPLACE_RENAMEAT=0; AC_SUBST([REPLACE_RENAMEAT])
|
|
|
|
REPLACE_SNPRINTF=0; AC_SUBST([REPLACE_SNPRINTF])
|
|
|
|
REPLACE_SPRINTF=0; AC_SUBST([REPLACE_SPRINTF])
|
2011-04-18 04:03:18 +00:00
|
|
|
REPLACE_STDIO_READ_FUNCS=0; AC_SUBST([REPLACE_STDIO_READ_FUNCS])
|
2011-03-21 05:04:41 +00:00
|
|
|
REPLACE_STDIO_WRITE_FUNCS=0; AC_SUBST([REPLACE_STDIO_WRITE_FUNCS])
|
|
|
|
REPLACE_TMPFILE=0; AC_SUBST([REPLACE_TMPFILE])
|
|
|
|
REPLACE_VASPRINTF=0; AC_SUBST([REPLACE_VASPRINTF])
|
|
|
|
REPLACE_VDPRINTF=0; AC_SUBST([REPLACE_VDPRINTF])
|
|
|
|
REPLACE_VFPRINTF=0; AC_SUBST([REPLACE_VFPRINTF])
|
|
|
|
REPLACE_VPRINTF=0; AC_SUBST([REPLACE_VPRINTF])
|
|
|
|
REPLACE_VSNPRINTF=0; AC_SUBST([REPLACE_VSNPRINTF])
|
|
|
|
REPLACE_VSPRINTF=0; AC_SUBST([REPLACE_VSPRINTF])
|
|
|
|
])
|