merge master
[emacs.git] / msdos / sedlibmk.inp
blob966ac8ee4644742d843193b5c234ae24750703fe
1 # -sedlibmk.inp-----------------------------------------------------------
2 # Configuration script for lib/Makefile under DJGPP v2.x
3 # ----------------------------------------------------------------------
5 # Copyright (C) 2011-2015 Free Software Foundation, Inc.
7 # This file is part of GNU Emacs.
9 # This file is free software; as a special exception, the author gives
10 # unlimited permission to copy and/or distribute it, with or without
11 # modifications, as long as this notice is preserved.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 # ----------------------------------------------------------------------
19 # Checklist to add a new gnulib module:
21 #  . If the module includes source files that need to be compiled, and
22 #    does not appear in the am_libgnu_a_OBJECTS list, add the
23 #    corresponding .o file names to the list that gets assigned to the
24 #    gl_LIBOBJS variable.
26 #  . If a module appears in am_libgnu_a_OBJECTS that is not required
27 #    for the MSDOS build, edit it out by adding an appropriate command
28 #    to the set that edits the am_libgnu_a_OBJECTS block.
30 #  . If the module defines functions that need to replace DJGPP
31 #    functions, edit the appropriate REPLACE_foo variables to 1:
33 #     /^REPLACE_CALLOC *=/s/@REPLACE_CALLOC@/1/
35 #    Note that this file already has a command to edit all the
36 #    REPLACE_foo variables to zero, so if some gnulib replacement
37 #    function is ever needed, the corresponding editing command such
38 #    as above should be placed before that catchall rule (search for
39 #    "REPLACE_" below).
41 #  . If the module is a header or adds headers, edit the corresponding
42 #    variable to either an empty value or to the name of the header.
43 #    Examples:
45 #       /^STDINT_H *=/s/@[^@\n]*@/stdint.h/  -- stdint.h is needed
46 #       /^STDDEF_H *=/s/@[^@\n]*@//          -- stddef.h is not needed
48 #  . Some of the headers are generated conditionally, and the
49 #    corresponding recipes are guarded by @GL_GENERATE_xxxx_H_TRUE@
50 #    and @GL_GENERATE_xxxx_H_FALSE@.  Depending on whether DJGPP uses
51 #    the corresponding header, these should be edited either to
52 #    nothing (thus exposing the recipe) or to #, which comments the
53 #    recipe away.  Example:
55 #       s/^@GL_GENERATE_STDBOOL_H_TRUE@/\#/
56 #       s/^@GL_GENERATE_STDBOOL_H_FALSE@//
58 #  . Also edit the NEXT_foo_H and NEXT_AS_FIRST_DIRECTIVE_foo_H
59 #    variables as appropriately: to an empty value if the gnulib
60 #    header is not used, and to the corresponding DJGPP header name
61 #    otherwise.  Examples:
63 #     /^NEXT_STDDEF_H *=/s/@[^@\n]*@//
64 #     /^NEXT_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
65 #     /^NEXT_AS_FIRST_DIRECTIVE_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
66 #     /^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H *=/s/@[^@\n]*@//
68 #  . Note that some gnulib headers cannot be left unused: those for
69 #    which there's no corresponding foo_H variable in
70 #    msdos/autogen/Makefile.in (example: stdio.h).  For these the "not
71 #    needed" path is not applicable.
73 #  . If the header is needed, edit all the variables it uses as
74 #    appropriate.  In general, if DJGPP has the corresponding feature,
75 #    the value of the corresponding HAVE_foo should be set to what
76 #    DJGPP has, and the corresponding GNULIB_foo variable should be
77 #    edited to zero.  If the feature is not available, the HAVE_foo
78 #    variable should be edited to zero and the corresponding
79 #    GNULIB_foo variable should be edited to 1 if the gnulib
80 #    replacement can work for DJGPP (a rare phenomenon), zero
81 #    otherwise.  Note that by default all HAVE_foo and GNULIB_foo
82 #    variables that don't have a specific editing rule will be edited
83 #    to zero.
85 #  . Some gnulib header files have more complex recipes in
86 #    msdos/autogen/Makefile.in than others.  The tell-tale sign of
87 #    such a recipe is that the input redirection from the .in.h file
88 #    is not present at the end of the command, like this:
90 #             -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
91 #       } > $@-t && \
92 #       mv $@-t $@
94 #    as opposed to this:
96 #             -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
97 #             < $(srcdir)/sys_stat.in.h; \
98 #       } > $@-t && \
99 #       mv $@-t $@
101 #    For those recipes that do _not_ have redirection at the end of
102 #    the command, add a block of Sed commands like this:
104 #     /^stdio\.h:/,/^   [       ]*mv /{
105 #       s/'\; \\ *$/' >> $@-t/
106 #     }
108 #    There's also a 3rd variety of script, which ends like this:
110 #             -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
111 #             < $(srcdir)/string.in.h; \
112 #       } > $@-t && \
113 #       mv $@-t $@
115 #    For these, you will need Sed commands like those used for
116 #    string.h, see below.
118 #  . If the recipe for generating a header file uses 'cat', replace it with
120 #      sed -e ''
122 #    (if needed; there's already an edit command that should take care of
123 #     this).
125 # The following Awk script is useful for editing portions of
126 # msdos/autogen/Makefile.in into Sed commands that define the
127 # corresponding variables to zero (which is what is required in the
128 # absolute majority of cases):
130 #   { printf "/^%s *=/s/%s/0/\n",$1,$3}
132 # ----------------------------------------------------------------------
133 # Replace @..@ constants.
134 /^\# @configure_input@/s!@configure_input@!lib/Makefile.  Generated from Makefile.in by config.bat!
135 /^@SET_MAKE@$/s/@SET_MAKE@//
136 /^VPATH *=/s/@[^@\n]*@/./
137 s/@PACKAGE@/emacs/
138 /^am__cd *=/c\
139 am__cd = cd
140 /^@BUILDING_FOR_WINDOWSNT_TRUE@/s/@[^@\n]*@/#/
141 /^@BUILDING_FOR_WINDOWSNT_FALSE@/s/@[^@\n]*@//
142 /^ALLOCA *=/s/@[^@\n]*@//
143 /^ALSA_CFLAGS *=/s/@[^@\n]*@//
144 /^ALSA_LIBS *=/s/@[^@\n]*@//
145 /^AR *=/s/@[^@\n]*@/ar/
146 /^ARFLAGS *=/s/@[^@\n]*@/cru/
147 /^AWK *=/s/@[^@\n]*@/gawk/
148 /^CANNOT_DUMP *=/s/@[^@\n]*@/no/
149 /^CC *=/s/@[^@\n]*@/gcc/
150 /^CPP *=/s/@[^@\n]*@/gcc -e/
151 /^CPPFLAGS *=/s/@[^@\n]*@//
152 /^CCDEPMODE *=/s/@[^@\n]*@/depmode=gcc3/
153 /^CFLAGS *=/s/@[^@\n]*@/-g -O2/
154 /^CYGPATH_W *=/s/@[^@\n]*@//
155 /^CYGWIN_OBJ *=/s/@[^@\n]*@//
156 /^C_SWITCH_MACHINE *=/s/@C_SWITCH_MACHINE@//
157 /^C_SWITCH_SYSTEM *=/s/@C_SWITCH_SYSTEM@//
158 /^GNUSTEP_CFLAGS *=/s/@GNUSTEP_CFLAGS@//
159 /^C_SWITCH_X_SITE *=/s/@C_SWITCH_X_SITE@//
160 /^PROFILING_CFLAGS *=/s/@PROFILING_CFLAGS@//
161 /^GNULIB_WARN_CFLAGS *=/s/@GNULIB_WARN_CFLAGS@//
162 /^WARN_CFLAGS *=/s/@WARN_CFLAGS@//
163 /^WERROR_CFLAGS *=/s/@WERROR_CFLAGS@//
164 /^DEFS *=/s/@[^@\n]*@//
165 /^DEPDIR *=/s/@[^@\n]*@/deps/
166 /^DEPFLAGS *=/s/@[^@\n]*@/-MMD -MF ${DEPDIR}\/$*.d/
167 /^ECHO_N *=/s/@[^@\n]*@/-n/
168 /^EXEEXT *=/s/@[^@\n]*@/.exe/
169 /^EXECINFO_H *=/s/@[^@\n]*@/execinfo.h/
170 /^GETOPT_H *=/s/@[^@\n]*@/getopt.h/
172 # Gnulib stuff
173 /^BITSIZEOF_PTRDIFF_T *=/s/@BITSIZEOF_PTRDIFF_T@/32/
174 /^BITSIZEOF_SIG_ATOMIC_T *=/s/@BITSIZEOF_SIG_ATOMIC_T@/32/
175 /^BITSIZEOF_SIZE_T *=/s/@BITSIZEOF_SIZE_T@/32/
176 /^BITSIZEOF_WCHAR_T *=/s/@BITSIZEOF_WCHAR_T@/16/
177 /^BITSIZEOF_WINT_T *=/s/@BITSIZEOF_WINT_T@/32/
178 /^APPLE_UNIVERSAL_BUILD *=/s/@APPLE_UNIVERSAL_BUILD@/0/
180 # Most GNULIB_* are replaced with zero even though DJGPP does not have
181 # these features.  That's because the gnulib replacements cannot
182 # possibly work for DJGPP, so we prefer to fail the link than have a
183 # subtly botched executable.  Those replacements that _are_ needed
184 # should be before the last catch-all rule.
185 /^GNULIB_ATOLL *=/s/@GNULIB_ATOLL@/1/
186 /^GNULIB_DUP3 *=/s/@GNULIB_DUP3@/1/
187 /^GNULIB_ENVIRON *=/s/@GNULIB_ENVIRON@/1/
188 /^GNULIB_FDATASYNC *=/s/@GNULIB_FDATASYNC@/1/
189 /^GNULIB_GETLOADAVG *=/s/@GNULIB_GETLOADAVG@/1/
190 /^GNULIB_GL_UNISTD_H_GETOPT *=/s/@GNULIB_GL_UNISTD_H_GETOPT@/1/
191 /^GNULIB_MEMRCHR *=/s/@GNULIB_MEMRCHR@/1/
192 /^GNULIB_MKOSTEMP *=/s/@GNULIB_MKOSTEMP@/1/
193 /^GNULIB_TIME_R *=/s/@GNULIB_TIME_R@/1/
194 /^GNULIB_UNSETENV *=/s/@GNULIB_UNSETENV@/1/
195 /^GNULIB_[^ =]* *= *@/s/@[^@\n]*@/0/
196 /^GSETTINGS_CFLAGS *=/s/@[^@\n]*@//
197 /^GSETTINGS_LIBS *=/s/@[^@\n]*@//
199 # Edit the HAVE_foo variables
200 /^HAVE_ATOLL *=/s/@HAVE_ATOLL@/0/
201 /^HAVE_CHOWN *=/s/@HAVE_CHOWN@/1/
202 /^HAVE_CLOSEDIR *=/s/@HAVE_CLOSEDIR@/1/
203 /^HAVE_DECL_GETPAGESIZE *=/s/@HAVE_DECL_GETPAGESIZE@/1/
204 /^HAVE_DECL_SETENV *=/s/@HAVE_DECL_SETENV@/1/
205 /^HAVE_DECL_STRDUP *=/s/@HAVE_DECL_STRDUP@/1/
206 # The following two rely on msdos/inttypes.h redirections
207 /^HAVE_DECL_STRTOIMAX *=/s/@HAVE_DECL_STRTOIMAX@/1/
208 /^HAVE_DECL_STRTOUMAX *=/s/@HAVE_DECL_STRTOUMAX@/1/
209 /^HAVE_DIRENT_H *=/s/@HAVE_DIRENT_H@/1/
210 /^HAVE_DUP2 *=/s/@HAVE_DUP2@/1/
211 /^HAVE_FSYNC *=/s/@HAVE_FSYNC@/1/
212 /^HAVE_FTRUNCATE *=/s/@HAVE_FTRUNCATE@/1/
213 /^HAVE_GETHOSTNAME *=/s/@HAVE_GETHOSTNAME@/1/
214 /^HAVE_GETLOGIN *=/s/@HAVE_GETLOGIN@/1/
215 /^HAVE_GETPAGESIZE *=/s/@HAVE_GETPAGESIZE@/1/
216 /^HAVE_INTTYPES_H *=/s/@HAVE_INTTYPES_H@/HAVE_INTTYPES_H/
217 /^HAVE_LINK *=/s/@HAVE_LINK@/1/
218 /^HAVE_LONG_LONG_INT *=/s/@HAVE_LONG_LONG_INT@/1/
219 /^HAVE_LSTAT *=/s/@HAVE_LSTAT@/HAVE_LSTAT/
220 /^HAVE_MAKEINFO *=/s/@HAVE_MAKEINFO@/yes/
221 /^HAVE_MEMCHR *=/s/@HAVE_MEMCHR@/1/
222 /^HAVE_MKFIFO *=/s/@HAVE_MKFIFO@/1/
223 /^HAVE_MKNOD *=/s/@HAVE_MKNOD@/1/
224 /^HAVE_MKSTEMP *=/s/@HAVE_MKSTEMP@/1/
225 /^HAVE_OPENDIR *=/s/@HAVE_OPENDIR@/1/
226 /^HAVE_PCLOSE *=/s/@HAVE_PCLOSE@/1/
227 /^HAVE_POPEN *=/s/@HAVE_POPEN@/1/
228 /^HAVE_POSIX_SIGNALBLOCKING *=/s/@HAVE_POSIX_SIGNALBLOCKING@/1/
229 /^HAVE_RANDOM_H *=/s/@HAVE_RANDOM_H@/1/
230 /^HAVE_RAISE *=/s/@HAVE_RAISE@/1/
231 /^HAVE_RANDOM *=/s/@HAVE_RANDOM@/1/
232 /^HAVE_READDIR *=/s/@HAVE_READDIR@/1/
233 /^HAVE_REWINDDIR *=/s/@HAVE_REWINDDIR@/1/
234 /^HAVE_SETENV *=/s/@HAVE_SETENV@/1/
235 /^HAVE_SIGACTION *=/s/@HAVE_SIGACTION@/1/
236 /^HAVE_SIGNED_SIG_ATOMIC_T *=/s/@HAVE_SIGNED_SIG_ATOMIC_T@/1/
237 /^HAVE_SIGNED_WINT_T *=/s/@HAVE_SIGNED_WINT_T@/1/
238 /^HAVE_SIGSET_T *=/s/@HAVE_SIGSET_T@/1/
239 /^HAVE_SLEEP *=/s/@HAVE_SLEEP@/1/
240 /^HAVE_STDINT_H *=/s/@HAVE_STDINT_H@/HAVE_STDINT_H/
241 /^HAVE_STRPBRK *=/s/@HAVE_STRPBRK@/1/
242 /^HAVE_STRSEP *=/s/@HAVE_STRSEP@/1/
243 /^HAVE_STRTOD *=/s/@HAVE_STRTOD@/1/
244 /^HAVE_STRTOLL *=/s/@HAVE_STRTOLL@/1/
245 /^HAVE_STRTOULL *=/s/@HAVE_STRTOULL@/1/
246 /^HAVE_STRUCT_TIMEVAL *=/s/@HAVE_STRUCT_TIMEVAL@/1/
247 /^HAVE_SYMLINK *=/s/@HAVE_SYMLINK@/1/
248 /^HAVE_SYS_PARAM_H *=/s/@HAVE_SYS_PARAM_H@/1/
249 /^HAVE_SYS_TIME_H *=/s/@HAVE_SYS_TIME_H@/1/
250 /^HAVE_SYS_TYPES_H *=/s/@HAVE_SYS_TYPES_H@/1/
251 /^HAVE_TYPE_VOLATILE_SIG_ATOMIC_T *=/s/@HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@/1/
252 /^HAVE_UNISTD_H *=/s/@HAVE_UNISTD_H@/1/
253 /^HAVE_UNSIGNED_LONG_LONG_INT *=/s/@HAVE_UNSIGNED_LONG_LONG_INT@/1/
254 /^HAVE_USLEEP *=/s/@HAVE_USLEEP@/1/
255 /^HAVE_WCHAR_H *=/s/@HAVE_WCHAR_H@/1/
256 /^HAVE_WCHAR_T *=/s/@HAVE_WCHAR_T@/1/
257 /^HAVE__BOOL *=/s/@HAVE__BOOL@/1/
258 /^HAVE__EXIT *=/s/@HAVE__EXIT@/1/
259 /^HAVE_[^ =]* *= *@/s/@[^@\n]*@/0/
260 /^INCLUDE_NEXT *=/s/@INCLUDE_NEXT@/include_next/
261 /^INCLUDE_NEXT_AS_FIRST_DIRECTIVE *=/s/@[^@\n]*@/include_next/
262 /^LDFLAGS *=/s/@[^@\n]*@//
263 /^LD_FIRSTFLAG *=/s/@[^@\n]*@//
264 /^LIB_PTHREAD *=/s/@[^@\n]*@//
265 /^LIB_PTHREAD_SIGMASK *=/s/@[^@\n]*@//
266 /^LIBS *=/s/@[^@\n]*@//
267 /^MAKEINFO *=/s/@MAKEINFO@/makeinfo/
268 # MKDIR_P lines are edited further below
269 /^MKDIR_P *=/s/@MKDIR_P@//
270 /^NEXT_AS_FIRST_DIRECTIVE_DIRENT_H *=/s/@[^@\n]*@/<dirent.h>/
271 /^NEXT_AS_FIRST_DIRECTIVE_ERRNO_H *=/s/@[^@\n]*@//
272 /^NEXT_AS_FIRST_DIRECTIVE_FCNTL_H *=/s/@[^@\n]*@/<fcntl.h>/
273 /^NEXT_AS_FIRST_DIRECTIVE_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
274 /^NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H *=/s/@[^@\n]*@/<signal.h>/
275 /^NEXT_AS_FIRST_DIRECTIVE_STDARG_H *=/s/@[^@\n]*@//
276 /^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H *=/s/@[^@\n]*@//
277 /^NEXT_AS_FIRST_DIRECTIVE_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
278 /^NEXT_AS_FIRST_DIRECTIVE_STDIO_H *=/s/@[^@\n]*@/<stdio.h>/
279 /^NEXT_AS_FIRST_DIRECTIVE_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/
280 /^NEXT_AS_FIRST_DIRECTIVE_STRING_H *=/s/@[^@\n]*@/<string.h>/
281 /^NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H *=/s/@[^@\n]*@//
282 /^NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>!
283 /^NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H *=/s/@[^@\n]*@//
284 /^NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H *=/s!@[^@\n]*@!<sys/types.h>!
285 /^NEXT_AS_FIRST_DIRECTIVE_TIME_H *=/s/@[^@\n]*@/<time.h>/
286 /^NEXT_AS_FIRST_DIRECTIVE_UNISTD_H *=/s/@[^@\n]*@/<unistd.h>/
287 /^NEXT_DIRENT_H *=/s/@[^@\n]*@/<dirent.h>/
288 /^NEXT_ERRNO_H *=/s/@[^@\n]*@//
289 /^NEXT_FCNTL_H *=/s/@[^@\n]*@/<fcntl.h>/
290 /^NEXT_GETOPT_H *=/s/@[^@\n]*@/<getopt.h>/
291 /^NEXT_STDARG_H *=/s/@[^@\n]*@//
292 /^NEXT_SIGNAL_H *=/s/@[^@\n]*@/<signal.h>/
293 /^NEXT_STDDEF_H *=/s/@[^@\n]*@//
294 /^NEXT_STDIO_H *=/s/@[^@\n]*@/<stdio.h>/
295 /^NEXT_STDINT_H *=/s/@[^@\n]*@/<stdint.h>/
296 /^NEXT_STDLIB_H *=/s/@[^@\n]*@/<stdlib.h>/
297 /^NEXT_STRING_H *=/s/@[^@\n]*@/<string.h>/
298 /^NEXT_SYS_SELECT_H *=/s/@[^@\n]*@//
299 /^NEXT_SYS_STAT_H *=/s!@[^@\n]*@!<sys/stat.h>!
300 /^NEXT_SYS_TIME_H *=/s/@[^@\n]*@//
301 /^NEXT_SYS_TYPES_H *=/s!@[^@\n]*@!<sys/types.h>!
302 /^NEXT_TIME_H *=/s/@[^@\n]*@/<time.h>/
303 /^NEXT_UNISTD_H *=/s/@[^@\n]*@/<unistd.h>/
304 /^OBJEXT *=/s/@[^@\n]*@/o/
305 /^PRAGMA_COLUMNS *=/s/@[^@\n]*@//
306 /^PRAGMA_SYSTEM_HEADER *=/s/@[^@\n]*@/\\\#pragma GCC system_header/
307 /^PTHREAD_H_DEFINES_STRUCT_TIMESPEC *=/s/@[^@\n]*@/0/
308 /^PTRDIFF_T_SUFFIX *=/s/@[^@\n]*@//
309 /^RANLIB *=/s/@[^@\n]*@/ranlib/
310 # We never want any gnulib replacement functions
311 /^REPLACE_[^ =]* *= *@/s/@[^@\n]*@/0/
312 /^SIG_ATOMIC_T_SUFFIX *=/s/@SIG_ATOMIC_T_SUFFIX@//
313 /^SIZE_T_SUFFIX *=/s/@SIZE_T_SUFFIX@/u/
314 /^ALLOCA_H *=/s/@[^@\n]*@/alloca.h/
315 /^BYTESWAP_H *=/s/@[^@\n]*@/byteswap.h/
316 /^DIRENT_H *=/s/@[^@\n]*@//
317 /^ERRNO_H *=/s/@[^@\n]*@//
318 /^EXECINFO_H *=/s/@[^@\n]*@/execinfo.h/
319 /^STDBOOL_H *=/s/@[^@\n]*@//
320 /^STDALIGN_H *=/s/@[^@\n]*@/stdalign.h/
321 /^STDARG_H *=/s/@[^@\n]*@//
322 /^STDDEF_H *=/s/@[^@\n]*@//
323 /^STDINT_H *=/s/@[^@\n]*@/stdint.h/
324 /^SYS_TIME_H_DEFINES_STRUCT_TIMESPEC *=/s/@[^@\n]*@/0/
325 /^TIME_H_DEFINES_STRUCT_TIMESPEC *=/s/@[^@\n]*@/0/
326 /^UNISTD_H_HAVE_WINSOCK2_H *=/s/@[^@\n]*@/0/
327 /^UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS *=/s/@[^@\n]*@/0/
328 /^UNDEFINE_STRTOK_R *=/s/@UNDEFINE_STRTOK_R@/0/
329 /^WCHAR_T_SUFFIX *=/s/@WCHAR_T_SUFFIX@/h/
330 /^WINT_T_SUFFIX *=/s/@WINT_T_SUFFIX@//
331 /^WINDOWS_64_BIT_OFF_T *=/s/@WINDOWS_64_BIT_OFF_T@/0/
332 /^WINDOWS_64_BIT_ST_SIZE *=/s/@WINDOWS_64_BIT_ST_SIZE@/0/
333 # Tailor lists of files to what we need
334 /am__append_[1-9][0-9]* *=.*gettext\.h/s/@[^@\n]*@/\#/
335 /am__append_2 *=.*verify\.h/s/@[^@\n]*@//
336 /^@gl_GNULIB_ENABLED_tempname_TRUE@/s/@[^@\n]*@//
337 /^gl_LIBOBJS *=/s/@[^@\n]*@/getopt.o getopt1.o memrchr.o sig2str.o time_r.o getloadavg.o pthread_sigmask.o mkostemp.o fpending.o fdatasync.o execinfo.o/
338 /^am__append_[1-9][0-9]* *=/,/^[^       ]/{
339   s/ *inttypes\.h//
340   s| *sys/select\.h||
341   s| *sys/time\.h||
343 /^am_libgnu_a_OBJECTS *=/,/^[^  ]/{
344   s/allocator\.\$(OBJEXT) //
345   s/binary-io\.\$(OBJEXT) //
346   s/careadlinkat\.\$(OBJEXT) //
347   s/pipe2\.\$(OBJEXT) //
348   s/acl-errno-valid\.\$(OBJEXT) //
349   s/file-has-acl\.\$(OBJEXT) //
350   s/qcopy-acl\.\$(OBJEXT) //
351   s/qset-acl\.\$(OBJEXT) //
352   s/openat-die\.\$(OBJEXT) //
353   s/save-cwd\.\$(OBJEXT) //
355 /^srcdir *=/s/@[^@\n]*@/./
356 /^top_srcdir *=/s/@[^@\n]*@/../
357 /^top_builddir *=/s/@[^@\n]*@/../
358 s/@PRAGMA_SYSTEM_HEADER@/\#pragma GCC system_header/
359 s/@PRAGMA_COLUMNS@//
361 # Delete the recipes we don't want to get in our way.
362 /^\$(srcdir)\/Makefile\.in:/,/^[        ][      ]*\$(AUTOMAKE)/d
363 /^Makefile:/,/^[        ][      ]*esac/d
364 /^\$(top_srcdir)\/configure:/,/^\$(am__aclocal_m4_deps):/d
365 /^\$(top_builddir)\/config.status:/,/^$/d
367 # Remove the dependencies on $(top_builddir)/config.status
368 s/ $(top_builddir)\/config.status//
370 # Fix the include-dependency lines
371 s/^@AMDEP_TRUE@//
372 s/^@AMDEP_FALSE@/\#/
373 s/@am__include@/include/
374 s/@am__quote@//g
375 s/^@am__fastdepCC_TRUE@//
376 s/^@am__fastdepCC_FALSE@/\#/
378 # Fix the *-clean rules, to not use a Unixy `test' command.  Empty
379 # lists are replaced with a dummy file, to avoid an error message from
380 # "rm -f" with no arguments.
381 /^CLEANFILES *= *$/c\
382 CLEANFILES = xyzzy
383 /^CONFIG_CLEAN_FILES *= *$/c\
384 CONFIG_CLEAN_FILES = xyzzy
385 /^CONFIG_CLEAN_VPATH_FILES *= *$/c\
386 CONFIG_CLEAN_VPATH_FILES = xyzzy
387 s/^     -*test -z.*|| rm/        -rm/
388 s/@echo /@djecho /
390 # Fix the recipes for header files
391 s/^@GL_GENERATE_ALLOCA_H_TRUE@//
392 s/^@GL_GENERATE_ALLOCA_H_FALSE@/\#/
393 s/^@GL_GENERATE_BYTESWAP_H_TRUE@//
394 s/^@GL_GENERATE_BYTESWAP_H_FALSE@/\#/
395 s/^@GL_GENERATE_ERRNO_H_TRUE@/\#/
396 s/^@GL_GENERATE_ERRNO_H_FALSE@//
397 s/^@GL_GENERATE_EXECINFO_H_TRUE@//
398 s/^@GL_GENERATE_EXECINFO_H_FALSE@/\#/
399 s/^@GL_GENERATE_STDBOOL_H_TRUE@/\#/
400 s/^@GL_GENERATE_STDBOOL_H_FALSE@//
401 s/^@GL_GENERATE_STDALIGN_H_TRUE@//
402 s/^@GL_GENERATE_STDALIGN_H_FALSE@/\#/
403 s/^@GL_GENERATE_STDARG_H_TRUE@/\#/
404 s/^@GL_GENERATE_STDARG_H_FALSE@/\#/
405 s/^@GL_GENERATE_STDDEF_H_TRUE@/\#/
406 s/^@GL_GENERATE_STDDEF_H_FALSE@/\#/
407 s/^@GL_GENERATE_STDINT_H_TRUE@//
408 s/^@GL_GENERATE_STDINT_H_FALSE@/\#/
409 s/^@GL_GENERATE_STDALIGN_H_TRUE@//
410 s/^@GL_GENERATE_STDALIGN_H_FALSE@/\#/
411 /^arg-nonnull\.h:/,/^[  ][      ]*mv /c\
412 arg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h\
413         sed -n -e '/GL_ARG_NONNULL/,$$p' < $(top_srcdir)/build-aux/snippet/arg-nonnull.h > $@
414 /^cxxdefs\.h:/,/^[      ][      ]*mv /c\
415 cxxdefs.h: $(top_srcdir)/build-aux/snippet/cxxdefs.h\
416         sed -n -e '/_GL_CXXDEFS/,$$p' < $(top_srcdir)/build-aux/snippet/cxxdefs.h > $@
417 /^warn-on-use\.h:/,/^[  ][      ]*mv /c\
418 warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h\
419         sed -n -e '/^.ifndef/,$$p' < $(top_srcdir)/build-aux/snippet/warn-on-use.h > $@
420 s/^     [       ]*{ echo \(.*\); \\/     djecho \1 > $@-t/
421 s/^     [       ]*{ echo \(.*\) && \\/   djecho \1 > $@-t/
422 s/^     [       ]*cat \(.*\); \\/        sed -e '' \1 >> $@-t/
423 s/ \&\& \\ *$//
424 s/\.in-h\;  *\\$/.in-h >> $@-t/
425 /^      [       ]*} /d
426 /^stdio\.h:/,/^ [       ]*mv /{
427   s/'\; \\ *$/' >> $@-t/
429 /^stdlib\.h:/,/^        [       ]*mv /{
430   s/'\; \\ *$/' >> $@-t/
432 /^unistd\.h:/,/^        [       ]*mv /{
433   s/'\; \\ *$/' >> $@-t/
435 /^string\.h:/,/^        [       ]*mv /{
436   s/'\; \\ *$/' >> $@-t/
437   /< \$(srcdir)\/string\.in-h >>/d
439 s!\$(MKDIR_P)[  ][      ]*sys!command.com /c "if not exist sys\\stat.h md sys"!
440 /^      @for dir in/,/^[^        ]/c\
441         -rm -rf $(MOSTLYCLEANDIRS)
442 /^       *-test . /d
444 # Fix the Automake verbosity stuff
445 /^       *\$(AM_V_at)/s/\$(AM_V_at)//
446 /^       *\$(AM_V_AR)/s/\$(AM_V_AR)//
447 /^       *\$(AM_V_CC)/s/\$(AM_V_CC)//