aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2011-03-25 14:10:45 +0200
committerEli Zaretskii2011-03-25 14:10:45 +0200
commit07da4b3c924abe8cc95e88ce2f19daeebd8bba21 (patch)
tree9353bce0cf848a8225162a52fba1d26f1c8c109c
parent9257ee21a4d967beb92c754843b4d97b0a85a16b (diff)
downloademacs-07da4b3c924abe8cc95e88ce2f19daeebd8bba21.tar.gz
emacs-07da4b3c924abe8cc95e88ce2f19daeebd8bba21.zip
Adapt config.bat and msdos/sedlibmk.inp to autogen and addition of stdio.
msdos/sedlibmk.inp: Adapt to addition of the gnulib stdio module. config.bat: Generate src/config.h and lib/Makefile from autogen/config.in and autogen/Makefile.in.
-rw-r--r--ChangeLog5
-rw-r--r--config.bat5
-rw-r--r--msdos/ChangeLog4
-rw-r--r--msdos/sedlibmk.inp152
4 files changed, 164 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 71c445bbe0a..0a31e4015fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12011-03-25 Eli Zaretskii <eliz@gnu.org>
2
3 * config.bat: Generate src/config.h and lib/Makefile from
4 autogen/config.in and autogen/Makefile.in.
5
12011-03-25 Glenn Morris <rgm@gnu.org> 62011-03-25 Glenn Morris <rgm@gnu.org>
2 7
3 * compile, config.guess, config.sub, depcomp, install-sh, missing: 8 * compile, config.guess, config.sub, depcomp, install-sh, missing:
diff --git a/config.bat b/config.bat
index 4288f6537e6..c90871de6ff 100644
--- a/config.bat
+++ b/config.bat
@@ -158,7 +158,7 @@ rem Create "config.h"
158rm -f config.h2 config.tmp 158rm -f config.h2 config.tmp
159sed -e '' config.in > config.tmp 159sed -e '' config.in > config.tmp
160if "%X11%" == "" goto src4 160if "%X11%" == "" goto src4
161sed -f ../msdos/sed2x.inp <config.in >config.tmp 161sed -f ../msdos/sed2x.inp < ..\autogen\config.in > config.tmp
162:src4 162:src4
163sed -f ../msdos/sed2v2.inp <config.tmp >config.h2 163sed -f ../msdos/sed2v2.inp <config.tmp >config.h2
164Rem See if DECL_ALIGN can be supported with this GCC 164Rem See if DECL_ALIGN can be supported with this GCC
@@ -283,11 +283,12 @@ If Exist getopt.in.h update getopt.in.h getopt.in-h
283If Exist stdbool.in.h update stdbool.in.h stdbool.in-h 283If Exist stdbool.in.h update stdbool.in.h stdbool.in-h
284If Exist stddef.in.h update stddef.in.h stddef.in-h 284If Exist stddef.in.h update stddef.in.h stddef.in-h
285If Exist stdint.in.h update stdint.in.h stdint.in-h 285If Exist stdint.in.h update stdint.in.h stdint.in-h
286If Exist stdio.in.h update stdio.in.h stdio.in-h
286If Exist stdlib.in.h update stdlib.in.h stdlib.in-h 287If Exist stdlib.in.h update stdlib.in.h stdlib.in-h
287If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h 288If Exist sys_stat.in.h update sys_stat.in.h sys_stat.in-h
288If Exist time.in.h update time.in.h time.in-h 289If Exist time.in.h update time.in.h time.in-h
289If Exist unistd.in.h update unistd.in.h unistd.in-h 290If Exist unistd.in.h update unistd.in.h unistd.in-h
290sed -f ../msdos/sedlibcf.inp < Makefile.in > makefile.tmp 291sed -f ../msdos/sedlibcf.inp < ..\autogen\Makefile.in > makefile.tmp
291sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile 292sed -f ../msdos/sedlibmk.inp < makefile.tmp > Makefile
292rm -f makefile.tmp 293rm -f makefile.tmp
293Rem Create .Po files for new files in lib/ 294Rem Create .Po files for new files in lib/
diff --git a/msdos/ChangeLog b/msdos/ChangeLog
index 1891d79da43..ce51a753741 100644
--- a/msdos/ChangeLog
+++ b/msdos/ChangeLog
@@ -1,3 +1,7 @@
12011-03-25 Eli Zaretskii <eliz@gnu.org>
2
3 * sedlibmk.inp: Adapt to addition of the gnulib stdio module.
4
12011-02-26 Eli Zaretskii <eliz@gnu.org> 52011-02-26 Eli Zaretskii <eliz@gnu.org>
2 6
3 * sedlibmk.inp (BITSIZEOF_PTRDIFF_T, BITSIZEOF_SIG_ATOMIC_T) 7 * sedlibmk.inp (BITSIZEOF_PTRDIFF_T, BITSIZEOF_SIG_ATOMIC_T)
diff --git a/msdos/sedlibmk.inp b/msdos/sedlibmk.inp
index b71aef985a9..8a261400189 100644
--- a/msdos/sedlibmk.inp
+++ b/msdos/sedlibmk.inp
@@ -16,6 +16,69 @@
16# 16#
17# ---------------------------------------------------------------------- 17# ----------------------------------------------------------------------
18# 18#
19# Checklist to add a new gnulib module:
20#
21# . If the module includes source files that need to be compiled, add
22# the corresponding .o file names to the list that gets assigned to
23# the gl_LIBOBJS variable.
24#
25# . If the module defines functions that need to replace DJGPP
26# functions, edit the appropriate REPLACE_foo variables to 1;
27# otherwise edit them to zero:
28#
29# /^REPLACE_CALLOC *=/s/@REPLACE_CALLOC@/0/
30#
31# . If it's a header, edit the corresponding variable to either an
32# empty value or to the name of the header. Examples:
33#
34# /^STDINT_H *=/s/@[^@\n]*@/stdint.h/ -- stdint.h is needed
35# /^STDDEF_H *=/s/@[^@\n]*@// -- stddef.h is not needed
36#
37# . Also edit the NEXT_foo and NEXT_AS_FIRST_DIRECTIVE_foo_H variable
38# as appropriately: to an empty value if the DJGPP system header
39# should not be included after the gnulib one, or if the gnulib one
40# is not needed; and to the corresponding DJGPP header name
41# otherwise. Examples:
42#
43# /^NEXT_STDDEF_H *=/s/@[^@\n]*@//
44# /^NEXT_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
45# /^NEXT_AS_FIRST_DIRECTIVE_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
46# /^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H *=/s/@[^@\n]*@//
47#
48# . If the header is needed, edit all the variables it uses as
49# appropriate. In general, if DJGPP has the corresponding feature,
50# the value of the corresponding HAVE_foo should be set to what
51# DJGPP has, and the corresponding GNULIB_foo variable should be
52# edited to zero. If the feature is not available, the HAVE_foo
53# variable should be edited to zero and the corresponding
54# GNULIB_foo variable should be edited to 1 if the gnulib
55# replacement can work for DJGPP (a rare phenomenon), zero
56# otherwise.
57#
58# . Some gnulib header files have more complex recipes in
59# autogen/Makefile.in than others. The tell-tale sign of such a
60# recipe is that the input redirection from the .in.h file is not
61# present at the end of the command, like this:
62#
63# -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
64# } > $@-t && \
65# mv $@-t $@
66#
67# as opposed to this:
68#
69# -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
70# < $(srcdir)/sys_stat.in.h; \
71# } > $@-t && \
72# mv $@-t $@
73#
74# For those recipes that do _not_ have redirection at the end of
75# the command, add a block of Sed commands like this:
76#
77# /^stdio\.h:/,/^ [ ]*mv /{
78# s/'\; \\ *$/' >> $@-t/
79# }
80#
81# ----------------------------------------------------------------------
19# Replace @..@ constants. 82# Replace @..@ constants.
20/^\# @configure_input@/s!@configure_input@!lib/Makefile. Generated from Makefile.in by config.bat! 83/^\# @configure_input@/s!@configure_input@!lib/Makefile. Generated from Makefile.in by config.bat!
21/^@SET_MAKE@$/s/@SET_MAKE@// 84/^@SET_MAKE@$/s/@SET_MAKE@//
@@ -64,6 +127,7 @@ am__cd = cd
64/^GNULIB_CANONICALIZE_FILE_NAME *=/s/@GNULIB_CANONICALIZE_FILE_NAME@/0/ 127/^GNULIB_CANONICALIZE_FILE_NAME *=/s/@GNULIB_CANONICALIZE_FILE_NAME@/0/
65/^GNULIB_CHOWN *=/s/@GNULIB_CHOWN@/0/ 128/^GNULIB_CHOWN *=/s/@GNULIB_CHOWN@/0/
66/^GNULIB_CLOSE *=/s/@GNULIB_CLOSE@/0/ 129/^GNULIB_CLOSE *=/s/@GNULIB_CLOSE@/0/
130/^GNULIB_DPRINTF *=/s/@GNULIB_DPRINTF@/0/
67/^GNULIB_DUP2 *=/s/@GNULIB_DUP2@/0/ 131/^GNULIB_DUP2 *=/s/@GNULIB_DUP2@/0/
68/^GNULIB_DUP3 *=/s/@GNULIB_DUP3@/1/ 132/^GNULIB_DUP3 *=/s/@GNULIB_DUP3@/1/
69/^GNULIB_ENVIRON *=/s/@GNULIB_ENVIRON@/0/ 133/^GNULIB_ENVIRON *=/s/@GNULIB_ENVIRON@/0/
@@ -72,15 +136,31 @@ am__cd = cd
72/^GNULIB_FCHDIR *=/s/@GNULIB_FCHDIR@/0/ 136/^GNULIB_FCHDIR *=/s/@GNULIB_FCHDIR@/0/
73/^GNULIB_FCHOWNAT *=/s/@GNULIB_FCHOWNAT@/0/ 137/^GNULIB_FCHOWNAT *=/s/@GNULIB_FCHOWNAT@/0/
74/^GNULIB_FCHMODAT *=/s/@GNULIB_FCHMODAT@/0/ 138/^GNULIB_FCHMODAT *=/s/@GNULIB_FCHMODAT@/0/
139/^GNULIB_FCLOSE *=/s/@GNULIB_FCLOSE@/0/
140/^GNULIB_FFLUSH *=/s/@GNULIB_FFLUSH@/0/
141/^GNULIB_FOPEN *=/s/@GNULIB_FOPEN@/0/
142/^GNULIB_FPRINTF *=/s/@GNULIB_FPRINTF@/0/
143/^GNULIB_FPRINTF_POSIX *=/s/@GNULIB_FPRINTF_POSIX@/0/
144/^GNULIB_FPURGE *=/s/@GNULIB_FPURGE@/0/
145/^GNULIB_FPUTC *=/s/@GNULIB_FPUTC@/0/
146/^GNULIB_FPUTS *=/s/@GNULIB_FPUTS@/0/
147/^GNULIB_FREOPEN *=/s/@GNULIB_FREOPEN@/0/
148/^GNULIB_FSEEK *=/s/@GNULIB_FSEEK@/0/
149/^GNULIB_FSEEKO *=/s/@GNULIB_FSEEKO@/0/
75/^GNULIB_FSTATAT *=/s/@GNULIB_FSTATAT@/0/ 150/^GNULIB_FSTATAT *=/s/@GNULIB_FSTATAT@/0/
76/^GNULIB_FSYNC *=/s/@GNULIB_FSYNC@/0/ 151/^GNULIB_FSYNC *=/s/@GNULIB_FSYNC@/0/
152/^GNULIB_FTELL *=/s/@GNULIB_FTELL@/0/
153/^GNULIB_FTELLO *=/s/@GNULIB_FTELLO@/0/
77/^GNULIB_FTRUNCATE *=/s/@GNULIB_FTRUNCATE@/0/ 154/^GNULIB_FTRUNCATE *=/s/@GNULIB_FTRUNCATE@/0/
78/^GNULIB_FUTIMENS *=/s/@GNULIB_FUTIMENS@/0/ 155/^GNULIB_FUTIMENS *=/s/@GNULIB_FUTIMENS@/0/
156/^GNULIB_FWRITE *=/s/@GNULIB_FWRITE@/0/
79/^GNULIB_GETCWD *=/s/@GNULIB_GETCWD@/0/ 157/^GNULIB_GETCWD *=/s/@GNULIB_GETCWD@/0/
158/^GNULIB_GETDELIM *=/s/@GNULIB_GETDELIM@/0/
80/^GNULIB_GETDOMAINNAME *=/s/@GNULIB_GETDOMAINNAME@/0/ 159/^GNULIB_GETDOMAINNAME *=/s/@GNULIB_GETDOMAINNAME@/0/
81/^GNULIB_GETDTABLESIZE *=/s/@GNULIB_GETDTABLESIZE@/0/ 160/^GNULIB_GETDTABLESIZE *=/s/@GNULIB_GETDTABLESIZE@/0/
82/^GNULIB_GETGROUPS *=/s/@GNULIB_GETGROUPS@/0/ 161/^GNULIB_GETGROUPS *=/s/@GNULIB_GETGROUPS@/0/
83/^GNULIB_GETHOSTNAME *=/s/@GNULIB_GETHOSTNAME@/0/ 162/^GNULIB_GETHOSTNAME *=/s/@GNULIB_GETHOSTNAME@/0/
163/^GNULIB_GETLINE *=/s/@GNULIB_GETLINE@/0/
84/^GNULIB_GETLOADAVG *=/s/@GNULIB_GETLOADAVG@/1/ 164/^GNULIB_GETLOADAVG *=/s/@GNULIB_GETLOADAVG@/1/
85/^GNULIB_GETLOGIN *=/s/@GNULIB_GETLOGIN@/0/ 165/^GNULIB_GETLOGIN *=/s/@GNULIB_GETLOGIN@/0/
86/^GNULIB_GETLOGIN_R *=/s/@GNULIB_GETLOGIN_R@/0/ 166/^GNULIB_GETLOGIN_R *=/s/@GNULIB_GETLOGIN_R@/0/
@@ -108,22 +188,35 @@ am__cd = cd
108/^GNULIB_MKSTEMPS *=/s/@GNULIB_MKSTEMPS@/0/ 188/^GNULIB_MKSTEMPS *=/s/@GNULIB_MKSTEMPS@/0/
109/^GNULIB_MKTIME *=/s/@GNULIB_MKTIME@/0/ 189/^GNULIB_MKTIME *=/s/@GNULIB_MKTIME@/0/
110/^GNULIB_NANOSLEEP *=/s/@GNULIB_NANOSLEEP@/0/ 190/^GNULIB_NANOSLEEP *=/s/@GNULIB_NANOSLEEP@/0/
191/^GNULIB_OBSTACK_PRINTF *=/s/@GNULIB_OBSTACK_PRINTF@/0/
192/^GNULIB_OBSTACK_PRINTF_POSIX *=/s/@GNULIB_OBSTACK_PRINTF_POSIX@/0/
193/^GNULIB_PERROR *=/s/@GNULIB_PERROR@/0/
111/^GNULIB_PIPE *=/s/@GNULIB_PIPE@/0/ 194/^GNULIB_PIPE *=/s/@GNULIB_PIPE@/0/
112/^GNULIB_PIPE2 *=/s/@GNULIB_PIPE2@/0/ 195/^GNULIB_PIPE2 *=/s/@GNULIB_PIPE2@/0/
196/^GNULIB_POPEN *=/s/@GNULIB_POPEN@/0/
113/^GNULIB_PREAD *=/s/@GNULIB_PREAD@/0/ 197/^GNULIB_PREAD *=/s/@GNULIB_PREAD@/0/
114/^GNULIB_PTSNAME *=/s/@GNULIB_PTSNAME@/0/ 198/^GNULIB_PTSNAME *=/s/@GNULIB_PTSNAME@/0/
199/^GNULIB_PUTC *=/s/@GNULIB_PUTC@/0/
200/^GNULIB_PUTCHAR *=/s/@GNULIB_PUTCHAR@/0/
115/^GNULIB_PUTENV *=/s/@GNULIB_PUTENV@/0/ 201/^GNULIB_PUTENV *=/s/@GNULIB_PUTENV@/0/
202/^GNULIB_PUTS *=/s/@GNULIB_PUTS@/0/
116/^GNULIB_PWRITE *=/s/@GNULIB_PWRITE@/0/ 203/^GNULIB_PWRITE *=/s/@GNULIB_PWRITE@/0/
117/^GNULIB_RANDOM_R *=/s/@GNULIB_RANDOM_R@/0/ 204/^GNULIB_RANDOM_R *=/s/@GNULIB_RANDOM_R@/0/
118/^GNULIB_READLINK *=/s/@GNULIB_READLINK@/0/ 205/^GNULIB_READLINK *=/s/@GNULIB_READLINK@/0/
119/^GNULIB_READLINKAT *=/s/@GNULIB_READLINKAT@/0/ 206/^GNULIB_READLINKAT *=/s/@GNULIB_READLINKAT@/0/
120/^GNULIB_REALLOC_POSIX *=/s/@GNULIB_REALLOC_POSIX@/0/ 207/^GNULIB_REALLOC_POSIX *=/s/@GNULIB_REALLOC_POSIX@/0/
121/^GNULIB_REALPATH *=/s/@GNULIB_REALPATH@/0/ 208/^GNULIB_REALPATH *=/s/@GNULIB_REALPATH@/0/
209/^GNULIB_REMOVE *=/s/@GNULIB_REMOVE@/0/
210/^GNULIB_RENAME *=/s/@GNULIB_RENAME@/0/
211/^GNULIB_RENAMEAT *=/s/@GNULIB_RENAMEAT@/0/
122/^GNULIB_RMDIR *=/s/@GNULIB_RMDIR@/0/ 212/^GNULIB_RMDIR *=/s/@GNULIB_RMDIR@/0/
123/^GNULIB_RPMATCH *=/s/@GNULIB_RPMATCH@/0/ 213/^GNULIB_RPMATCH *=/s/@GNULIB_RPMATCH@/0/
124/^GNULIB_SETENV *=/s/@GNULIB_SETENV@/0/ 214/^GNULIB_SETENV *=/s/@GNULIB_SETENV@/0/
125/^GNULIB_SLEEP *=/s/@GNULIB_SLEEP@/0/ 215/^GNULIB_SLEEP *=/s/@GNULIB_SLEEP@/0/
216/^GNULIB_SNPRINTF *=/s/@GNULIB_SNPRINTF@/0/
217/^GNULIB_SPRINTF_POSIX *=/s/@GNULIB_SPRINTF_POSIX@/0/
126/^GNULIB_STAT *=/s/@GNULIB_STAT@/0/ 218/^GNULIB_STAT *=/s/@GNULIB_STAT@/0/
219/^GNULIB_STDIO_H_SIGPIPE *=/s/@GNULIB_STDIO_H_SIGPIPE@/0/
127/^GNULIB_STRPTIME *=/s/@GNULIB_STRPTIME@/0/ 220/^GNULIB_STRPTIME *=/s/@GNULIB_STRPTIME@/0/
128/^GNULIB_STRTOD *=/s/@GNULIB_STRTOD@/0/ 221/^GNULIB_STRTOD *=/s/@GNULIB_STRTOD@/0/
129/^GNULIB_STRTOLL *=/s/@GNULIB_STRTOLL@/0/ 222/^GNULIB_STRTOLL *=/s/@GNULIB_STRTOLL@/0/
@@ -133,6 +226,7 @@ am__cd = cd
133/^GNULIB_SYSTEM_POSIX *=/s/@GNULIB_SYSTEM_POSIX@/0/ 226/^GNULIB_SYSTEM_POSIX *=/s/@GNULIB_SYSTEM_POSIX@/0/
134/^GNULIB_TIMEGM *=/s/@GNULIB_TIMEGM@/0/ 227/^GNULIB_TIMEGM *=/s/@GNULIB_TIMEGM@/0/
135/^GNULIB_TIME_R *=/s/@GNULIB_TIME_R@/1/ 228/^GNULIB_TIME_R *=/s/@GNULIB_TIME_R@/1/
229/^GNULIB_TMPFILE *=/s/@GNULIB_TMPFILE@/0/
136/^GNULIB_TTYNAME_R *=/s/@GNULIB_TTYNAME_R@/0/ 230/^GNULIB_TTYNAME_R *=/s/@GNULIB_TTYNAME_R@/0/
137/^GNULIB_UNISTD_H_GETOPT *=/s/@GNULIB_UNISTD_H_GETOPT@/1/ 231/^GNULIB_UNISTD_H_GETOPT *=/s/@GNULIB_UNISTD_H_GETOPT@/1/
138/^GNULIB_UNISTD_H_SIGPIPE *=/s/@GNULIB_UNISTD_H_SIGPIPE@/0/ 232/^GNULIB_UNISTD_H_SIGPIPE *=/s/@GNULIB_UNISTD_H_SIGPIPE@/0/
@@ -142,6 +236,14 @@ am__cd = cd
142/^GNULIB_UNSETENV *=/s/@GNULIB_UNSETENV@/1/ 236/^GNULIB_UNSETENV *=/s/@GNULIB_UNSETENV@/1/
143/^GNULIB_USLEEP *=/s/@GNULIB_USLEEP@/0/ 237/^GNULIB_USLEEP *=/s/@GNULIB_USLEEP@/0/
144/^GNULIB_UTIMENSAT *=/s/@GNULIB_UTIMENSAT@/0/ 238/^GNULIB_UTIMENSAT *=/s/@GNULIB_UTIMENSAT@/0/
239/^GNULIB_VASPRINTF *=/s/@GNULIB_VASPRINTF@/0/
240/^GNULIB_VDPRINTF *=/s/@GNULIB_VDPRINTF@/0/
241/^GNULIB_VFPRINTF *=/s/@GNULIB_VFPRINTF@/0/
242/^GNULIB_VFPRINTF_POSIX *=/s/@GNULIB_VFPRINTF_POSIX@/0/
243/^GNULIB_VPRINTF *=/s/@GNULIB_VPRINTF@/0/
244/^GNULIB_VPRINTF_POSIX *=/s/@GNULIB_VPRINTF_POSIX@/0/
245/^GNULIB_VSNPRINTF *=/s/@GNULIB_VSNPRINTF@/0/
246/^GNULIB_VSPRINTF_POSIX *=/s/@GNULIB_VSPRINTF_POSIX@/0/
145/^GNULIB_WCTOMB *=/s/@GNULIB_WCTOMB@/0/ 247/^GNULIB_WCTOMB *=/s/@GNULIB_WCTOMB@/0/
146/^GNULIB_WRITE *=/s/@GNULIB_WRITE@/0/ 248/^GNULIB_WRITE *=/s/@GNULIB_WRITE@/0/
147/^GNULIB__EXIT *=/s/@GNULIB__EXIT@/0/ 249/^GNULIB__EXIT *=/s/@GNULIB__EXIT@/0/
@@ -150,15 +252,24 @@ am__cd = cd
150/^HAVE_CHOWN *=/s/@HAVE_CHOWN@/1/ 252/^HAVE_CHOWN *=/s/@HAVE_CHOWN@/1/
151/^HAVE_DECL_ENVIRON *=/s/@HAVE_DECL_ENVIRON@/1/ 253/^HAVE_DECL_ENVIRON *=/s/@HAVE_DECL_ENVIRON@/1/
152/^HAVE_DECL_FCHDIR *=/s/@HAVE_DECL_FCHDIR@/0/ 254/^HAVE_DECL_FCHDIR *=/s/@HAVE_DECL_FCHDIR@/0/
255/^HAVE_DECL_FPURGE *=/s/@HAVE_DECL_FPURGE@//
256/^HAVE_DECL_FSEEKO *=/s/@HAVE_DECL_FSEEKO@/0/
257/^HAVE_DECL_FTELLO *=/s/@HAVE_DECL_FTELLO@/0/
258/^HAVE_DECL_GETDELIM *=/s/@HAVE_DECL_GETDELIM@/0/
153/^HAVE_DECL_GETDOMAINNAME *=/s/@HAVE_DECL_GETDOMAINNAME@/0/ 259/^HAVE_DECL_GETDOMAINNAME *=/s/@HAVE_DECL_GETDOMAINNAME@/0/
260/^HAVE_DECL_GETLINE *=/s/@HAVE_DECL_GETLINE@/0/
154/^HAVE_DECL_GETLOADAVG *=/s/@HAVE_DECL_GETLOADAVG@/0/ 261/^HAVE_DECL_GETLOADAVG *=/s/@HAVE_DECL_GETLOADAVG@/0/
155/^HAVE_DECL_GETLOGIN_R *=/s/@HAVE_DECL_GETLOGIN_R@/0/ 262/^HAVE_DECL_GETLOGIN_R *=/s/@HAVE_DECL_GETLOGIN_R@/0/
156/^HAVE_DECL_GETPAGESIZE *=/s/@HAVE_DECL_GETPAGESIZE@/1/ 263/^HAVE_DECL_GETPAGESIZE *=/s/@HAVE_DECL_GETPAGESIZE@/1/
157/^HAVE_DECL_GETUSERSHELL *=/s/@HAVE_DECL_GETUSERSHELL@/0/ 264/^HAVE_DECL_GETUSERSHELL *=/s/@HAVE_DECL_GETUSERSHELL@/0/
158/^HAVE_DECL_LOCALTIME_R *=/s/@HAVE_DECL_LOCALTIME_R@/0/ 265/^HAVE_DECL_LOCALTIME_R *=/s/@HAVE_DECL_LOCALTIME_R@/0/
266/^HAVE_DECL_OBSTACK_PRINTF *=/s/@HAVE_DECL_OBSTACK_PRINTF@/0/
159/^HAVE_DECL_SETENV *=/s/@HAVE_DECL_SETENV@/1/ 267/^HAVE_DECL_SETENV *=/s/@HAVE_DECL_SETENV@/1/
268/^HAVE_DECL_SNPRINTF *=/s/@HAVE_DECL_SNPRINTF@/0/
160/^HAVE_DECL_TTYNAME_R *=/s/@HAVE_DECL_TTYNAME_R@/0/ 269/^HAVE_DECL_TTYNAME_R *=/s/@HAVE_DECL_TTYNAME_R@/0/
161/^HAVE_DECL_UNSETENV *=/s/@HAVE_DECL_UNSETENV@/0/ 270/^HAVE_DECL_UNSETENV *=/s/@HAVE_DECL_UNSETENV@/0/
271/^HAVE_DECL_VSNPRINTF *=/s/@HAVE_DECL_VSNPRINTF@/0/
272/^HAVE_DPRINTF *=/s/@HAVE_DPRINTF@/0/
162/^HAVE_DUP2 *=/s/@HAVE_DUP2@/1/ 273/^HAVE_DUP2 *=/s/@HAVE_DUP2@/1/
163/^HAVE_DUP3 *=/s/@HAVE_DUP3@/0/ 274/^HAVE_DUP3 *=/s/@HAVE_DUP3@/0/
164/^HAVE_EUIDACCESS *=/s/@HAVE_EUIDACCESS@/0/ 275/^HAVE_EUIDACCESS *=/s/@HAVE_EUIDACCESS@/0/
@@ -166,8 +277,10 @@ am__cd = cd
166/^HAVE_FCHDIR *=/s/@HAVE_FCHDIR@/0/ 277/^HAVE_FCHDIR *=/s/@HAVE_FCHDIR@/0/
167/^HAVE_FCHMODAT *=/s/@HAVE_FCHMODAT@/0/ 278/^HAVE_FCHMODAT *=/s/@HAVE_FCHMODAT@/0/
168/^HAVE_FCHOWNAT *=/s/@HAVE_FCHOWNAT@/0/ 279/^HAVE_FCHOWNAT *=/s/@HAVE_FCHOWNAT@/0/
280/^HAVE_FSEEKO *=/s/@HAVE_FSEEKO@/0/
169/^HAVE_FSTATAT *=/s/@HAVE_FSTATAT@/0/ 281/^HAVE_FSTATAT *=/s/@HAVE_FSTATAT@/0/
170/^HAVE_FSYNC *=/s/@HAVE_FSYNC@/1/ 282/^HAVE_FSYNC *=/s/@HAVE_FSYNC@/1/
283/^HAVE_FTELLO *=/s/@HAVE_FTELLO@/0/
171/^HAVE_FTRUNCATE *=/s/@HAVE_FTRUNCATE@/1/ 284/^HAVE_FTRUNCATE *=/s/@HAVE_FTRUNCATE@/1/
172/^HAVE_FUTIMENS *=/s/@HAVE_FUTIMENS@/0/ 285/^HAVE_FUTIMENS *=/s/@HAVE_FUTIMENS@/0/
173/^HAVE_GETDTABLESIZE *=/s/@HAVE_GETDTABLESIZE@/0/ 286/^HAVE_GETDTABLESIZE *=/s/@HAVE_GETDTABLESIZE@/0/
@@ -208,6 +321,7 @@ am__cd = cd
208/^HAVE_READLINK *=/s/@HAVE_READLINK@/0/ 321/^HAVE_READLINK *=/s/@HAVE_READLINK@/0/
209/^HAVE_READLINKAT *=/s/@HAVE_READLINKAT@/0/ 322/^HAVE_READLINKAT *=/s/@HAVE_READLINKAT@/0/
210/^HAVE_REALPATH *=/s/@HAVE_REALPATH@/0/ 323/^HAVE_REALPATH *=/s/@HAVE_REALPATH@/0/
324/^HAVE_RENAMEAT *=/s/@HAVE_RENAMEAT@/0/
211/^HAVE_RPMATCH *=/s/@HAVE_RPMATCH@/0/ 325/^HAVE_RPMATCH *=/s/@HAVE_RPMATCH@/0/
212/^HAVE_SETENV *=/s/@HAVE_SETENV@/1/ 326/^HAVE_SETENV *=/s/@HAVE_SETENV@/1/
213/^HAVE_SIGNED_SIG_ATOMIC_T *=/s/@HAVE_SIGNED_SIG_ATOMIC_T@/1/ 327/^HAVE_SIGNED_SIG_ATOMIC_T *=/s/@HAVE_SIGNED_SIG_ATOMIC_T@/1/
@@ -234,6 +348,8 @@ am__cd = cd
234/^HAVE_UNSIGNED_LONG_LONG_INT *=/s/@HAVE_UNSIGNED_LONG_LONG_INT@/1/ 348/^HAVE_UNSIGNED_LONG_LONG_INT *=/s/@HAVE_UNSIGNED_LONG_LONG_INT@/1/
235/^HAVE_USLEEP *=/s/@HAVE_USLEEP@/1/ 349/^HAVE_USLEEP *=/s/@HAVE_USLEEP@/1/
236/^HAVE_UTIMENSAT *=/s/@HAVE_UTIMENSAT@/0/ 350/^HAVE_UTIMENSAT *=/s/@HAVE_UTIMENSAT@/0/
351/^HAVE_VASPRINTF *=/s/@HAVE_VASPRINTF@/0/
352/^HAVE_VDPRINTF *=/s/@HAVE_VDPRINTF@/0/
237/^HAVE_WCHAR_H *=/s/@HAVE_WCHAR_H@/1/ 353/^HAVE_WCHAR_H *=/s/@HAVE_WCHAR_H@/1/
238/^HAVE_WCHAR_T *=/s/@HAVE_WCHAR_T@/1/ 354/^HAVE_WCHAR_T *=/s/@HAVE_WCHAR_T@/1/
239/^HAVE_XSERVER *=/s/@HAVE_XSERVER@/0/ 355/^HAVE_XSERVER *=/s/@HAVE_XSERVER@/0/
@@ -250,12 +366,14 @@ am__cd = cd
250/^NEXT_AS_FIRST_DIRECTIVE_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/ 366/^NEXT_AS_FIRST_DIRECTIVE_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
251/^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H *=/s/@[^@\n]*@// 367/^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H *=/s/@[^@\n]*@//
252/^NEXT_AS_FIRST_DIRECTIVE_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/ 368/^NEXT_AS_FIRST_DIRECTIVE_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
369/^NEXT_AS_FIRST_DIRECTIVE_STDIO_H *=/s/@[^@\n]*@//
253/^NEXT_AS_FIRST_DIRECTIVE_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/ 370/^NEXT_AS_FIRST_DIRECTIVE_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/
254/^NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>! 371/^NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>!
255/^NEXT_AS_FIRST_DIRECTIVE_TIME_H *=/s/@[^@\n]*@/<time.h>/ 372/^NEXT_AS_FIRST_DIRECTIVE_TIME_H *=/s/@[^@\n]*@/<time.h>/
256/^NEXT_AS_FIRST_DIRECTIVE_UNISTD_H *=/s/@[^@\n]*@/<unistd.h>/ 373/^NEXT_AS_FIRST_DIRECTIVE_UNISTD_H *=/s/@[^@\n]*@/<unistd.h>/
257/^NEXT_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/ 374/^NEXT_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
258/^NEXT_STDDEF_H *=/s/@[^@\n]*@// 375/^NEXT_STDDEF_H *=/s/@[^@\n]*@//
376/^NEXT_STDIO_H *=/s/@[^@\n]*@//
259/^NEXT_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/ 377/^NEXT_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
260/^NEXT_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/ 378/^NEXT_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/
261/^NEXT_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>! 379/^NEXT_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>!
@@ -270,13 +388,27 @@ am__cd = cd
270/^REPLACE_CANONICALIZE_FILE_NAME *=/s/@REPLACE_CANONICALIZE_FILE_NAME@/0/ 388/^REPLACE_CANONICALIZE_FILE_NAME *=/s/@REPLACE_CANONICALIZE_FILE_NAME@/0/
271/^REPLACE_CHOWN *=/s/@REPLACE_CHOWN@/0/ 389/^REPLACE_CHOWN *=/s/@REPLACE_CHOWN@/0/
272/^REPLACE_CLOSE *=/s/@REPLACE_CLOSE@/0/ 390/^REPLACE_CLOSE *=/s/@REPLACE_CLOSE@/0/
391/^REPLACE_DPRINTF *=/s/@REPLACE_DPRINTF@/0/
273/^REPLACE_DUP *=/s/@REPLACE_DUP@/0/ 392/^REPLACE_DUP *=/s/@REPLACE_DUP@/0/
274/^REPLACE_DUP2 *=/s/@REPLACE_DUP2@/0/ 393/^REPLACE_DUP2 *=/s/@REPLACE_DUP2@/0/
275/^REPLACE_FCHOWNAT *=/s/@REPLACE_FCHOWNAT@/0/ 394/^REPLACE_FCHOWNAT *=/s/@REPLACE_FCHOWNAT@/0/
395/^REPLACE_FCLOSE *=/s/@REPLACE_FCLOSE@/0/
396/^REPLACE_FFLUSH *=/s/@REPLACE_FFLUSH@/0/
397/^REPLACE_FOPEN *=/s/@REPLACE_FOPEN@/0/
398/^REPLACE_FPRINTF *=/s/@REPLACE_FPRINTF@/0/
399/^REPLACE_FPURGE *=/s/@REPLACE_FPURGE@/0/
400/^REPLACE_FREOPEN *=/s/@REPLACE_FREOPEN@/0/
401/^REPLACE_FSEEK *=/s/@REPLACE_FSEEK@/0/
402/^REPLACE_FSEEKO *=/s/@REPLACE_FSEEKO@/0/
276/^REPLACE_FSTAT *=/s/@REPLACE_FSTAT@/0/ 403/^REPLACE_FSTAT *=/s/@REPLACE_FSTAT@/0/
404/^REPLACE_FSTATAT *=/s/@REPLACE_FSTATAT@/0/
405/^REPLACE_FTELL *=/s/@REPLACE_FTELL@/0/
406/^REPLACE_FTELLO *=/s/@REPLACE_FTELLO@/0/
277/^REPLACE_GETCWD *=/s/@REPLACE_GETCWD@/0/ 407/^REPLACE_GETCWD *=/s/@REPLACE_GETCWD@/0/
408/^REPLACE_GETDELIM *=/s/@REPLACE_GETDELIM@/0/
278/^REPLACE_GETDOMAINNAME *=/s/@REPLACE_GETDOMAINNAME@/0/ 409/^REPLACE_GETDOMAINNAME *=/s/@REPLACE_GETDOMAINNAME@/0/
279/^REPLACE_GETGROUPS *=/s/@REPLACE_GETGROUPS@/0/ 410/^REPLACE_GETGROUPS *=/s/@REPLACE_GETGROUPS@/0/
411/^REPLACE_GETLINE *=/s/@REPLACE_GETLINE@/0/
280/^REPLACE_GETLOGIN_R *=/s/@REPLACE_GETLOGIN_R@/0/ 412/^REPLACE_GETLOGIN_R *=/s/@REPLACE_GETLOGIN_R@/0/
281/^REPLACE_GETPAGESIZE *=/s/@REPLACE_GETPAGESIZE@/0/ 413/^REPLACE_GETPAGESIZE *=/s/@REPLACE_GETPAGESIZE@/0/
282/^REPLACE_LCHOWN *=/s/@REPLACE_LCHOWN@/0/ 414/^REPLACE_LCHOWN *=/s/@REPLACE_LCHOWN@/0/
@@ -294,25 +426,42 @@ am__cd = cd
294/^REPLACE_MKTIME *=/s/@REPLACE_MKTIME@/0/ 426/^REPLACE_MKTIME *=/s/@REPLACE_MKTIME@/0/
295/^REPLACE_NANOSLEEP *=/s/@REPLACE_NANOSLEEP@/0/ 427/^REPLACE_NANOSLEEP *=/s/@REPLACE_NANOSLEEP@/0/
296/^REPLACE_NULL *=/s/@REPLACE_NULL@/0/ 428/^REPLACE_NULL *=/s/@REPLACE_NULL@/0/
429/^REPLACE_OBSTACK_PRINTF *=/s/@REPLACE_OBSTACK_PRINTF@/0/
430/^REPLACE_PERROR *=/s/@REPLACE_PERROR@/0/
431/^REPLACE_POPEN *=/s/@REPLACE_POPEN@/0/
297/^REPLACE_PREAD *=/s/@REPLACE_PREAD@/0/ 432/^REPLACE_PREAD *=/s/@REPLACE_PREAD@/0/
433/^REPLACE_PRINTF *=/s/@REPLACE_PRINTF@/0/
298/^REPLACE_PUTENV *=/s/@REPLACE_PUTENV@/0/ 434/^REPLACE_PUTENV *=/s/@REPLACE_PUTENV@/0/
299/^REPLACE_PWRITE *=/s/@REPLACE_PWRITE@/0/ 435/^REPLACE_PWRITE *=/s/@REPLACE_PWRITE@/0/
300/^REPLACE_READLINK *=/s/@REPLACE_READLINK@/0/ 436/^REPLACE_READLINK *=/s/@REPLACE_READLINK@/0/
301/^REPLACE_REALLOC *=/s/@REPLACE_REALLOC@/0/ 437/^REPLACE_REALLOC *=/s/@REPLACE_REALLOC@/0/
302/^REPLACE_REALPATH *=/s/@REPLACE_REALPATH@/0/ 438/^REPLACE_REALPATH *=/s/@REPLACE_REALPATH@/0/
439/^REPLACE_REMOVE *=/s/@REPLACE_REMOVE@/0/
440/^REPLACE_RENAME *=/s/@REPLACE_RENAME@/0/
441/^REPLACE_RENAMEAT *=/s/@REPLACE_RENAMEAT@/0/
303/^REPLACE_RMDIR *=/s/@REPLACE_RMDIR@/0/ 442/^REPLACE_RMDIR *=/s/@REPLACE_RMDIR@/0/
304/^REPLACE_SETENV *=/s/@REPLACE_SETENV@/0/ 443/^REPLACE_SETENV *=/s/@REPLACE_SETENV@/0/
305/^REPLACE_SLEEP *=/s/@REPLACE_SLEEP@/0/ 444/^REPLACE_SLEEP *=/s/@REPLACE_SLEEP@/0/
445/^REPLACE_SNPRINTF *=/s/@REPLACE_SNPRINTF@/0/
446/^REPLACE_SPRINTF *=/s/@REPLACE_SPRINTF@/0/
306/^REPLACE_STAT *=/s/@REPLACE_STAT@/0/ 447/^REPLACE_STAT *=/s/@REPLACE_STAT@/0/
448/^REPLACE_STDIO_WRITE_FUNCS *=/s/@REPLACE_STDIO_WRITE_FUNCS@/0/
307/^REPLACE_STRTOD *=/s/@REPLACE_STRTOD@/0/ 449/^REPLACE_STRTOD *=/s/@REPLACE_STRTOD@/0/
308/^REPLACE_SYMLINK *=/s/@REPLACE_SYMLINK@/0/ 450/^REPLACE_SYMLINK *=/s/@REPLACE_SYMLINK@/0/
309/^REPLACE_TIMEGM *=/s/@REPLACE_TIMEGM@/0/ 451/^REPLACE_TIMEGM *=/s/@REPLACE_TIMEGM@/0/
452/^REPLACE_TMPFILE *=/s/@REPLACE_TMPFILE@/0/
310/^REPLACE_TTYNAME_R *=/s/@REPLACE_TTYNAME_R@/0/ 453/^REPLACE_TTYNAME_R *=/s/@REPLACE_TTYNAME_R@/0/
311/^REPLACE_UNLINK *=/s/@REPLACE_UNLINK@/0/ 454/^REPLACE_UNLINK *=/s/@REPLACE_UNLINK@/0/
312/^REPLACE_UNLINKAT *=/s/@REPLACE_UNLINKAT@/0/ 455/^REPLACE_UNLINKAT *=/s/@REPLACE_UNLINKAT@/0/
313/^REPLACE_UNSETENV *=/s/@REPLACE_UNSETENV@/0/ 456/^REPLACE_UNSETENV *=/s/@REPLACE_UNSETENV@/0/
314/^REPLACE_USLEEP *=/s/@REPLACE_USLEEP@/0/ 457/^REPLACE_USLEEP *=/s/@REPLACE_USLEEP@/0/
315/^REPLACE_UTIMENSAT *=/s/@REPLACE_UTIMENSAT@/0/ 458/^REPLACE_UTIMENSAT *=/s/@REPLACE_UTIMENSAT@/0/
459/^REPLACE_VASPRINTF *=/s/@REPLACE_VASPRINTF@/0/
460/^REPLACE_VDPRINTF *=/s/@REPLACE_VDPRINTF@/0/
461/^REPLACE_VFPRINTF *=/s/@REPLACE_VFPRINTF@/0/
462/^REPLACE_VPRINTF *=/s/@REPLACE_VPRINTF@/0/
463/^REPLACE_VSNPRINTF *=/s/@REPLACE_VSNPRINTF@/0/
464/^REPLACE_VSPRINTF *=/s/@REPLACE_VSPRINTF@/0/
316/^REPLACE_WCTOMB *=/s/@REPLACE_WCTOMB@/0/ 465/^REPLACE_WCTOMB *=/s/@REPLACE_WCTOMB@/0/
317/^REPLACE_WRITE *=/s/@REPLACE_WRITE@/0/ 466/^REPLACE_WRITE *=/s/@REPLACE_WRITE@/0/
318/^SIG_ATOMIC_T_SUFFIX *=/s/@SIG_ATOMIC_T_SUFFIX@// 467/^SIG_ATOMIC_T_SUFFIX *=/s/@SIG_ATOMIC_T_SUFFIX@//
@@ -368,6 +517,9 @@ s/^ [ ]*{ echo \(.*\) && \\/ djecho \1 > $@-t/
368s/ \&\& \\ *$// 517s/ \&\& \\ *$//
369s/\.in-h\; *\\$/.in-h >> $@-t/ 518s/\.in-h\; *\\$/.in-h >> $@-t/
370/^ [ ]*} /d 519/^ [ ]*} /d
520/^stdio\.h:/,/^ [ ]*mv /{
521 s/'\; \\ *$/' >> $@-t/
522}
371/^stdlib\.h:/,/^ [ ]*mv /{ 523/^stdlib\.h:/,/^ [ ]*mv /{
372 s/'\; \\ *$/' >> $@-t/ 524 s/'\; \\ *$/' >> $@-t/
373} 525}