Rename sys_stat_.h to sys_stat.in.h.
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002-2007 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software Foundation,
17 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #
19
20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages.
22
23 progname=$0
24 package=gnulib
25 cvsdatestamp='$Date: 2007-09-17 10:26:33 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 # Sometimes last_checkin_date is "YYYY/MM/DD ...", sometimes "YYYY-MM-DD ...".
28 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
29 # version is in YYYY-MM-DD format.
30 nl='
31 '
32 IFS=" ""        $nl"
33
34 # You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
35 AUTOCONFPATH=
36 #case $USER in
37 #  bruno )
38 #    AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
39 #    AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
40 #    ;;
41 #esac
42
43 # You can set AUTOMAKEPATH to empty if automake 1.9.x is already in your PATH.
44 AUTOMAKEPATH=
45
46 # You can set GETTEXTPATH to empty if autopoint 0.15 is already in your PATH.
47 GETTEXTPATH=
48
49 # If you didn't set AUTOCONFPATH and AUTOMAKEPATH, you can also set the
50 # variables AUTOCONF, AUTOHEADER, ACLOCAL, AUTOMAKE, AUTORECONF individually.
51 if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then
52   AUTOCONF="${AUTOCONFPATH}autoconf"
53 fi
54 if test -z "${AUTOHEADER}" || test -n "${AUTOCONFPATH}"; then
55   AUTOHEADER="${AUTOCONFPATH}autoheader"
56 fi
57 if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then
58   ACLOCAL="${AUTOMAKEPATH}aclocal"
59 fi
60 if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then
61   AUTOMAKE="${AUTOMAKEPATH}automake"
62 fi
63 if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then
64   AUTORECONF="${AUTOCONFPATH}autoreconf"
65 fi
66
67 # If you didn't set GETTEXTPATH, you can also set the variable AUTOPOINT.
68 if test -z "${AUTOPOINT}" || test -n "${GETTEXTPATH}"; then
69   AUTOPOINT="${GETTEXTPATH}autopoint"
70 fi
71
72 # When using GNU sed, turn off as many GNU extensions as possible,
73 # to minimize the risk of accidentally using non-portable features.
74 # However, do this only for gnulib-tool itself, not for the code that
75 # gnulib-tool generates, since we don't want "sed --posix" to leak
76 # into makefiles.
77 if (alias) > /dev/null 2>&1 && echo | sed --posix -e d >/dev/null 2>&1; then
78   # Define sed as an alias.
79   # It is not always possible to use aliases. Aliases are guaranteed to work
80   # if the executing shell is bash and either it is invoked as /bin/sh or
81   # is a version >= 2.0, supporting shopt. This is the common case.
82   # Two other approaches (use of a variable $sed or of a function func_sed
83   # instead of an alias) require massive, fragile code changes.
84   # An other approach (use of function sed) requires `which sed` - but 'which'
85   # is hard to emulate, due to missing "test -x" on some platforms.
86   if test -n "$BASH_VERSION"; then
87     shopt -s expand_aliases >/dev/null 2>&1
88   fi
89   alias sed='sed --posix'
90 fi
91
92 # func_usage
93 # outputs to stdout the --help usage message.
94 func_usage ()
95 {
96   echo "\
97 Usage: gnulib-tool --list
98        gnulib-tool --import [module1 ... moduleN]
99        gnulib-tool --update
100        gnulib-tool --create-testdir --dir=directory [module1 ... moduleN]
101        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
102        gnulib-tool --test --dir=directory module1 ... moduleN
103        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
104        gnulib-tool --extract-description module
105        gnulib-tool --extract-notice module
106        gnulib-tool --extract-filelist module
107        gnulib-tool --extract-dependencies module
108        gnulib-tool --extract-autoconf-snippet module
109        gnulib-tool --extract-automake-snippet module
110        gnulib-tool --extract-include-directive module
111        gnulib-tool --extract-link-directive module
112        gnulib-tool --extract-license module
113        gnulib-tool --extract-maintainer module
114        gnulib-tool --extract-tests-module module
115
116 Operation modes:
117       --list                print the available module names
118       --import              import the given modules into the current package;
119                             if no modules are specified, update the current
120                             package from the current gnulib
121       --update              update the current package, restore files omitted
122                             from CVS
123       --create-testdir      create a scratch package with the given modules
124       --create-megatestdir  create a mega scratch package with the given modules
125                             one by one and all together
126       --test                test the combination of the given modules
127                             (recommended to use CC=\"gcc -Wall\" here)
128       --megatest            test the given modules one by one and all together
129                             (recommended to use CC=\"gcc -Wall\" here)
130       --extract-description        extract the description
131       --extract-notice             extract the notice or banner
132       --extract-filelist           extract the list of files
133       --extract-dependencies       extract the dependencies
134       --extract-autoconf-snippet   extract the snippet for configure.ac
135       --extract-automake-snippet   extract the snippet for library makefile
136       --extract-include-directive  extract the #include directive
137       --extract-link-directive     extract the linker directive
138       --extract-license            report the license terms of the source files
139                                    under lib/
140       --extract-maintainer         report the maintainer(s) inside gnulib
141       --extract-tests-module       report the unit test module, if it exists
142
143 General options:
144       --dir=DIRECTORY       Specify the target directory.
145                             For --import, this specifies where your
146                             configure.ac can be found.  Defaults to current
147                             directory.
148       --local-dir=DIRECTORY  Specify a local override directory where to look
149                             up files before looking in gnulib's directory.
150       --verbose             Increase verbosity. May be repeated.
151       --quiet               Decrease verbosity. May be repeated.
152
153 Options for --import:
154       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
155       --source-base=DIRECTORY
156                             Directory relative to --dir where source code is
157                             placed (default \"lib\").
158       --m4-base=DIRECTORY   Directory relative to --dir where *.m4 macros are
159                             placed (default \"m4\").
160       --po-base=DIRECTORY   Directory relative to --dir where *.po files are
161                             placed (default \"po\").
162       --doc-base=DIRECTORY  Directory relative to --dir where doc files are
163                             placed (default \"doc\").
164       --tests-base=DIRECTORY
165                             Directory relative to --dir where unit tests are
166                             placed (default \"tests\").
167       --aux-dir=DIRECTORY   Directory relative to --dir where auxiliary build
168                             tools are placed (default \"build-aux\").
169       --with-tests          Include unit tests for the included modules.
170       --avoid=MODULE        Avoid including the given MODULE. Useful if you
171                             have code that provides equivalent functionality.
172                             This option can be repeated.
173       --lgpl                Abort if modules aren't available under the LGPL.
174                             Also modify license template from GPL to LGPL.
175       --makefile-name=NAME  Name of makefile in automake syntax in the
176                             source-base and tests-base directories
177                             (default \"Makefile.am\").
178       --libtool             Use libtool rules.
179       --no-libtool          Don't use libtool rules.
180       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
181                             'gl_INIT'. Default is 'gl'.
182       --po-domain=NAME      Specify the prefix of the i18n domain. Usually use
183                             the package name. A suffix '-gnulib' is appended.
184       --no-changelog        don't update or create ChangeLog files
185
186 Options for --import and --update:
187       --dry-run             For --import, only print what would have been done.
188   -s, --symbolic, --symlink Make symbolic links instead of copying files.
189       --local-symlink       Make symbolic links instead of copying files, only
190                             for files from the local override directory.
191   -S, --more-symlinks       Make symbolic links instead of copying files, and
192                             don't replace copyright notices.
193
194 Report bugs to <bug-gnulib@gnu.org>."
195 }
196
197 # func_version
198 # outputs to stdout the --version message.
199 func_version ()
200 {
201   year=`echo "$version" | sed -e 's,-.*$,,'`
202   echo "\
203 $progname (GNU $package) $version
204 Copyright (C) $year Free Software Foundation, Inc.
205 This is free software; see the source for copying conditions.  There is NO
206 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
207 Written by" "Bruno Haible" "and" "Simon Josefsson"
208 }
209
210 # func_emit_copyright_notice
211 # outputs to stdout a header for a generated file.
212 func_emit_copyright_notice ()
213 {
214   echo "# Copyright (C) 2004-2007 Free Software Foundation, Inc."
215   echo "#"
216   echo "# This file is free software, distributed under the terms of the GNU"
217   echo "# General Public License.  As a special exception to the GNU General"
218   echo "# Public License, this file may be distributed as part of a program"
219   echo "# that contains a configuration script generated by Autoconf, under"
220   echo "# the same distribution terms as the rest of that program."
221   echo "#"
222   echo "# Generated by gnulib-tool."
223 }
224
225 # func_exit STATUS
226 # exit with status
227 func_exit ()
228 {
229   (exit $1); exit $1
230 }
231
232 # func_tmpdir
233 # creates a temporary directory.
234 # Sets variable
235 # - tmp             pathname of freshly created temporary directory
236 func_tmpdir ()
237 {
238   # Use the environment variable TMPDIR, falling back to /tmp. This allows
239   # users to specify a different temporary directory, for example, if their
240   # /tmp is filled up or too small.
241   : ${TMPDIR=/tmp}
242   {
243     # Use the mktemp program if available. If not available, hide the error
244     # message.
245     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
246     test -n "$tmp" && test -d "$tmp"
247   } ||
248   {
249     # Use a simple mkdir command. It is guaranteed to fail if the directory
250     # already exists.  $RANDOM is bash specific and expands to empty in shells
251     # other than bash, ksh and zsh.  Its use does not increase security;
252     # rather, it minimizes the probability of failure in a very cluttered /tmp
253     # directory.
254     tmp=$TMPDIR/gl$$-$RANDOM
255     (umask 077 && mkdir "$tmp")
256   } ||
257   {
258     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
259     func_exit 1
260   }
261 }
262
263 # func_append var value
264 # appends the given value to the shell variable var.
265 if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then
266   # Use bash's += operator. It reduces complexity of appending repeatedly to
267   # a single variable from O(n^2) to O(n).
268   func_append ()
269   {
270     eval "$1+=\"\$2\""
271   }
272 else
273   func_append ()
274   {
275     eval "$1=\"\$$1\$2\""
276   }
277 fi
278
279 # func_fatal_error message
280 # outputs to stderr a fatal error message, and terminates the program.
281 func_fatal_error ()
282 {
283   echo "gnulib-tool: *** $1" 1>&2
284   echo "gnulib-tool: *** Stop." 1>&2
285   func_exit 1
286 }
287
288 # func_readlink SYMLINK
289 # outputs the target of the given symlink.
290 if (type -p readlink) > /dev/null 2>&1; then
291   func_readlink ()
292   {
293     # Use the readlink program from GNU coreutils.
294     readlink "$1"
295   }
296 else
297   func_readlink ()
298   {
299     # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
300     # would do the wrong thing if the link target contains " -> ".
301     LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
302   }
303 fi
304
305 # func_relativize DIR1 DIR2
306 # computes a relative pathname RELDIR such that DIR1/RELDIR = DIR2.
307 # Input:
308 # - DIR1            relative pathname, relative to the current directory
309 # - DIR2            relative pathname, relative to the current directory
310 # Output:
311 # - reldir          relative pathname of DIR2, relative to DIR1
312 func_relativize ()
313 {
314   dir0=`pwd`
315   dir1="$1"
316   dir2="$2"
317   sed_first='s,^\([^/]*\)/.*$,\1,'
318   sed_rest='s,^[^/]*/*,,'
319   sed_last='s,^.*/\([^/]*\)$,\1,'
320   sed_butlast='s,/*[^/]*$,,'
321   while test -n "$dir1"; do
322     first=`echo "$dir1" | sed -e "$sed_first"`
323     if test "$first" != "."; then
324       if test "$first" = ".."; then
325         dir2=`echo "$dir0" | sed -e "$sed_last"`/"$dir2"
326         dir0=`echo "$dir0" | sed -e "$sed_butlast"`
327       else
328         first2=`echo "$dir2" | sed -e "$sed_first"`
329         if test "$first2" = "$first"; then
330           dir2=`echo "$dir2" | sed -e "$sed_rest"`
331         else
332           dir2="../$dir2"
333         fi
334         dir0="$dir0"/"$first"
335       fi
336     fi
337     dir1=`echo "$dir1" | sed -e "$sed_rest"`
338   done
339   reldir="$dir2"
340 }
341
342 # func_relconcat DIR1 DIR2
343 # computes a relative pathname DIR1/DIR2, with obvious simplifications.
344 # Input:
345 # - DIR1            relative pathname, relative to the current directory
346 # - DIR2            relative pathname, relative to DIR1
347 # Output:
348 # - relconcat       DIR1/DIR2, relative to the current directory
349 func_relconcat ()
350 {
351   dir1="$1"
352   dir2="$2"
353   sed_first='s,^\([^/]*\)/.*$,\1,'
354   sed_rest='s,^[^/]*/*,,'
355   sed_last='s,^.*/\([^/]*\)$,\1,'
356   sed_butlast='s,/*[^/]*$,,'
357   while true; do
358     first=`echo "$dir2" | sed -e "$sed_first"`
359     if test "$first" = "."; then
360       dir2=`echo "$dir2" | sed -e "$sed_rest"`
361       if test -z "$dir2"; then
362         relconcat="$dir1"
363         break
364       fi
365     else
366       last=`echo "$dir1" | sed -e "$sed_last"`
367       while test "$last" = "."; do
368         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
369         last=`echo "$dir1" | sed -e "$sed_last"`
370       done
371       if test -z "$dir1"; then
372         relconcat="$dir2"
373         break
374       fi
375       if test "$first" = ".."; then
376         if test "$last" = ".."; then
377           relconcat="$dir1/$dir2"
378           break
379         fi
380         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
381         dir2=`echo "$dir2" | sed -e "$sed_rest"`
382         if test -z "$dir1"; then
383           relconcat="$dir2"
384           break
385         fi
386         if test -z "$dir2"; then
387           relconcat="$dir1"
388           break
389         fi
390       else
391         relconcat="$dir1/$dir2"
392         break
393       fi
394     fi
395   done
396 }
397
398 # func_ln SRC DEST
399 # Like ln -s, except that SRC is given relative to the current directory (or
400 # absolute), not given relative to the directory of DEST.
401 func_ln ()
402 {
403   case "$1" in
404     /*)
405       ln -s "$1" "$2" ;;
406     *) # SRC is relative.
407       case "$2" in
408         /*)
409           ln -s "`pwd`/$1" "$2" ;;
410         *) # DEST is relative too.
411           ln_destdir=`echo "$2" | sed -e 's,[^/]*$,,'`
412           test -n "$ln_destdir" || ln_destdir="."
413           func_relativize "$ln_destdir" "$1"
414           ln -s "$reldir" "$2"
415           ;;
416       esac
417       ;;
418   esac
419 }
420
421 # func_ln_if_changed SRC DEST
422 # Like func_ln, but avoids munging timestamps if the link is correct.
423 func_ln_if_changed ()
424 {
425   if test $# -ne 2; then
426     echo "usage: func_ln_if_changed SRC DEST" >&2
427   fi
428   ln_target=`func_readlink "$2"`
429   if test -h "$2" && test "$1" = "$ln_target"; then
430     :
431   else
432     rm -f "$2"
433     func_ln "$1" "$2"
434   fi
435 }
436
437 # Ensure an 'echo' command that does not interpret backslashes.
438 # Test cases:
439 #   echo '\n' | wc -l                 prints 1 when OK, 2 when KO
440 #   echo '\t' | grep t > /dev/null    has return code 0 when OK, 1 when KO
441 # This problem is a weird heritage from SVR4. BSD got it right (except that
442 # BSD echo interprets '-n' as an option, which is also not desirable).
443 # Nowadays the problem occurs in 4 situations:
444 # - in bash, when the shell option xpg_echo is set (bash >= 2.04)
445 #            or when it was built with --enable-usg-echo-default (bash >= 2.0)
446 #            or when it was built with DEFAULT_ECHO_TO_USG (bash < 2.0),
447 # - in zsh, when sh-emulation is not set,
448 # - in ksh (e.g. AIX /bin/sh and Solaris /usr/xpg4/bin/sh are ksh instances,
449 #           and HP-UX /bin/sh and IRIX /bin/sh behave similarly),
450 # - in Solaris /bin/sh and OSF/1 /bin/sh.
451 # We try the following workarounds:
452 # - for all: respawn using $CONFIG_SHELL if that is set and works.
453 # - for bash >= 2.04: unset the shell option xpg_echo.
454 # - for bash >= 2.0: define echo to a function that uses the printf built-in.
455 # - for bash < 2.0: define echo to a function that uses cat of a here document.
456 # - for zsh: turn sh-emulation on.
457 # - for ksh: alias echo to 'print -r'.
458 # - for ksh: alias echo to a function that uses cat of a here document.
459 # - for Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh and rely on
460 #   the ksh workaround.
461 # - otherwise: respawn using /bin/sh and rely on the workarounds.
462 # When respawning, we pass --no-reexec as first argument, so as to avoid
463 # turning this script into a fork bomb in unlucky situations.
464 have_echo=
465 if echo '\t' | grep t > /dev/null; then
466   have_echo=yes # Lucky!
467 fi
468 # Try the workarounds.
469 # Respawn using $CONFIG_SHELL if that is set and works.
470 if test -z "$have_echo" \
471    && test "X$1" != "X--no-reexec" \
472    && test -n "$CONFIG_SHELL" \
473    && test -f "$CONFIG_SHELL" \
474    && $CONFIG_SHELL -c 'echo '\t' | grep t > /dev/null'; then
475   exec $CONFIG_SHELL "$0" --no-reexec "$@"
476   exit 127
477 fi
478 # For bash >= 2.04: unset the shell option xpg_echo.
479 if test -z "$have_echo" \
480    && test -n "$BASH_VERSION" \
481    && (shopt -o xpg_echo; echo '\t' | grep t > /dev/null) 2>/dev/null; then
482   shopt -o xpg_echo
483   have_echo=yes
484 fi
485 # For bash >= 2.0: define echo to a function that uses the printf built-in.
486 # For bash < 2.0: define echo to a function that uses cat of a here document.
487 # (There is no win in using 'printf' over 'cat' if it is not a shell built-in.)
488 if test -z "$have_echo" \
489    && test -n "$BASH_VERSION"; then \
490   if type printf 2>/dev/null | grep / > /dev/null; then
491     # 'printf' is not a shell built-in.
492 echo ()
493 {
494 cat <<EOF
495 $*
496 EOF
497 }
498   else
499     # 'printf' is a shell built-in.
500 echo ()
501 {
502   printf '%s\n' "$*"
503 }
504   fi
505   if echo '\t' | grep t > /dev/null; then
506     have_echo=yes
507   fi
508 fi
509 # For zsh: turn sh-emulation on.
510 if test -z "$have_echo" \
511    && test -n "$ZSH_VERSION" \
512    && (emulate sh) >/dev/null 2>&1; then
513   emulate sh
514 fi
515 # For ksh: alias echo to 'print -r'.
516 if test -z "$have_echo" \
517    && (type print) >/dev/null 2>&1; then
518   # A 'print' command exists.
519   if type print 2>/dev/null | grep / > /dev/null; then
520     :
521   else
522     # 'print' is a shell built-in.
523     if (print -r '\told' | grep told > /dev/null) 2>/dev/null; then
524       # 'print' is the ksh shell built-in.
525       alias echo='print -r'
526     fi
527   fi
528 fi
529 if test -z "$have_echo" \
530    && echo '\t' | grep t > /dev/null; then
531   have_echo=yes
532 fi
533 # For ksh: alias echo to a function that uses cat of a here document.
534 # The ksh manual page says:
535 #   "Aliasing is performed when scripts are read, not while they are executed.
536 #    Therefore, for an alias to take effect, the alias definition command has
537 #    to be executed before the command which references the alias is read."
538 # Because of this, we have to play strange tricks with have_echo, to ensure
539 # that the top-level statement containing the test starts after the 'alias'
540 # command.
541 if test -z "$have_echo"; then
542 bsd_echo ()
543 {
544 cat <<EOF
545 $*
546 EOF
547 }
548 alias echo=bsd_echo 2>/dev/null
549 fi
550 if test -z "$have_echo" \
551    && echo '\t' | grep t > /dev/null; then
552   have_echo=yes
553 fi
554 if test -z "$have_echo"; then
555   unalias echo 2>/dev/null
556 fi
557 # For Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh.
558 if test -z "$have_echo" \
559    && test "X$1" != "X--no-reexec" \
560    && test -f /bin/ksh; then
561   exec /bin/ksh "$0" --no-reexec "$@"
562   exit 127
563 fi
564 # Otherwise: respawn using /bin/sh.
565 if test -z "$have_echo" \
566    && test "X$1" != "X--no-reexec" \
567    && test -f /bin/sh; then
568   exec /bin/sh "$0" --no-reexec "$@"
569   exit 127
570 fi
571 if test -z "$have_echo"; then
572   func_fatal_error "Shell does not support 'echo' correctly. Please install GNU bash and set the environment variable CONFIG_SHELL to point to it."
573 fi
574 if echo '\t' | grep t > /dev/null; then
575   : # Works fine now.
576 else
577   func_fatal_error "Shell does not support 'echo' correctly. Workaround does not work. Please report this as a bug to bug-gnulib@gnu.org."
578 fi
579 if test "X$1" = "X--no-reexec"; then
580   shift
581 fi
582
583 # Command-line option processing.
584 # Removes the OPTIONS from the arguments. Sets the variables:
585 # - mode            list or import or create-testdir or create-megatestdir
586 # - destdir         from --dir
587 # - local_gnulib_dir  from --local-dir
588 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
589 # - libname, supplied_libname  from --lib
590 # - sourcebase      from --source-base
591 # - m4base          from --m4-base
592 # - pobase          from --po-base
593 # - docbase         from --doc-base
594 # - testsbase       from --tests-base
595 # - auxdir          from --aux-dir
596 # - inctests        true if --with-tests was given, blank otherwise
597 # - avoidlist       list of modules to avoid, from --avoid
598 # - lgpl            true if --lgpl was given, blank otherwise
599 # - makefile_name   from --makefile-name
600 # - libtool         true if --libtool was given, false if --no-libtool was
601 #                   given, blank otherwise
602 # - macro_prefix    from --macro-prefix
603 # - po_domain       from --po-domain
604 # - autoconf_minversion  minimum supported autoconf version
605 # - do_changelog    false if --no-changelog was given, : otherwise
606 # - doit            : if actions shall be executed, false if only to be printed
607 # - symbolic        true if --symlink or --more-symlinks was given, blank
608 #                   otherwise
609 # - lsymbolic       true if --local-symlink was given, blank otherwise
610 # - do_copyrights   blank if --more-symlinks was given, true otherwise
611 {
612   mode=
613   destdir=
614   local_gnulib_dir=
615   verbose=0
616   libname=libgnu
617   supplied_libname=
618   sourcebase=
619   m4base=
620   pobase=
621   docbase=
622   testsbase=
623   auxdir=
624   inctests=
625   avoidlist=
626   lgpl=
627   makefile_name=
628   libtool=
629   macro_prefix=
630   po_domain=
631   do_changelog=:
632   doit=:
633   symbolic=
634   lsymbolic=
635   do_copyrights=true
636
637   supplied_opts="$@"
638
639   while test $# -gt 0; do
640     case "$1" in
641       --list | --lis )
642         mode=list
643         shift ;;
644       --import | --impor | --impo | --imp | --im | --i )
645         mode=import
646         shift ;;
647       --update | --updat | --upda | --upd | --up | --u )
648         mode=update
649         shift ;;
650       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
651         mode=create-testdir
652         shift ;;
653       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
654         mode=create-megatestdir
655         shift ;;
656       --test | --tes | --te | --t )
657         mode=test
658         shift ;;
659       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
660         mode=megatest
661         shift ;;
662       --extract-* )
663         mode=`echo "X$1" | sed -e 's/^X--//'`
664         shift ;;
665       --dir )
666         shift
667         if test $# = 0; then
668           func_fatal_error "missing argument for --dir"
669         fi
670         destdir=$1
671         shift ;;
672       --dir=* )
673         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
674         shift ;;
675       --local-dir )
676         shift
677         if test $# = 0; then
678           func_fatal_error "missing argument for --local-dir"
679         fi
680         local_gnulib_dir=$1
681         shift ;;
682       --local-dir=* )
683         local_gnulib_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'`
684         shift ;;
685       --verbose | --verbos | --verbo | --verb )
686         verbose=`expr $verbose + 1`
687         shift ;;
688       --quiet | --quie | --qui | --qu | --q )
689         verbose=`expr $verbose - 1`
690         shift ;;
691       --lib )
692         shift
693         if test $# = 0; then
694           func_fatal_error "missing argument for --lib"
695         fi
696         libname=$1
697         supplied_libname=true
698         shift ;;
699       --lib=* )
700         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
701         supplied_libname=true
702         shift ;;
703       --source-base )
704         shift
705         if test $# = 0; then
706           func_fatal_error "missing argument for --source-base"
707         fi
708         sourcebase=$1
709         shift ;;
710       --source-base=* )
711         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
712         shift ;;
713       --m4-base )
714         shift
715         if test $# = 0; then
716           func_fatal_error "missing argument for --m4-base"
717         fi
718         m4base=$1
719         shift ;;
720       --m4-base=* )
721         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
722         shift ;;
723       --po-base )
724         shift
725         if test $# = 0; then
726           func_fatal_error "missing argument for --po-base"
727         fi
728         pobase=$1
729         shift ;;
730       --po-base=* )
731         pobase=`echo "X$1" | sed -e 's/^X--po-base=//'`
732         shift ;;
733       --doc-base )
734         shift
735         if test $# = 0; then
736           func_fatal_error "missing argument for --doc-base"
737         fi
738         docbase=$1
739         shift ;;
740       --doc-base=* )
741         docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'`
742         shift ;;
743       --tests-base )
744         shift
745         if test $# = 0; then
746           func_fatal_error "missing argument for --tests-base"
747         fi
748         testsbase=$1
749         shift ;;
750       --tests-base=* )
751         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
752         shift ;;
753       --aux-dir )
754         shift
755         if test $# = 0; then
756           func_fatal_error "missing argument for --aux-dir"
757         fi
758         auxdir=$1
759         shift ;;
760       --aux-dir=* )
761         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
762         shift ;;
763       --with-tests )
764         inctests=true
765         shift ;;
766       --avoid )
767         shift
768         if test $# = 0; then
769           func_fatal_error "missing argument for --avoid"
770         fi
771         func_append avoidlist " $1"
772         shift ;;
773       --avoid=* )
774         arg=`echo "X$1" | sed -e 's/^X--avoid=//'`
775         func_append avoidlist " $arg"
776         shift ;;
777       --lgpl )
778         lgpl=true
779         shift ;;
780       --makefile-name )
781         shift
782         if test $# = 0; then
783           func_fatal_error "missing argument for --makefile-name"
784         fi
785         makefile_name="$1"
786         shift ;;
787       --makefile-name=* )
788         makefile_name=`echo "X$1" | sed -e 's/^X--makefile-name=//'`
789         shift ;;
790       --libtool )
791         libtool=true
792         shift ;;
793       --no-libtool )
794         libtool=false
795         shift ;;
796       --macro-prefix )
797         shift
798         if test $# = 0; then
799           func_fatal_error "missing argument for --macro-prefix"
800         fi
801         macro_prefix="$1"
802         shift ;;
803       --macro-prefix=* )
804         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
805         shift ;;
806       --po-domain )
807         shift
808         if test $# = 0; then
809           func_fatal_error "missing argument for --po-domain"
810         fi
811         po_domain="$1"
812         shift ;;
813       --po-domain=* )
814         po_domain=`echo "X$1" | sed -e 's/^X--po-domain=//'`
815         shift ;;
816       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
817         do_changelog=false
818         shift ;;
819       --dry-run )
820         doit=false
821         shift ;;
822       -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy )
823         symbolic=true
824         shift ;;
825       --local-symlink | --local-symlin | --local-symli | --local-syml | --local-sym | --local-sy | --local-s )
826         lsymbolic=true
827         shift ;;
828       -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | --more-syml | --more-sym | --more-sy | --more-s | --more- | --more | --mor | --mo )
829         symbolic=true
830         do_copyrights=
831         shift ;;
832       --help | --hel | --he | --h )
833         func_usage
834         func_exit $? ;;
835       --version | --versio | --versi | --vers )
836         func_version
837         func_exit $? ;;
838       -- )
839         # Stop option processing
840         shift
841         break ;;
842       -* )
843         echo "gnulib-tool: unknown option $1" 1>&2
844         echo "Try 'gnulib-tool --help' for more information." 1>&2
845         func_exit 1 ;;
846       * )
847         break ;;
848     esac
849   done
850
851   if test "$mode" = update; then
852     if test $# != 0; then
853       echo "gnulib-tool: too many arguments in 'update' mode" 1>&2
854       echo "Try 'gnulib-tool --help' for more information." 1>&2
855       echo "If you really want to modify the gnulib configuration of your project," 1>&2
856       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
857       func_exit 1
858     fi
859     if test -n "$local_gnulib_dir" || test -n "$supplied_libname" \
860        || test -n "$sourcebase" || test -n "$m4base" || test -n "$pobase" \
861        || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \
862        || test -n "$inctests" || test -n "$avoidlist" || test -n "$lgpl" \
863        || test -n "$makefile_name" || test -n "$macro_prefix" \
864        || test -n "$po_domain"; then
865       echo "gnulib-tool: invalid options for 'update' mode" 1>&2
866       echo "Try 'gnulib-tool --help' for more information." 1>&2
867       echo "If you really want to modify the gnulib configuration of your project," 1>&2
868       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
869       func_exit 1
870     fi
871     do_changelog=false
872   fi
873   if test -n "$pobase" && test -z "$po_domain"; then
874     echo "gnulib-tool: together with --po-base, you need to specify --po-domain" 1>&2
875     echo "Try 'gnulib-tool --help' for more information." 1>&2
876     func_exit 1
877   fi
878   if test -z "$pobase" && test -n "$po_domain"; then
879     echo "gnulib-tool: warning: --po-domain has no effect without a --po-base option" 1>&2
880   fi
881
882   # Determine the minimum supported autoconf version from the project's
883   # configure.ac.
884   DEFAULT_AUTOCONF_MINVERSION="2.59"
885   autoconf_minversion=
886   configure_ac=
887   if { test "$mode" = import || test "$mode" = update; } && test -n "$destdir"; then
888     if test -f "$destdir"/configure.ac; then
889       configure_ac="$destdir/configure.ac"
890     else
891       if test -f "$destdir"/configure.in; then
892         configure_ac="$destdir/configure.in"
893       fi
894     fi
895   else
896     if test -f configure.ac; then
897       configure_ac="configure.ac"
898     else
899       if test -f configure.in; then
900         configure_ac="configure.in"
901       fi
902     fi
903   fi
904   if test -n "$configure_ac"; then
905     # Use sed, not autoconf --trace, to look for the AC_PREREQ invocation,
906     # because when some m4 files are omitted from a CVS repository,
907     # "autoconf --trace=AC_PREREQ" fails with an error message like this:
908     #   m4: aclocal.m4:851: Cannot open m4/absolute-header.m4: No such file or directory
909     #   autom4te: m4 failed with exit status: 1
910     prereqs=
911     my_sed_traces='
912       s,#.*$,,
913       s,^dnl .*$,,
914       s, dnl .*$,,
915       /AC_PREREQ/ {
916         s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,\1,p
917       }'
918     prereqs=`sed -n -e "$my_sed_traces" < "$configure_ac"`
919     if test -n "$prereqs"; then
920       autoconf_minversion=`
921         for version in $prereqs; do echo $version; done |
922         LC_ALL=C sort -nru | sed 1q
923       `
924     fi
925   fi
926   if test -z "$autoconf_minversion"; then
927     autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION
928   fi
929   case "$autoconf_minversion" in
930     1.* | 2.[0-4]* | 2.5[0-8]*)
931       func_fatal_error "minimum supported autoconf version is 2.59. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;;
932   esac
933
934   # Remove trailing slashes from the directory names. This is necessary for
935   # m4base (to avoid an error in func_import) and optional for the others.
936   sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
937   case "$local_gnulib_dir" in
938     */ ) local_gnulib_dir=`echo "$local_gnulib_dir" | sed -e "$sed_trimtrailingslashes"` ;;
939   esac
940   case "$sourcebase" in
941     */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
942   esac
943   case "$m4base" in
944     */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
945   esac
946   case "$pobase" in
947     */ ) pobase=`echo "$pobase" | sed -e "$sed_trimtrailingslashes"` ;;
948   esac
949   case "$docbase" in
950     */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;;
951   esac
952   case "$testsbase" in
953     */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
954   esac
955   case "$auxdir" in
956     */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
957   esac
958 }
959
960 case "$0" in
961   /*) self_abspathname="$0" ;;
962   */*) self_abspathname=`pwd`/"$0" ;;
963   *)
964     # Look in $PATH.
965     # Iterate through the elements of $PATH.
966     # We use IFS=: instead of
967     #   for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`
968     # because the latter does not work when some PATH element contains spaces.
969     # We use a canonicalized $pathx instead of $PATH, because empty PATH
970     # elements are by definition equivalent to '.', however field splitting
971     # according to IFS=: loses empty fields in many shells:
972     #   - /bin/sh on OSF/1 and Solaris loses all empty fields (at the
973     #     beginning, at the end, and in the middle),
974     #   - /bin/sh on IRIX and /bin/ksh on IRIX and OSF/1 lose empty fields
975     #     at the beginning and at the end,
976     #   - GNU bash, /bin/sh on AIX and HP-UX, and /bin/ksh on AIX, HP-UX,
977     #     Solaris lose empty fields at the end.
978     # The 'case' statement is an optimization, to avoid evaluating the
979     # explicit canonicalization command when $PATH contains no empty fields.
980     self_abspathname=
981     if test "${PATH_SEPARATOR+set}" != set; then
982       func_tmpdir
983       { echo "#! /bin/sh"; echo "exit 0"; } > "$tmp"/conf.sh
984       chmod +x "$tmp"/conf.sh
985       if (PATH="/nonexistent;$tmp"; conf.sh) >/dev/null 2>&1; then
986         PATH_SEPARATOR=';'
987       else
988         PATH_SEPARATOR=:
989       fi
990       rm -rf "$tmp"
991     fi
992     if test "$PATH_SEPARATOR" = ";"; then
993       # On Windows, programs are searched in "." before $PATH.
994       pathx=".;$PATH"
995     else
996       # On Unix, we have to convert empty PATH elements to ".".
997       pathx="$PATH"
998       case :$PATH: in
999         *::*)
1000           pathx=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'`
1001           ;;
1002       esac
1003     fi
1004     save_IFS="$IFS"
1005     IFS="$PATH_SEPARATOR"
1006     for d in $pathx; do
1007       IFS="$save_IFS"
1008       test -z "$d" && d=.
1009       if test -x "$d/$0" && test ! -d "$d/$0"; then
1010         self_abspathname="$d/$0"
1011         break
1012       fi
1013     done
1014     IFS="$save_IFS"
1015     if test -z "$self_abspathname"; then
1016       func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
1017     fi
1018     ;;
1019 esac
1020 while test -h "$self_abspathname"; do
1021   # Resolve symbolic link.
1022   linkval=`func_readlink "$self_abspathname"`
1023   test -n "$linkval" || break
1024   case "$linkval" in
1025     /* ) self_abspathname="$linkval" ;;
1026     * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
1027   esac
1028 done
1029 gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
1030
1031 func_tmpdir
1032 trap 'exit_status=$?
1033       if test "$signal" != 0; then
1034         echo "caught signal $signal" >&2
1035       fi
1036       rm -rf "$tmp"
1037       exit $exit_status' 0
1038 for signal in 1 2 3 13 15; do
1039   trap '{ signal='$signal'; func_exit 1; }' $signal
1040 done
1041 signal=0
1042
1043 # func_lookup_file file
1044 # looks up a file in $local_gnulib_dir or $gnulib_dir, or combines it through
1045 # 'patch'.
1046 # Input:
1047 # - local_gnulib_dir  from --local-dir
1048 # Output:
1049 # - lookedup_file   name of the merged (combined) file
1050 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
1051 func_lookup_file ()
1052 {
1053   lkfile="$1"
1054   if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile"; then
1055     lookedup_file="$local_gnulib_dir/$lkfile"
1056     lookedup_tmp=
1057   else
1058     if test -f "$gnulib_dir/$lkfile"; then
1059       if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile.diff"; then
1060         lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'`
1061         rm -f "$tmp/$lkbase"
1062         cp "$gnulib_dir/$lkfile" "$tmp/$lkbase"
1063         patch -s "$tmp/$lkbase" < "$local_gnulib_dir/$lkfile.diff" \
1064           || func_fatal_error "patch file $local_gnulib_dir/$lkfile.diff didn't apply cleanly"
1065         lookedup_file="$tmp/$lkbase"
1066         lookedup_tmp=true
1067       else
1068         lookedup_file="$gnulib_dir/$lkfile"
1069         lookedup_tmp=
1070       fi
1071     else
1072       func_fatal_error "file $gnulib_dir/$lkfile not found"
1073     fi
1074   fi
1075 }
1076
1077 # func_all_modules
1078 # Input:
1079 # - local_gnulib_dir  from --local-dir
1080 func_all_modules ()
1081 {
1082   # Filter out metainformation files like README, which are not modules.
1083   # Filter out unit test modules; they can be retrieved through
1084   # --extract-tests-module if desired.
1085   {
1086     (cd "$gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,')
1087     if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
1088       (cd "$local_gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,' -e 's,\.diff$,,')
1089     fi
1090   } \
1091       | sed -e '/^CVS\//d' -e '/\/CVS\//d' \
1092             -e '/^ChangeLog$/d' -e '/\/ChangeLog$/d' \
1093             -e '/^COPYING$/d' -e '/\/COPYING$/d' \
1094             -e '/^README$/d' -e '/\/README$/d' \
1095             -e '/^TEMPLATE$/d' \
1096             -e '/^TEMPLATE-EXTENDED$/d' \
1097             -e '/^TEMPLATE-TESTS$/d' \
1098             -e '/^\..*/d' \
1099             -e '/~$/d' \
1100       | sed -e '/-tests$/d' \
1101       | LC_ALL=C sort -u
1102 }
1103
1104 # func_verify_module
1105 # verifies a module name
1106 # Input:
1107 # - local_gnulib_dir  from --local-dir
1108 # - module          module name argument
1109 func_verify_module ()
1110 {
1111   if { test -f "$gnulib_dir/modules/$module" \
1112        || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1113             && test -f "$local_gnulib_dir/modules/$module"; }; } \
1114      && test "CVS" != "$module" \
1115      && test "ChangeLog" != "$module" \
1116      && test "COPYING" != "$module" \
1117      && test "README" != "$module" \
1118      && test "TEMPLATE" != "$module" \
1119      && test "TEMPLATE-EXTENDED" != "$module" \
1120      && test "TEMPLATE-TESTS" != "$module"; then
1121     # OK, $module is a correct module name.
1122     # Verify that building the module description with 'patch' succeeds.
1123     func_lookup_file "modules/$module"
1124   else
1125     echo "gnulib-tool: module $module doesn't exist" 1>&2
1126     module=
1127   fi
1128 }
1129
1130 # func_verify_nontests_module
1131 # verifies a module name, excluding tests modules
1132 # Input:
1133 # - local_gnulib_dir  from --local-dir
1134 # - module          module name argument
1135 func_verify_nontests_module ()
1136 {
1137   case "$module" in
1138     *-tests ) module= ;;
1139     * ) func_verify_module ;;
1140   esac
1141 }
1142
1143 # func_verify_tests_module
1144 # verifies a module name, considering only tests modules
1145 # Input:
1146 # - local_gnulib_dir  from --local-dir
1147 # - module          module name argument
1148 func_verify_tests_module ()
1149 {
1150   case "$module" in
1151     *-tests ) func_verify_module ;;
1152     * ) module= ;;
1153   esac
1154 }
1155
1156 sed_extract_prog=':[     ]*$/ {
1157   :a
1158     n
1159     s/^Description:[     ]*$//
1160     s/^Notice:[  ]*$//
1161     s/^Files:[   ]*$//
1162     s/^Depends-on:[      ]*$//
1163     s/^configure\.ac-early:[     ]*$//
1164     s/^configure\.ac:[   ]*$//
1165     s/^Makefile\.am:[    ]*$//
1166     s/^Include:[         ]*$//
1167     s/^Link:[    ]*$//
1168     s/^License:[         ]*$//
1169     s/^Maintainer:[      ]*$//
1170     tb
1171     p
1172     ba
1173   :b
1174 }'
1175
1176 # func_get_description module
1177 # Input:
1178 # - local_gnulib_dir  from --local-dir
1179 func_get_description ()
1180 {
1181   func_lookup_file "modules/$1"
1182   sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file"
1183 }
1184
1185 # func_get_notice module
1186 # Input:
1187 # - local_gnulib_dir  from --local-dir
1188 func_get_notice ()
1189 {
1190   func_lookup_file "modules/$1"
1191   sed -n -e "/^Notice$sed_extract_prog" < "$lookedup_file"
1192 }
1193
1194 # func_get_filelist module
1195 # Input:
1196 # - local_gnulib_dir  from --local-dir
1197 func_get_filelist ()
1198 {
1199   func_lookup_file "modules/$1"
1200   sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file"
1201   echo m4/gnulib-common.m4
1202   case "$autoconf_minversion" in
1203     2.59)
1204       #echo m4/onceonly.m4
1205       echo m4/onceonly_2_57.m4
1206       ;;
1207   esac
1208 }
1209
1210 # func_get_dependencies module
1211 # Input:
1212 # - local_gnulib_dir  from --local-dir
1213 func_get_dependencies ()
1214 {
1215   # ${module}-tests always implicitly depends on ${module}.
1216   echo "$1" | sed -n -e 's/-tests//p'
1217   # Then the explicit dependencies listed in the module description.
1218   func_lookup_file "modules/$1"
1219   sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file"
1220 }
1221
1222 # func_get_autoconf_early_snippet module
1223 # Input:
1224 # - local_gnulib_dir  from --local-dir
1225 func_get_autoconf_early_snippet ()
1226 {
1227   func_lookup_file "modules/$1"
1228   sed -n -e "/^configure\.ac-early$sed_extract_prog" < "$lookedup_file"
1229 }
1230
1231 # func_get_autoconf_snippet module
1232 # Input:
1233 # - local_gnulib_dir  from --local-dir
1234 func_get_autoconf_snippet ()
1235 {
1236   func_lookup_file "modules/$1"
1237   sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file"
1238 }
1239
1240 # func_get_automake_snippet module
1241 # Input:
1242 # - local_gnulib_dir  from --local-dir
1243 func_get_automake_snippet ()
1244 {
1245   func_lookup_file "modules/$1"
1246   sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
1247   case "$1" in
1248     *-tests)
1249       # *-tests module live in tests/, not lib/.
1250       ;;
1251     *)
1252       # Synthesize an EXTRA_DIST augmentation.
1253       sed_combine_lines='/\\$/{
1254         :a
1255         N
1256         s/\\\n/ /
1257         s/\\$/\\/
1258         ta
1259       }'
1260       sed_extract_mentioned_files='s/^lib_SOURCES[       ]*+=[   ]*//p'
1261       already_mentioned_files=` \
1262         sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file" \
1263         | sed -e "$sed_combine_lines" \
1264         | sed -n -e "$sed_extract_mentioned_files" | sed -e 's/#.*//'`
1265       all_files=`func_get_filelist $1`
1266       lib_files=`for f in $all_files; do \
1267                    case $f in \
1268                      lib/*) echo $f ;; \
1269                    esac; \
1270                  done | sed -e 's,^lib/,,'`
1271       # Remove $already_mentioned_files from $lib_files.
1272       echo "$lib_files" | LC_ALL=C sort -u > "$tmp"/lib-files
1273       extra_files=`for f in $already_mentioned_files; do echo $f; done \
1274                    | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/lib-files`
1275       if test -n "$extra_files"; then
1276         echo "EXTRA_DIST +=" $extra_files
1277         echo
1278       fi
1279       # Synthesize also an EXTRA_lib_SOURCES augmentation.
1280       # This is necessary so that automake can generate the right list of
1281       # dependency rules.
1282       # A possible approach would be to use autom4te --trace of the redefined
1283       # AC_LIBOBJ and AC_REPLACE_FUNCS macros when creating the Makefile.am
1284       # (use autom4te --trace, not just grep, so that AC_LIBOBJ invocations
1285       # inside autoconf's built-in macros are not missed).
1286       # But it's simpler and more robust to do it here, based on the file list.
1287       # If some .c file exists and is not used with AC_LIBOBJ - for example,
1288       # a .c file is preprocessed into another .c file for BUILT_SOURCES -,
1289       # automake will generate a useless dependency; this is harmless.
1290       case "$1" in
1291         relocatable-prog-wrapper) ;;
1292         *)
1293           sed_extract_c_files='/\.c$/p'
1294           extra_files=`echo "$extra_files" | sed -n -e "$sed_extract_c_files"`
1295           if test -n "$extra_files"; then
1296             echo "EXTRA_lib_SOURCES +=" $extra_files
1297             echo
1298           fi
1299           ;;
1300       esac
1301       # Synthesize an EXTRA_DIST augmentation also for the files in build-aux/.
1302       buildaux_files=`for f in $all_files; do \
1303                         case $f in \
1304                           build-aux/*) echo $f ;; \
1305                         esac; \
1306                       done | sed -e 's,^build-aux/,,'`
1307       if test -n "$buildaux_files"; then
1308         sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
1309         echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"`
1310         echo
1311       fi
1312       ;;
1313   esac
1314 }
1315
1316 # func_get_include_directive module
1317 # Input:
1318 # - local_gnulib_dir  from --local-dir
1319 func_get_include_directive ()
1320 {
1321   func_lookup_file "modules/$1"
1322   sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file" | \
1323   sed -e 's/^\(["<]\)/#include \1/'
1324 }
1325
1326 # func_get_link_directive module
1327 # Input:
1328 # - local_gnulib_dir  from --local-dir
1329 func_get_link_directive ()
1330 {
1331   func_lookup_file "modules/$1"
1332   sed -n -e "/^Link$sed_extract_prog" < "$lookedup_file"
1333 }
1334
1335 # func_get_license module
1336 # Input:
1337 # - local_gnulib_dir  from --local-dir
1338 func_get_license ()
1339 {
1340   func_lookup_file "modules/$1"
1341   { sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
1342     # The default is GPL.
1343     echo "GPL"
1344   } | sed -e 's,^ *$,,' | sed -e 1q
1345 }
1346
1347 # func_get_maintainer module
1348 # Input:
1349 # - local_gnulib_dir  from --local-dir
1350 func_get_maintainer ()
1351 {
1352   func_lookup_file "modules/$1"
1353   sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
1354 }
1355
1356 # func_get_tests_module module
1357 # Input:
1358 # - local_gnulib_dir  from --local-dir
1359 func_get_tests_module ()
1360 {
1361   # The naming convention for tests modules is hardwired: ${module}-tests.
1362   if test -f "$gnulib_dir/modules/$1"-tests \
1363      || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1364           && test -f "$local_gnulib_dir/modules/$1"-tests; }; then
1365     echo "$1"-tests
1366   fi
1367 }
1368
1369 # func_acceptable module
1370 # tests whether a module is acceptable.
1371 # Input:
1372 # - avoidlist       list of modules to avoid
1373 func_acceptable ()
1374 {
1375   for avoid in $avoidlist; do
1376     if test "$avoid" = "$1"; then
1377       return 1
1378     fi
1379   done
1380   return 0
1381 }
1382
1383 # func_modules_transitive_closure
1384 # Input:
1385 # - local_gnulib_dir  from --local-dir
1386 # - modules         list of specified modules
1387 # - inctests        true if tests should be included, blank otherwise
1388 # - avoidlist       list of modules to avoid
1389 # - tmp             pathname of a temporary directory
1390 # Output:
1391 # - modules         list of modules, including dependencies
1392 func_modules_transitive_closure ()
1393 {
1394   # In order to process every module only once (for speed), process an "input
1395   # list" of modules, producing an "output list" of modules. During each round,
1396   # more modules can be queued in the input list. Once a module on the input
1397   # list has been processed, it is added to the "handled list", so we can avoid
1398   # to process it again.
1399   handledmodules=
1400   inmodules="$modules"
1401   outmodules=
1402   while test -n "$inmodules"; do
1403     inmodules_this_round="$inmodules"
1404     inmodules=                    # Accumulator, queue for next round
1405     for module in $inmodules_this_round; do
1406       func_verify_module
1407       if test -n "$module"; then
1408         if func_acceptable $module; then
1409           func_append outmodules " $module"
1410           deps=`func_get_dependencies $module`
1411           # Duplicate dependencies are harmless, but Jim wants a warning.
1412           duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d`
1413           if test -n "$duplicated_deps"; then
1414             echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
1415           fi
1416           func_append inmodules " $deps"
1417           if test -n "$inctests"; then
1418             testsmodule=`func_get_tests_module $module`
1419             if test -n "$testsmodule"; then
1420               func_append inmodules " $testsmodule"
1421             fi
1422           fi
1423         fi
1424       fi
1425     done
1426     handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
1427     # Remove $handledmodules from $inmodules.
1428     for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
1429     inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
1430   done
1431   modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u`
1432   rm -f "$tmp"/queued-modules
1433 }
1434
1435 # func_modules_add_dummy
1436 # Input:
1437 # - local_gnulib_dir  from --local-dir
1438 # - modules         list of modules, including dependencies
1439 # Output:
1440 # - modules         list of modules, including 'dummy' if needed
1441 func_modules_add_dummy ()
1442 {
1443   have_lib_SOURCES=
1444   sed_remove_backslash_newline=':a
1445 /\\$/{
1446 s/\\$//
1447 N
1448 s/\n//
1449 ba
1450 }'
1451   for module in $modules; do
1452     func_verify_nontests_module
1453     if test -n "$module"; then
1454       # Extract the value of "lib_SOURCES += ...".
1455       for file in `func_get_automake_snippet "$module" | sed -e "$sed_remove_backslash_newline" | sed -n -e 's,^lib_SOURCES[     ]*+=\([^#]*\).*$,\1,p'`; do
1456         # Ignore .h files since they are not compiled.
1457         case "$file" in
1458           *.h) ;;
1459           *) have_lib_SOURCES=yes ;;
1460         esac
1461       done
1462     fi
1463   done
1464   # Add the dummy module, to make sure the library will be non-empty.
1465   if test -z "$have_lib_SOURCES"; then
1466     if func_acceptable "dummy"; then
1467       func_append modules " dummy"
1468     fi
1469   fi
1470 }
1471
1472 # func_modules_notice
1473 # Input:
1474 # - local_gnulib_dir  from --local-dir
1475 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
1476 # - modules         list of modules, including dependencies
1477 func_modules_notice ()
1478 {
1479   if test $verbose -ge -1; then
1480     for module in $modules; do
1481       func_verify_module
1482       if test -n "$module"; then
1483         msg=`func_get_notice $module`
1484         if test -n "$msg"; then
1485           echo "Notice from module $module:"
1486           echo "$msg" | sed -e 's/^/  /'
1487         fi
1488       fi
1489     done
1490   fi
1491 }
1492
1493 # func_modules_to_filelist
1494 # Input:
1495 # - local_gnulib_dir  from --local-dir
1496 # - modules         list of modules, including dependencies
1497 # Output:
1498 # - files           list of files
1499 func_modules_to_filelist ()
1500 {
1501   files=
1502   for module in $modules; do
1503     func_verify_module
1504     if test -n "$module"; then
1505       fs=`func_get_filelist $module`
1506       func_append files " $fs"
1507     fi
1508   done
1509   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
1510 }
1511
1512 # func_execute_command command [args...]
1513 # Executes a command.
1514 # Uses also the variables
1515 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
1516 func_execute_command ()
1517 {
1518   if test $verbose -ge 0; then
1519     echo "executing $*"
1520     "$@"
1521   else
1522     # Commands like automake produce output to stderr even when the succeed.
1523     # Turn this output off if the command succeeds.
1524     "$@" > "$tmp"/cmdout 2>&1
1525     cmdret=$?
1526     if test $cmdret = 0; then
1527       rm -f "$tmp"/cmdout
1528     else
1529       echo "executing $*"
1530       cat "$tmp"/cmdout 1>&2
1531       rm -f "$tmp"/cmdout
1532       (exit $cmdret)
1533     fi
1534   fi
1535 }
1536
1537 # func_emit_lib_Makefile_am
1538 # emits the contents of library makefile to standard output.
1539 # Input:
1540 # - local_gnulib_dir  from --local-dir
1541 # - modules         list of modules, including dependencies
1542 # - libname         library name
1543 # - pobase          directory relative to destdir where to place *.po files
1544 # - auxdir          directory relative to destdir where to place build aux files
1545 # - makefile_name   from --makefile-name
1546 # - libtool         true if libtool will be used, false or blank otherwise
1547 # - macro_prefix    prefix of gl_LIBOBJS macros to use
1548 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
1549 # - actioncmd       (optional) command that will reproduce this invocation
1550 # - for_test        true if creating a package for testing, false otherwise
1551 # Output:
1552 # - uses_subdirs    nonempty if object files in subdirs exist
1553 func_emit_lib_Makefile_am ()
1554 {
1555   # When creating an includable Makefile.am snippet, augment variables with
1556   # += instead of assigning them.
1557   if test -n "$makefile_name"; then
1558     assign='+='
1559   else
1560     assign='='
1561   fi
1562   if test "$libtool" = true; then
1563     libext=la
1564     perhapsLT=LT
1565     sed_eliminate_LDFLAGS=
1566   else
1567     libext=a
1568     perhapsLT=
1569     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1570   fi
1571   if $for_test; then
1572     # When creating a package for testing: Attempt to provoke failures,
1573     # especially link errors, already during "make" rather than during
1574     # "make check", because "make check" is not possible in a cross-compiling
1575     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
1576     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
1577   else
1578     sed_transform_check_PROGRAMS=
1579   fi
1580   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1581   echo "## Process this file with automake to produce Makefile.in."
1582   func_emit_copyright_notice
1583   if test -n "$actioncmd"; then
1584     echo "# Reproduce by: $actioncmd"
1585   fi
1586   echo
1587   uses_subdirs=
1588   {
1589     for module in $modules; do
1590       func_verify_nontests_module
1591       if test -n "$module"; then
1592         {
1593           func_get_automake_snippet "$module" |
1594             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1595                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
1596                 -e "$sed_eliminate_LDFLAGS" \
1597                 -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \
1598                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1599                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
1600                 -e "$sed_transform_check_PROGRAMS"
1601           if test "$module" = 'alloca'; then
1602             echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
1603             echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@"
1604           fi
1605         } > amsnippet.tmp
1606         # Skip the contents if its entirely empty.
1607         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1608           echo "## begin gnulib module $module"
1609           echo
1610           cat amsnippet.tmp
1611           echo "## end   gnulib module $module"
1612           echo
1613         fi
1614         rm -f amsnippet.tmp
1615         # Test whether there are some source files in subdirectories.
1616         for f in `func_get_filelist "$module"`; do
1617           case $f in
1618             lib/*/*.c) uses_subdirs=yes ;;
1619           esac
1620         done
1621       fi
1622     done
1623   } > allsnippets.tmp
1624   if test -z "$makefile_name"; then
1625     # If there are source files in subdirectories, prevent collision of the
1626     # object files (example: hash.c and libxml/hash.c).
1627     subdir_options=
1628     if test -n "$uses_subdirs"; then
1629       subdir_options=' subdir-objects'
1630     fi
1631     echo "AUTOMAKE_OPTIONS = 1.5 gnits${subdir_options}"
1632   fi
1633   echo
1634   if test -z "$makefile_name"; then
1635     echo "noinst_HEADERS ="
1636     echo "noinst_LIBRARIES ="
1637     echo "noinst_LTLIBRARIES ="
1638     # Automake versions < 1.9b create an empty pkgdatadir at installation time
1639     # if you specify pkgdata_DATA to empty. This is a workaround.
1640     if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1641       echo "pkgdata_DATA ="
1642     fi
1643     echo "EXTRA_DIST ="
1644     echo "BUILT_SOURCES ="
1645     echo "SUFFIXES ="
1646   fi
1647   echo "MOSTLYCLEANFILES $assign core *.stackdump"
1648   if test -z "$makefile_name"; then
1649     echo "MOSTLYCLEANDIRS ="
1650     echo "CLEANFILES ="
1651     echo "DISTCLEANFILES ="
1652     echo "MAINTAINERCLEANFILES ="
1653     echo
1654     echo "AM_CPPFLAGS ="
1655   fi
1656   echo
1657   if LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *= *$libname\\.$libext\$" allsnippets.tmp > /dev/null; then
1658     # One of the snippets already specifies an installation location for the
1659     # library. Don't confuse automake by saying it should not be installed.
1660     :
1661   else
1662     # By default, the generated library should not be installed.
1663     echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext"
1664   fi
1665   echo
1666   echo "${libname}_${libext}_SOURCES ="
1667   # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
1668   # automake during its analyses looks for $(LIBOBJS), not for @LIBOBJS@.
1669   echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1670   echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1671   echo "EXTRA_${libname}_${libext}_SOURCES ="
1672   if test "$libtool" = true; then
1673     echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)"
1674   fi
1675   echo
1676   if test -n "$pobase"; then
1677     echo "AM_CPPFLAGS += -DDEFAULT_TEXT_DOMAIN=\\\"${po_domain}-gnulib\\\""
1678     echo
1679   fi
1680   cat allsnippets.tmp \
1681     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
1682   echo
1683   echo "mostlyclean-local: mostlyclean-generic"
1684   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1685   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1686   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1687   echo "          fi; \\"
1688   echo "        done; \\"
1689   echo "        :"
1690   rm -f allsnippets.tmp
1691 }
1692
1693 # func_emit_po_Makevars
1694 # emits the contents of po/ makefile parametrization to standard output.
1695 # Input:
1696 # - local_gnulib_dir  from --local-dir
1697 # - sourcebase      directory relative to destdir where to place source code
1698 # - pobase          directory relative to destdir where to place *.po files
1699 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
1700 func_emit_po_Makevars ()
1701 {
1702   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1703   func_emit_copyright_notice
1704   echo
1705   echo "# Usually the message domain is the same as the package name."
1706   echo "# But here it has a '-gnulib' suffix."
1707   echo "DOMAIN = ${po_domain}-gnulib"
1708   echo
1709   echo "# These two variables depend on the location of this directory."
1710   echo "subdir = ${pobase}"
1711   echo "top_builddir = "`echo "$pobase" | sed -e 's,//*,/,g' -e 's,[^/][^/]*,..,g'`
1712   echo
1713   cat <<\EOF
1714 # These options get passed to xgettext.
1715 XGETTEXT_OPTIONS = \
1716   --keyword=_ --flag=_:1:pass-c-format \
1717   --keyword=N_ --flag=N_:1:pass-c-format \
1718   --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."' \
1719   --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."' \
1720   --flag=error:3:c-format --flag=error_at_line:5:c-format
1721
1722 # This is the copyright holder that gets inserted into the header of the
1723 # $(DOMAIN).pot file.  gnulib is copyrighted by the FSF.
1724 COPYRIGHT_HOLDER = Free Software Foundation, Inc.
1725
1726 # This is the email address or URL to which the translators shall report
1727 # bugs in the untranslated strings:
1728 # - Strings which are not entire sentences, see the maintainer guidelines
1729 #   in the GNU gettext documentation, section 'Preparing Strings'.
1730 # - Strings which use unclear terms or require additional context to be
1731 #   understood.
1732 # - Strings which make invalid assumptions about notation of date, time or
1733 #   money.
1734 # - Pluralisation problems.
1735 # - Incorrect English spelling.
1736 # - Incorrect formatting.
1737 # It can be your email address, or a mailing list address where translators
1738 # can write to without being subscribed, or the URL of a web page through
1739 # which the translators can contact you.
1740 MSGID_BUGS_ADDRESS = bug-gnulib@gnu.org
1741
1742 # This is the list of locale categories, beyond LC_MESSAGES, for which the
1743 # message catalogs shall be used.  It is usually empty.
1744 EXTRA_LOCALE_CATEGORIES =
1745
1746 # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
1747 # context.  Possible values are "yes" and "no".  Set this to yes if the
1748 # package uses functions taking also a message context, like pgettext(), or
1749 # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
1750 USE_MSGCTXT = no
1751 EOF
1752 }
1753
1754 # func_emit_po_POTFILES_in
1755 # emits the file list to be passed to xgettext to standard output.
1756 # Input:
1757 # - local_gnulib_dir  from --local-dir
1758 # - sourcebase      directory relative to destdir where to place source code
1759 # - files           list of new files
1760 func_emit_po_POTFILES_in ()
1761 {
1762   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1763   func_emit_copyright_notice
1764   echo
1765   echo "# List of files which contain translatable strings."
1766   echo "$files" | sed -n -e "s,^lib/,$sourcebase/,p"
1767 }
1768
1769 # func_emit_tests_Makefile_am
1770 # emits the contents of tests makefile to standard output.
1771 # Input:
1772 # - local_gnulib_dir  from --local-dir
1773 # - modules         list of modules, including dependencies
1774 # - libname         library name
1775 # - makefile_name   from --makefile-name
1776 # - libtool         true if libtool will be used, false or blank otherwise
1777 # - sourcebase      relative directory containing lib source code
1778 # - m4base          relative directory containing autoconf macros
1779 # - testsbase       relative directory containing unit test code
1780 # - for_test        true if creating a package for testing, false otherwise
1781 func_emit_tests_Makefile_am ()
1782 {
1783   if test "$libtool" = true; then
1784     libext=la
1785   else
1786     libext=a
1787   fi
1788   if test "$libtool" = true; then
1789     libext=la
1790     sed_eliminate_LDFLAGS=
1791   else
1792     libext=a
1793     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1794   fi
1795   if $for_test; then
1796     # When creating a package for testing: Attempt to provoke failures,
1797     # especially link errors, already during "make" rather than during
1798     # "make check", because "make check" is not possible in a cross-compiling
1799     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
1800     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
1801   else
1802     sed_transform_check_PROGRAMS=
1803   fi
1804   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
1805   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1806   echo "## Process this file with automake to produce Makefile.in."
1807   func_emit_copyright_notice
1808   echo
1809   # Generate dependencies here, since it eases the debugging of test failures.
1810   echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1811   echo
1812   echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
1813   echo
1814   (
1815     for module in $modules; do
1816       func_verify_tests_module
1817       if test -n "$module"; then
1818         {
1819           func_get_automake_snippet "$module" |
1820             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1821                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
1822                 -e "$sed_eliminate_LDFLAGS" \
1823                 -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \
1824                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1825                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
1826                 -e "$sed_transform_check_PROGRAMS"
1827         } > amsnippet.tmp
1828         # Skip the contents if its entirely empty.
1829         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1830           echo "## begin gnulib module $module"
1831           echo
1832           cat amsnippet.tmp
1833           echo "## end   gnulib module $module"
1834           echo
1835         fi
1836         rm -f amsnippet.tmp
1837       fi
1838     done
1839   ) > allsnippets.tmp
1840   # Nothing is being added to SUBDIRS; nevertheless the existence of this
1841   # variable is needed to avoid an error from automake:
1842   #   "AM_GNU_GETTEXT used but SUBDIRS not defined"
1843   echo "SUBDIRS ="
1844   echo "TESTS ="
1845   echo "TESTS_ENVIRONMENT ="
1846   echo "noinst_PROGRAMS ="
1847   if ! $for_test; then
1848     echo "check_PROGRAMS ="
1849   fi
1850   echo "noinst_HEADERS ="
1851   if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1852     echo "pkgdata_DATA ="
1853   fi
1854   echo "EXTRA_DIST ="
1855   echo "BUILT_SOURCES ="
1856   echo "SUFFIXES ="
1857   echo "MOSTLYCLEANFILES = core *.stackdump"
1858   echo "MOSTLYCLEANDIRS ="
1859   echo "CLEANFILES ="
1860   echo "DISTCLEANFILES ="
1861   echo "MAINTAINERCLEANFILES ="
1862   echo
1863   echo "AM_CPPFLAGS = \\"
1864   echo "  -I. -I\$(srcdir) \\"
1865   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
1866   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
1867   echo
1868   echo "LDADD = ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}"
1869   echo
1870   cat allsnippets.tmp
1871   echo "# Clean up after Solaris cc."
1872   echo "clean-local:"
1873   echo "        rm -rf SunWS_cache"
1874   echo
1875   echo "mostlyclean-local: mostlyclean-generic"
1876   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1877   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1878   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1879   echo "          fi; \\"
1880   echo "        done; \\"
1881   echo "        :"
1882   rm -f allsnippets.tmp
1883 }
1884
1885 # func_emit_initmacro_start
1886 # emits the first few statements of the gl_INIT macro to standard output.
1887 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1888 func_emit_initmacro_start ()
1889 {
1890   # Overriding AC_LIBOBJ and AC_REPLACE_FUNCS has the effect of storing
1891   # platform-dependent object files in ${macro_prefix}_LIBOBJS instead of
1892   # LIBOBJS.  The purpose is to allow several gnulib instantiations under
1893   # a single configure.ac file.  (AC_CONFIG_LIBOBJ_DIR does not allow this
1894   # flexibility.)
1895   # Furthermore it avoids an automake error like this when a Makefile.am
1896   # that uses pieces of gnulib also uses $(LIBOBJ):
1897   #   automatically discovered file `error.c' should not be explicitly mentioned
1898   echo "  m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix}_LIBOBJ]))"
1899   echo "  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix}_REPLACE_FUNCS]))"
1900   # Overriding AC_LIBSOURCES has the same purpose of avoiding the automake
1901   # error when a Makefile.am that uses pieces of gnulib also uses $(LIBOBJ):
1902   #   automatically discovered file `error.c' should not be explicitly mentioned
1903   # We let automake know about the files to be distributed through the
1904   # EXTRA_lib_SOURCES variable.
1905   echo "  m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix}_LIBSOURCES]))"
1906 }
1907
1908 # func_emit_initmacro_end
1909 # emits the last few statements of the gl_INIT macro to standard output.
1910 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1911 func_emit_initmacro_end ()
1912 {
1913   echo "  m4_popdef([AC_LIBSOURCES])"
1914   echo "  m4_popdef([AC_REPLACE_FUNCS])"
1915   echo "  m4_popdef([AC_LIBOBJ])"
1916   echo "  AC_CONFIG_COMMANDS_PRE(["
1917   echo "    ${macro_prefix}_libobjs="
1918   echo "    ${macro_prefix}_ltlibobjs="
1919   echo "    if test -n \"\$${macro_prefix}_LIBOBJS\"; then"
1920   echo "      # Remove the extension."
1921   echo "      sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
1922   echo "      for i in \`for i in \$${macro_prefix}_LIBOBJS; do echo \"\$i\"; done | sed \"\$sed_drop_objext\" | sort | uniq\`; do"
1923   echo "        ${macro_prefix}_libobjs=\"\$${macro_prefix}_libobjs \$i.\$ac_objext\""
1924   echo "        ${macro_prefix}_ltlibobjs=\"\$${macro_prefix}_ltlibobjs \$i.lo\""
1925   echo "      done"
1926   echo "    fi"
1927   echo "    AC_SUBST([${macro_prefix}_LIBOBJS], [\$${macro_prefix}_libobjs])"
1928   echo "    AC_SUBST([${macro_prefix}_LTLIBOBJS], [\$${macro_prefix}_ltlibobjs])"
1929   echo "  ])"
1930 }
1931
1932 # func_emit_initmacro_done
1933 # emits a few statements after the gl_INIT macro to standard output.
1934 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1935 # - sourcebase      directory relative to destdir where to place source code
1936 func_emit_initmacro_done ()
1937 {
1938   echo
1939   echo "# Like AC_LIBOBJ, except that the module name goes"
1940   echo "# into ${macro_prefix}_LIBOBJS instead of into LIBOBJS."
1941   echo "AC_DEFUN([${macro_prefix}_LIBOBJ], ["
1942   echo "  AS_LITERAL_IF([\$1], [${macro_prefix}_LIBSOURCES([\$1.c])])dnl"
1943   echo "  ${macro_prefix}_LIBOBJS=\"\$${macro_prefix}_LIBOBJS \$1.\$ac_objext\""
1944   echo "])"
1945   echo
1946   echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
1947   echo "# into ${macro_prefix}_LIBOBJS instead of into LIBOBJS."
1948   echo "AC_DEFUN([${macro_prefix}_REPLACE_FUNCS], ["
1949   echo "  m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl"
1950   echo "  AC_CHECK_FUNCS([\$1], , [${macro_prefix}_LIBOBJ(\$ac_func)])"
1951   echo "])"
1952   echo
1953   echo "# Like AC_LIBSOURCES, except check for typos now."
1954   echo "# We rely on EXTRA_lib..._SOURCES instead."
1955   echo "AC_DEFUN([${macro_prefix}_LIBSOURCES], ["
1956   echo "  m4_foreach([_gl_NAME], [\$1], ["
1957   echo "    m4_syscmd([test -r $sourcebase/]_gl_NAME[ || test ! -d $sourcebase])dnl"
1958   echo "    m4_if(m4_sysval, [0], [],"
1959   echo "      [AC_FATAL([missing $sourcebase/]_gl_NAME)])"
1960   echo "  ])"
1961   echo "])"
1962 }
1963
1964 # func_import modules
1965 # Uses also the variables
1966 # - destdir         target directory
1967 # - local_gnulib_dir  from --local-dir
1968 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
1969 # - libname         library name
1970 # - sourcebase      directory relative to destdir where to place source code
1971 # - m4base          directory relative to destdir where to place *.m4 macros
1972 # - pobase          directory relative to destdir where to place *.po files
1973 # - docbase         directory relative to destdir where to place doc files
1974 # - testsbase       directory relative to destdir where to place unit test code
1975 # - auxdir          directory relative to destdir where to place build aux files
1976 # - inctests        true if --with-tests was given, blank otherwise
1977 # - avoidlist       list of modules to avoid, from --avoid
1978 # - lgpl            true if library's license shall be LGPL, blank otherwise
1979 # - makefile_name   from --makefile-name
1980 # - libtool         true if --libtool was given, false if --no-libtool was
1981 #                   given, blank otherwise
1982 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
1983 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1984 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
1985 # - autoconf_minversion  minimum supported autoconf version
1986 # - doit            : if actions shall be executed, false if only to be printed
1987 # - symbolic        true if files should be symlinked, copied otherwise
1988 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
1989 #                   copied otherwise
1990 # - do_copyrights   true if copyright notices in files should be replaced,
1991 #                   blank otherwise
1992 func_import ()
1993 {
1994   # Get the cached settings.
1995   cached_local_gnulib_dir=
1996   cached_specified_modules=
1997   cached_avoidlist=
1998   cached_sourcebase=
1999   cached_m4base=
2000   cached_pobase=
2001   cached_docbase=
2002   cached_testsbase=
2003   cached_inctests=
2004   cached_libname=
2005   cached_lgpl=
2006   cached_makefile_name=
2007   cached_libtool=
2008   cached_macro_prefix=
2009   cached_po_domain=
2010   cached_files=
2011   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
2012     cached_libtool=false
2013     my_sed_traces='
2014       s,#.*$,,
2015       s,^dnl .*$,,
2016       s, dnl .*$,,
2017       /gl_LOCAL_DIR(/ {
2018         s,^.*gl_LOCAL_DIR([[ ]*\([^])]*\).*$,cached_local_gnulib_dir="\1",p
2019       }
2020       /gl_MODULES(/ {
2021         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
2022       }
2023       /gl_AVOID(/ {
2024         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
2025       }
2026       /gl_SOURCE_BASE(/ {
2027         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
2028       }
2029       /gl_M4_BASE(/ {
2030         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
2031       }
2032       /gl_PO_BASE(/ {
2033         s,^.*gl_PO_BASE([[ ]*\([^])]*\).*$,cached_pobase="\1",p
2034       }
2035       /gl_DOC_BASE(/ {
2036         s,^.*gl_DOC_BASE([[ ]*\([^])]*\).*$,cached_docbase="\1",p
2037       }
2038       /gl_TESTS_BASE(/ {
2039         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
2040       }
2041       /gl_WITH_TESTS/ {
2042         s,^.*$,cached_inctests=true,p
2043       }
2044       /gl_LIB(/ {
2045         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
2046       }
2047       /gl_LGPL/ {
2048         s,^.*$,cached_lgpl=true,p
2049       }
2050       /gl_MAKEFILE_NAME(/ {
2051         s,^.*gl_MAKEFILE_NAME([[ ]*\([^])]*\).*$,cached_makefile_name="\1",p
2052       }
2053       /gl_LIBTOOL/ {
2054         s,^.*$,cached_libtool=true,p
2055       }
2056       /gl_MACRO_PREFIX(/ {
2057         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
2058       }
2059       /gl_PO_DOMAIN(/ {
2060         s,^.*gl_PO_DOMAIN([[ ]*\([^])]*\).*$,cached_po_domain="\1",p
2061       }'
2062     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
2063     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
2064       my_sed_traces='
2065         s,#.*$,,
2066         s,^dnl .*$,,
2067         s, dnl .*$,,
2068         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
2069           s,^.*$,cached_files=",p
2070           n
2071           ta
2072           :a
2073           s,^\]).*$,",
2074           tb
2075           p
2076           n
2077           ba
2078           :b
2079           p
2080         }'
2081       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
2082     fi
2083   fi
2084
2085   # Merge the cached settings with the specified ones.
2086   # The m4base must be the same as expected from the pathname.
2087   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
2088     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
2089   fi
2090   # The local_gnulib_dir defaults to the cached one. Recall that the cached one
2091   # is relative to $destdir, whereas the one we use is relative to . or absolute.
2092   if test -z "$local_gnulib_dir"; then
2093     if test -n "$cached_local_gnulib_dir"; then
2094       case "$destdir" in
2095         /*)
2096           local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2097         *)
2098           case "$cached_local_gnulib_dir" in
2099             /*)
2100               local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2101             *)
2102               func_relconcat "$destdir" "$cached_local_gnulib_dir"
2103               local_gnulib_dir="$relconcat" ;;
2104           esac ;;
2105       esac
2106     fi
2107   fi
2108   # Append the cached and the specified module names. So that
2109   # "gnulib-tool --import foo" means to add the module foo.
2110   specified_modules="$cached_specified_modules $1"
2111   # Append the cached and the specified avoidlist. This is probably better
2112   # than dropping the cached one when --avoid is specified at least once.
2113   avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
2114   avoidlist=`echo $avoidlist`
2115
2116   # The sourcebase defaults to the cached one.
2117   if test -z "$sourcebase"; then
2118     sourcebase="$cached_sourcebase"
2119     if test -z "$sourcebase"; then
2120       func_fatal_error "missing --source-base option"
2121     fi
2122   fi
2123   # The pobase defaults to the cached one.
2124   if test -z "$pobase"; then
2125     pobase="$cached_pobase"
2126   fi
2127   # The docbase defaults to the cached one.
2128   if test -z "$docbase"; then
2129     docbase="$cached_docbase"
2130     if test -z "$docbase"; then
2131       func_fatal_error "missing --doc-base option. --doc-base has been introduced on 2006-07-11; if your last invocation of 'gnulib-tool --import' is before that date, you need to run 'gnulib-tool --import' once, with a --doc-base option."
2132     fi
2133   fi
2134   # The testsbase defaults to the cached one.
2135   if test -z "$testsbase"; then
2136     testsbase="$cached_testsbase"
2137     if test -z "$testsbase"; then
2138       func_fatal_error "missing --tests-base option"
2139     fi
2140   fi
2141   # Require the tests if specified either way.
2142   if test -z "$inctests"; then
2143     inctests="$cached_inctests"
2144   fi
2145   # The libname defaults to the cached one.
2146   if test -z "$supplied_libname"; then
2147     libname="$cached_libname"
2148     if test -z "$libname"; then
2149       func_fatal_error "missing --lib option"
2150     fi
2151   fi
2152   # Require LGPL if specified either way.
2153   if test -z "$lgpl"; then
2154     lgpl="$cached_lgpl"
2155   fi
2156   # The makefile_name defaults to the cached one.
2157   if test -z "$makefile_name"; then
2158     makefile_name="$cached_makefile_name"
2159   fi
2160   # Use libtool if specified either way, or if guessed.
2161   if test -z "$libtool"; then
2162     if test -n "$cached_m4base"; then
2163       libtool="$cached_libtool"
2164     else
2165       libtool="$guessed_libtool"
2166     fi
2167   fi
2168   # The macro_prefix defaults to the cached one.
2169   if test -z "$macro_prefix"; then
2170     macro_prefix="$cached_macro_prefix"
2171     if test -z "$macro_prefix"; then
2172       func_fatal_error "missing --macro-prefix option"
2173     fi
2174   fi
2175   # The po_domain defaults to the cached one.
2176   if test -z "$po_domain"; then
2177     po_domain="$cached_po_domain"
2178   fi
2179
2180   # Canonicalize the list of specified modules.
2181   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
2182
2183   # Determine final module list.
2184   modules="$specified_modules"
2185   func_modules_transitive_closure
2186   if test $verbose -ge 0; then
2187     echo "Module list with included dependencies:"
2188     echo "$modules" | sed -e 's/^/  /'
2189   fi
2190
2191   # Add the dummy module if needed.
2192   func_modules_add_dummy
2193
2194   # If --lgpl, verify that the licenses of modules are compatible.
2195   if test -n "$lgpl"; then
2196     for module in $modules; do
2197       license=`func_get_license $module`
2198       case $license in
2199         LGPL | LGPLv2+ | 'GPLed build tool') ;;
2200         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
2201         *) func_fatal_error "incompatible license on module $module: $license" ;;
2202       esac
2203     done
2204   fi
2205
2206   # Show banner notice of every module.
2207   func_modules_notice
2208
2209   # Determine script to apply to imported library files.
2210   sed_transform_lib_file=
2211   for module in $modules; do
2212     if test $module = config-h; then
2213       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
2214       sed_transform_lib_file=$sed_transform_lib_file'
2215         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
2216       '
2217       break
2218     fi
2219   done
2220   if test -n "$do_copyrights"; then
2221     if test -n "$lgpl"; then
2222       # Update license.
2223       sed_transform_lib_file=$sed_transform_lib_file'
2224         s/GNU General/GNU Lesser General/g
2225         s/version 2\([ ,]\)/version 2.1\1/g
2226       '
2227     fi
2228   fi
2229
2230   # Determine final file list.
2231   func_modules_to_filelist
2232   if test $verbose -ge 0; then
2233     echo "File list:"
2234     echo "$files" | sed -e 's/^/  /'
2235   fi
2236
2237   test -n "$files" \
2238     || func_fatal_error "refusing to do nothing"
2239
2240   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
2241   new_files="$files m4/gnulib-tool.m4"
2242   old_files="$cached_files"
2243   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
2244     func_append old_files " m4/gnulib-tool.m4"
2245   fi
2246
2247   sed_rewrite_old_files="\
2248     s,^build-aux/,$auxdir/,
2249     s,^doc/,$cached_docbase/,
2250     s,^lib/,$cached_sourcebase/,
2251     s,^m4/,$cached_m4base/,
2252     s,^tests/,$cached_testsbase/,"
2253   sed_rewrite_new_files="\
2254     s,^build-aux/,$auxdir/,
2255     s,^doc/,$docbase/,
2256     s,^lib/,$sourcebase/,
2257     s,^m4/,$m4base/,
2258     s,^tests/,$testsbase/,"
2259
2260   # Create directories.
2261   { echo "$sourcebase"
2262     echo "$m4base"
2263     if test -n "$pobase"; then
2264       echo "$pobase"
2265     fi
2266     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
2267     if test -n "$docfiles"; then
2268       echo "$docbase"
2269     fi
2270     if test -n "$inctests"; then
2271       echo "$testsbase"
2272     fi
2273     echo "$auxdir"
2274     for f in $files; do echo $f; done \
2275       | sed -e "$sed_rewrite_new_files" \
2276       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
2277       | LC_ALL=C sort -u
2278   } > "$tmp"/dirs
2279   { # Rearrange file descriptors. Needed because "while ... done < ..."
2280     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2281     exec 5<&0 < "$tmp"/dirs
2282     while read d; do
2283       if test ! -d "$destdir/$d"; then
2284         if $doit; then
2285           echo "Creating directory $destdir/$d"
2286           mkdir -p "$destdir/$d" || func_fatal_error "failed"
2287         else
2288           echo "Create directory $destdir/$d"
2289         fi
2290       fi
2291     done
2292     exec 0<&5 5<&-
2293   }
2294
2295   # func_dest_tmpfilename file
2296   # determines the name of a temporary file (file is relative to destdir).
2297   # Sets variable:
2298   #   - tmpfile       absolute filename of the temporary file
2299   func_dest_tmpfilename ()
2300   {
2301     if $doit; then
2302       # Put the new contents of $file in a file in the same directory (needed
2303       # to guarantee that an 'mv' to "$destdir/$file" works).
2304       tmpfile="$destdir/$1.tmp"
2305     else
2306       # Put the new contents of $file in a file in a temporary directory
2307       # (because the directory of "$file" might not exist).
2308       tmpfile="$tmp"/`basename "$1"`.tmp
2309     fi
2310   }
2311
2312   # Copy files or make symbolic links. Remove obsolete files.
2313   added_files=''
2314   removed_files=''
2315   delimiter='   '
2316   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2317   # representing the files according to the last gnulib-tool invocation.
2318   for f in $old_files; do echo $f; done \
2319     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
2320     | LC_ALL=C sort \
2321     > "$tmp"/old-files
2322   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2323   # representing the files after this gnulib-tool invocation.
2324   for f in $new_files; do echo $f; done \
2325     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
2326     | LC_ALL=C sort \
2327     > "$tmp"/new-files
2328   # First the files that are in old-files, but not in new-files:
2329   sed_take_first_column='s,'"$delimiter"'.*,,'
2330   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
2331     # Remove the file. Do nothing if the user already removed it.
2332     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
2333       if $doit; then
2334         echo "Removing file $g (backup in ${g}~)"
2335         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2336       else
2337         echo "Remove file $g (backup in ${g}~)"
2338       fi
2339       func_append removed_files "$g$nl"
2340     fi
2341   done
2342   # func_add_or_update handles a file that ought to be present afterwards.
2343   # Uses parameters
2344   # - f             the original file name
2345   # - g             the rewritten file name
2346   # - already_present  nonempty if the file already exists, empty otherwise
2347   func_add_or_update ()
2348   {
2349     func_dest_tmpfilename "$g"
2350     func_lookup_file "$f"
2351     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
2352     if test -n "$sed_transform_lib_file"; then
2353       case "$f" in
2354         lib/*)
2355           sed -e "$sed_transform_lib_file" \
2356             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
2357           ;;
2358       esac
2359     fi
2360     if test -f "$destdir/$g"; then
2361       # The file already exists.
2362       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
2363         : # The file has not changed.
2364       else
2365         # Replace the file.
2366         if $doit; then
2367           if test -n "$already_present"; then
2368             echo "Updating file $g (backup in ${g}~)"
2369           else
2370             echo "Replacing file $g (non-gnulib code backuped in ${g}~) !!"
2371           fi
2372           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2373           if { test -n "$symbolic" \
2374                || { test -n "$lsymbolic" \
2375                     && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2376              && test -z "$lookedup_tmp" \
2377              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2378             func_ln_if_changed "$lookedup_file" "$destdir/$g"
2379           else
2380             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2381           fi
2382         else
2383           if test -n "$already_present"; then
2384             echo "Update file $g (backup in ${g}~)"
2385           else
2386             echo "Replace file $g (non-gnulib code backuped in ${g}~) !!"
2387           fi
2388         fi
2389       fi
2390     else
2391       # Install the file.
2392       # Don't protest if the file should be there but isn't: it happens
2393       # frequently that developers don't put autogenerated files into CVS.
2394       if $doit; then
2395         echo "Copying file $g"
2396         if { test -n "$symbolic" \
2397              || { test -n "$lsymbolic" \
2398                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2399            && test -z "$lookedup_tmp" \
2400            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2401           func_ln_if_changed "$lookedup_file" "$destdir/$g"
2402         else
2403           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2404         fi
2405       else
2406         echo "Copy file $g"
2407       fi
2408       func_append added_files "$g$nl"
2409     fi
2410     rm -f "$tmpfile"
2411   }
2412   # Then the files that are in new-files, but not in old-files:
2413   sed_take_last_column='s,^.*'"$delimiter"',,'
2414   already_present=
2415   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
2416     | sed -e "$sed_take_last_column" \
2417     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
2418   { # Rearrange file descriptors. Needed because "while ... done < ..."
2419     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2420     exec 5<&0 < "$tmp"/added-files
2421     while read g f; do
2422       func_add_or_update
2423     done
2424     exec 0<&5 5<&-
2425   }
2426   # Then the files that are in new-files and in old-files:
2427   already_present=true
2428   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
2429     | sed -e "$sed_take_last_column" \
2430     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
2431   { # Rearrange file descriptors. Needed because "while ... done < ..."
2432     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2433     exec 5<&0 < "$tmp"/kept-files
2434     while read g f; do
2435       func_add_or_update
2436     done
2437     exec 0<&5 5<&-
2438   }
2439
2440   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
2441   actioncmd="gnulib-tool --import"
2442   func_append actioncmd " --dir=$destdir"
2443   if test -n "$local_gnulib_dir"; then
2444     func_append actioncmd " --local-dir=$local_gnulib_dir"
2445   fi
2446   func_append actioncmd " --lib=$libname"
2447   func_append actioncmd " --source-base=$sourcebase"
2448   func_append actioncmd " --m4-base=$m4base"
2449   if test -n "$pobase"; then
2450     func_append actioncmd " --po-base=$pobase"
2451   fi
2452   func_append actioncmd " --doc-base=$docbase"
2453   func_append actioncmd " --aux-dir=$auxdir"
2454   if test -n "$inctests"; then
2455     func_append actioncmd " --with-tests"
2456   fi
2457   for module in $avoidlist; do
2458     func_append actioncmd " --avoid=$module"
2459   done
2460   if test -n "$lgpl"; then
2461     func_append actioncmd " --lgpl"
2462   fi
2463   if test -n "$makefile_name"; then
2464     func_append actioncmd " --makefile-name=$makefile_name"
2465   fi
2466   if test "$libtool" = true; then
2467     func_append actioncmd " --libtool"
2468   else
2469     func_append actioncmd " --no-libtool"
2470   fi
2471   func_append actioncmd " --macro-prefix=$macro_prefix"
2472   if test -n "$po_domain"; then
2473     func_append actioncmd " --po-domain=$po_domain"
2474   fi
2475   func_append actioncmd " `echo $specified_modules`"
2476
2477   # Default the makefile name to Makefile.am.
2478   if test -n "$makefile_name"; then
2479     makefile_am=$makefile_name
2480   else
2481     makefile_am=Makefile.am
2482   fi
2483
2484   # Create normal Makefile.ams.
2485   for_test=false
2486
2487   # Create library makefile.
2488   func_dest_tmpfilename $sourcebase/$makefile_am
2489   func_emit_lib_Makefile_am > "$tmpfile"
2490   if test -f "$destdir"/$sourcebase/$makefile_am; then
2491     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
2492       rm -f "$tmpfile"
2493     else
2494       if $doit; then
2495         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2496         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
2497         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2498       else
2499         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2500         rm -f "$tmpfile"
2501       fi
2502     fi
2503   else
2504     if $doit; then
2505       echo "Creating $sourcebase/$makefile_am"
2506       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2507     else
2508       echo "Create $sourcebase/$makefile_am"
2509       rm -f "$tmpfile"
2510     fi
2511     func_append added_files "$sourcebase/$makefile_am$nl"
2512   fi
2513
2514   # Create po/ directory.
2515   if test -n "$pobase"; then
2516     # Create po makefile and auxiliary files.
2517     for file in Makefile.in.in remove-potcdate.sin; do
2518       func_dest_tmpfilename $pobase/$file
2519       func_lookup_file build-aux/po/$file
2520       cat "$lookedup_file" > "$tmpfile"
2521       if test -f "$destdir"/$pobase/$file; then
2522         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
2523           rm -f "$tmpfile"
2524         else
2525           if $doit; then
2526             echo "Updating $pobase/$file (backup in $pobase/$file~)"
2527             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
2528             mv -f "$tmpfile" "$destdir"/$pobase/$file
2529           else
2530             echo "Update $pobase/$file (backup in $pobase/$file~)"
2531             rm -f "$tmpfile"
2532           fi
2533         fi
2534       else
2535         if $doit; then
2536           echo "Creating $pobase/$file"
2537           mv -f "$tmpfile" "$destdir"/$pobase/$file
2538         else
2539           echo "Create $pobase/$file"
2540           rm -f "$tmpfile"
2541         fi
2542         func_append added_files "$pobase/$file$nl"
2543       fi
2544     done
2545     # Create po makefile parametrization, part 1.
2546     func_dest_tmpfilename $pobase/Makevars
2547     func_emit_po_Makevars > "$tmpfile"
2548     if test -f "$destdir"/$pobase/Makevars; then
2549       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
2550         rm -f "$tmpfile"
2551       else
2552         if $doit; then
2553           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
2554           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
2555           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2556         else
2557           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
2558           rm -f "$tmpfile"
2559         fi
2560       fi
2561     else
2562       if $doit; then
2563         echo "Creating $pobase/Makevars"
2564         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2565       else
2566         echo "Create $pobase/Makevars"
2567         rm -f "$tmpfile"
2568       fi
2569       func_append added_files "$pobase/Makevars$nl"
2570     fi
2571     # Create po makefile parametrization, part 2.
2572     func_dest_tmpfilename $pobase/POTFILES.in
2573     func_emit_po_POTFILES_in > "$tmpfile"
2574     if test -f "$destdir"/$pobase/POTFILES.in; then
2575       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
2576         rm -f "$tmpfile"
2577       else
2578         if $doit; then
2579           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2580           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
2581           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2582         else
2583           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2584           rm -f "$tmpfile"
2585         fi
2586       fi
2587     else
2588       if $doit; then
2589         echo "Creating $pobase/POTFILES.in"
2590         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2591       else
2592         echo "Create $pobase/POTFILES.in"
2593         rm -f "$tmpfile"
2594       fi
2595       func_append added_files "$pobase/POTFILES.in$nl"
2596     fi
2597     # Fetch PO files.
2598     TP_URL="http://translationproject.org/latest/"
2599     TP_RSYNC_URI="translationproject.org::tp/latest/"
2600     if $doit; then
2601       echo "Fetching gnulib PO files from $TP_URL"
2602       (cd "$destdir"/$pobase \
2603        && { # Prefer rsync over wget if it is available, since it consumes
2604             # less network bandwidth, due to compression.
2605             if type rsync 2>/dev/null | grep / > /dev/null; then
2606               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
2607             else
2608               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
2609             fi
2610           }
2611       )
2612     else
2613       echo "Fetch gnulib PO files from $TP_URL"
2614     fi
2615     # Create po/LINGUAS.
2616     if $doit; then
2617       func_dest_tmpfilename $pobase/LINGUAS
2618       (cd "$destdir"/$pobase \
2619        && { echo '# Set of available languages.'
2620             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
2621           }
2622       ) > "$tmpfile"
2623       if test -f "$destdir"/$pobase/LINGUAS; then
2624         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
2625           rm -f "$tmpfile"
2626         else
2627           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2628           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
2629           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2630         fi
2631       else
2632         echo "Creating $pobase/LINGUAS"
2633         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2634         func_append added_files "$pobase/LINGUAS$nl"
2635       fi
2636     else
2637       if test -f "$destdir"/$pobase/LINGUAS; then
2638         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2639       else
2640         echo "Create $pobase/LINGUAS"
2641       fi
2642     fi
2643   fi
2644
2645   # Create m4/gnulib-cache.m4.
2646   func_dest_tmpfilename $m4base/gnulib-cache.m4
2647   (
2648     func_emit_copyright_notice
2649     echo "#"
2650     echo "# This file represents the specification of how gnulib-tool is used."
2651     echo "# It acts as a cache: It is written and read by gnulib-tool."
2652     echo "# In projects using CVS, this file is meant to be stored in CVS,"
2653     echo "# like the configure.ac and various Makefile.am files."
2654     echo
2655     echo
2656     echo "# Specification in the form of a command-line invocation:"
2657     echo "#   $actioncmd"
2658     echo
2659     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
2660     # Store the local_gnulib_dir relative to destdir.
2661     case "$local_gnulib_dir" in
2662       "" | /*)
2663         relative_local_gnulib_dir="$local_gnulib_dir" ;;
2664       * )
2665         case "$destdir" in
2666           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
2667           *)
2668             # destdir, local_gnulib_dir are both relative.
2669             func_relativize "$destdir" "$local_gnulib_dir"
2670             relative_local_gnulib_dir="$reldir" ;;
2671         esac ;;
2672     esac
2673     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
2674     echo "gl_MODULES(["`echo $specified_modules`"])"
2675     echo "gl_AVOID([$avoidlist])"
2676     echo "gl_SOURCE_BASE([$sourcebase])"
2677     echo "gl_M4_BASE([$m4base])"
2678     echo "gl_PO_BASE([$pobase])"
2679     echo "gl_DOC_BASE([$docbase])"
2680     echo "gl_TESTS_BASE([$testsbase])"
2681     test -z "$inctests" || echo "gl_WITH_TESTS"
2682     echo "gl_LIB([$libname])"
2683     test -z "$lgpl" || echo "gl_LGPL"
2684     echo "gl_MAKEFILE_NAME([$makefile_name])"
2685     if test "$libtool" = true; then
2686       echo "gl_LIBTOOL"
2687     fi
2688     echo "gl_MACRO_PREFIX([$macro_prefix])"
2689     echo "gl_PO_DOMAIN([$po_domain])"
2690   ) > "$tmpfile"
2691   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
2692     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
2693       rm -f "$tmpfile"
2694     else
2695       if $doit; then
2696         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
2697         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
2698         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
2699       else
2700         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
2701         if false; then
2702           cat "$tmpfile"
2703           echo
2704           echo "# gnulib-cache.m4 ends here"
2705         fi
2706         rm -f "$tmpfile"
2707       fi
2708     fi
2709   else
2710     if $doit; then
2711       echo "Creating $m4base/gnulib-cache.m4"
2712       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
2713     else
2714       echo "Create $m4base/gnulib-cache.m4"
2715       cat "$tmpfile"
2716       rm -f "$tmpfile"
2717     fi
2718   fi
2719
2720   # Create m4/gnulib-comp.m4.
2721   func_dest_tmpfilename $m4base/gnulib-comp.m4
2722   (
2723     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
2724     func_emit_copyright_notice
2725     echo "#"
2726     echo "# This file represents the compiled summary of the specification in"
2727     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
2728     echo "# to be invoked from configure.ac."
2729     echo "# In projects using CVS, this file can be treated like other built files."
2730     echo
2731     echo
2732     echo "# This macro should be invoked from $configure_ac, in the section"
2733     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
2734     echo "# any checks for libraries, header files, types and library functions."
2735     echo "AC_DEFUN([${macro_prefix}_EARLY],"
2736     echo "["
2737     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
2738     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
2739     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
2740     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
2741     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
2742     if test -n "$uses_subdirs"; then
2743       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
2744     fi
2745     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
2746       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
2747     fi
2748     for module in $modules; do
2749       func_verify_module
2750       if test -n "$module"; then
2751         func_get_autoconf_early_snippet "$module"
2752       fi
2753     done \
2754       | sed -e '/^$/d;' -e 's/^/  /'
2755     echo "])"
2756     echo
2757     echo "# This macro should be invoked from $configure_ac, in the section"
2758     echo "# \"Check for header files, types and library functions\"."
2759     echo "AC_DEFUN([${macro_prefix}_INIT],"
2760     echo "["
2761     func_emit_initmacro_start
2762     if test "$libtool" = true; then
2763       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2764       echo "  gl_cond_libtool=true"
2765     else
2766       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2767       echo "  gl_cond_libtool=false"
2768       echo "  gl_libdeps="
2769       echo "  gl_ltlibdeps="
2770     fi
2771     echo "  gl_source_base='$sourcebase'"
2772     if test "$auxdir" != "build-aux"; then
2773       sed_replace_build_aux='
2774         :a
2775         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2776           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
2777           ba
2778         }'
2779     else
2780       sed_replace_build_aux=
2781     fi
2782     for module in $modules; do
2783       func_verify_module
2784       if test -n "$module"; then
2785         func_get_autoconf_snippet "$module" \
2786           | sed -e '/^$/d;' -e 's/^/  /' \
2787                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
2788                 -e "$sed_replace_build_aux"
2789         if test "$module" = 'alloca' && test "$libtool" = true; then
2790           echo 'changequote(,)dnl'
2791           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
2792           echo 'changequote([, ])dnl'
2793           echo 'AC_SUBST([LTALLOCA])'
2794         fi
2795       fi
2796     done
2797     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
2798     # created using libtool, because libtool already handles the dependencies.
2799     if test "$libtool" != true; then
2800       libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
2801       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
2802       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
2803       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
2804       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
2805     fi
2806     func_emit_initmacro_end
2807     echo "])"
2808     func_emit_initmacro_done
2809     echo
2810     echo "# This macro records the list of files which have been installed by"
2811     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
2812     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
2813     echo "$files" | sed -e 's,^,  ,'
2814     echo "])"
2815   ) > "$tmpfile"
2816   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
2817     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
2818       rm -f "$tmpfile"
2819     else
2820       if $doit; then
2821         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
2822         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
2823         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
2824       else
2825         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
2826         if false; then
2827           cat "$tmpfile"
2828           echo
2829           echo "# gnulib-comp.m4 ends here"
2830         fi
2831         rm -f "$tmpfile"
2832       fi
2833     fi
2834   else
2835     if $doit; then
2836       echo "Creating $m4base/gnulib-comp.m4"
2837       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
2838     else
2839       echo "Create $m4base/gnulib-comp.m4"
2840       cat "$tmpfile"
2841       rm -f "$tmpfile"
2842     fi
2843   fi
2844
2845   if test -n "$inctests"; then
2846     # Create tests makefile.
2847     func_dest_tmpfilename $testsbase/$makefile_am
2848     func_emit_tests_Makefile_am > "$tmpfile"
2849     if test -f "$destdir"/$testsbase/$makefile_am; then
2850       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
2851         rm -f "$tmpfile"
2852       else
2853         if $doit; then
2854           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
2855           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
2856           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
2857         else
2858           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
2859           rm -f "$tmpfile"
2860         fi
2861       fi
2862     else
2863       if $doit; then
2864         echo "Creating $testsbase/$makefile_am"
2865         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
2866       else
2867         echo "Create $testsbase/$makefile_am"
2868         rm -f "$tmpfile"
2869       fi
2870     func_append added_files "$testsbase/$makefile_am$nl"
2871     fi
2872   fi
2873
2874   # Update the .cvsignore and .gitignore files.
2875   { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
2876     echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
2877   } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
2878   { # Rearrange file descriptors. Needed because "while ... done < ..."
2879     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2880     exec 5<&0 < "$tmp"/fileset-changes
2881     func_update_ignorelist ()
2882     {
2883       ignore="$1"
2884       if test -f "$destdir/$dir$ignore"; then
2885         if test -n "$dir_added" || test -n "$dir_removed"; then
2886           LC_ALL=C sort "$destdir/$dir$ignore" > "$tmp"/ignore
2887           echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
2888             | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-added
2889           echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
2890             | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-removed
2891           if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
2892             if $doit; then
2893               echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
2894               mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
2895               sed -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed > "$tmp"/sed-ignore-removed
2896               cat "$destdir/$dir$ignore"~ "$tmp"/ignore-added \
2897                 | sed -f "$tmp"/sed-ignore-removed \
2898                 > "$destdir/$dir$ignore"
2899             else
2900               echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
2901             fi
2902           fi
2903         fi
2904       else
2905         if test -n "$dir_added"; then
2906           if $doit; then
2907             echo "Creating $destdir/$dir$ignore"
2908             {
2909               if test "$ignore" = .cvsignore; then
2910                 echo ".deps"
2911                 # Automake generates Makefile rules that create .dirstamp files.
2912                 echo ".dirstamp"
2913               fi
2914               echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u
2915             } > "$destdir/$dir$ignore"
2916           else
2917             echo "Create $destdir/$dir$ignore"
2918           fi
2919         fi
2920       fi
2921     }
2922     func_done_dir ()
2923     {
2924       dir="$1"
2925       dir_added="$2"
2926       dir_removed="$3"
2927       if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
2928         func_update_ignorelist .cvsignore
2929       fi
2930       if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
2931         func_update_ignorelist .gitignore
2932       fi
2933     }
2934     last_dir=
2935     last_dir_added=
2936     last_dir_removed=
2937     while read line; do
2938       # Why not ''read next_dir op file'' ? Because the dir column can be empty.
2939       next_dir=`echo "$line" | sed -e 's,|.*,,'`
2940       op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
2941       file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
2942       if test "$next_dir" != "$last_dir"; then
2943         func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
2944         last_dir="$next_dir"
2945         last_dir_added=
2946         last_dir_removed=
2947       fi
2948       case $op in
2949         A) func_append last_dir_added "$file$nl";;
2950         R) func_append last_dir_removed "$file$nl";;
2951       esac
2952     done
2953     func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
2954     exec 0<&5 5<&-
2955   }
2956
2957   echo "Finished."
2958   echo
2959   echo "You may need to add #include directives for the following .h files."
2960   # Intersect $specified_modules and $modules
2961   # (since $specified_modules is not necessarily of subset of $modules - some
2962   # may have been skipped through --avoid, and since the elements of $modules
2963   # but not in $specified_modules can go away without explicit notice - through
2964   # changes in the module dependencies).
2965   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
2966   echo "$modules" > "$tmp"/modules2 # also a sorted list, one module per line
2967   # First the #include <...> directives without #ifs, sorted for convenience,
2968   # then the #include "..." directives without #ifs, sorted for convenience,
2969   # then the #include directives that are surrounded by #ifs. Not sorted.
2970   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
2971     include_directive=`func_get_include_directive "$module"`
2972     case "$nl$include_directive" in
2973       *"$nl#if"*)
2974         echo "$include_directive" 1>&5
2975         ;;
2976       *)
2977         echo "$include_directive" | grep -v 'include "' 1>&6
2978         echo "$include_directive" | grep 'include "' 1>&7
2979         ;;
2980     esac
2981   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
2982   (
2983    LC_ALL=C sort -u "$tmp"/include-angles
2984    LC_ALL=C sort -u "$tmp"/include-quotes
2985    cat "$tmp"/include-if
2986   ) | sed -e '/^$/d' -e 's/^/  /'
2987   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
2988
2989   for module in $modules; do
2990     func_get_link_directive "$module"
2991   done \
2992     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
2993   if test `wc -l < "$tmp"/link` != 0; then
2994     echo
2995     echo "You may need to use the following Makefile variables when linking."
2996     echo "Use them in <program>_LDADD when linking a program, or"
2997     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
2998     cat "$tmp"/link
2999   fi
3000   rm -f "$tmp"/link
3001
3002   echo
3003   echo "Don't forget to"
3004   if test "$makefile_am" = Makefile.am; then
3005     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3006   else
3007     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
3008   fi
3009   if test -n "$pobase"; then
3010     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
3011   fi
3012   if test -n "$inctests"; then
3013     if test "$makefile_am" = Makefile.am; then
3014       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3015     else
3016       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
3017     fi
3018   fi
3019   if test "$makefile_am" = Makefile.am; then
3020     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
3021     sourcebase_base=`basename "$sourcebase"`
3022     echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
3023   fi
3024   if test -n "$pobase"; then
3025     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
3026     pobase_base=`basename "$pobase"`
3027     echo "  - mention \"${pobase_base}\" in SUBDIRS in ${pobase_dir}Makefile.am,"
3028   fi
3029   if test -n "$inctests"; then
3030     if test "$makefile_am" = Makefile.am; then
3031       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
3032       testsbase_base=`basename "$testsbase"`
3033       echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
3034     fi
3035   fi
3036   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
3037   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
3038   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
3039 }
3040
3041 # func_create_testdir testdir modules
3042 # Input:
3043 # - local_gnulib_dir  from --local-dir
3044 # - auxdir          directory relative to destdir where to place build aux files
3045 func_create_testdir ()
3046 {
3047   testdir="$1"
3048   modules="$2"
3049   if test -z "$modules"; then
3050     # All modules together.
3051     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3052     # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3053     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
3054     modules=`func_all_modules`
3055     modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done`
3056   fi
3057   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
3058
3059   # Check that the license of every module is consistent with the license of
3060   # its dependencies.
3061   saved_modules="$modules"
3062   saved_inctests="$inctests"
3063   # When computing transitive closures, don't consider $module to depend on
3064   # $module-tests. Need this becauses tests are implicitly GPL and may depend
3065   # on GPL modules - therefore we don't want a warning in this case.
3066   inctests=""
3067   for requested_module in $saved_modules; do
3068     requested_license=`func_get_license "$requested_module"`
3069     if test "$requested_license" != GPL; then
3070       # Here we use func_modules_transitive_closure, not just
3071       # func_get_dependencies, so that we also detect weird situations like
3072       # an LGPL module which depends on a GPLed build tool module which depends
3073       # on a GPL module.
3074       modules="$requested_module"
3075       func_modules_transitive_closure
3076       for module in $modules; do
3077         license=`func_get_license "$module"`
3078         case "$license" in
3079           'GPLed build tool') ;;
3080           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
3081           *)
3082             case "$requested_license" in
3083               GPLv2+)
3084                 case "$license" in
3085                   GPLv2+ | LGPLv2+) ;;
3086                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3087                 esac
3088                 ;;
3089               LGPL)
3090                 case "$license" in
3091                   LGPL | LGPLv2+) ;;
3092                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3093                 esac
3094                 ;;
3095               LGPLv2+)
3096                 case "$license" in
3097                   LGPLv2+) ;;
3098                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3099                 esac
3100                 ;;
3101             esac
3102             ;;
3103         esac
3104       done
3105     fi
3106   done
3107   modules="$saved_modules"
3108   inctests="$saved_inctests"
3109
3110   # Subdirectory names.
3111   sourcebase=gllib
3112   m4base=glm4
3113   pobase=
3114   docbase=gldoc
3115   testsbase=gltests
3116   macro_prefix=gl
3117   po_domain=
3118
3119   # Determine final module list.
3120   func_modules_transitive_closure
3121   if test $verbose -ge 0; then
3122     echo "Module list with included dependencies:"
3123     echo "$modules" | sed -e 's/^/  /'
3124   fi
3125
3126   # Add the dummy module if needed.
3127   func_modules_add_dummy
3128
3129   # Show banner notice of every module.
3130   func_modules_notice
3131
3132   # Determine final file list.
3133   func_modules_to_filelist
3134   if test $verbose -ge 0; then
3135     echo "File list:"
3136     echo "$files" | sed -e 's/^/  /'
3137   fi
3138
3139   sed_rewrite_files="\
3140     s,^build-aux/,$auxdir/,
3141     s,^doc/,$docbase/,
3142     s,^lib/,$sourcebase/,
3143     s,^m4/,$m4base/,
3144     s,^tests/,$testsbase/,"
3145
3146   # Create directories.
3147   for f in $files; do echo $f; done \
3148     | sed -e "$sed_rewrite_files" \
3149     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
3150     | LC_ALL=C sort -u \
3151     > "$tmp"/dirs
3152   { # Rearrange file descriptors. Needed because "while ... done < ..."
3153     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3154     exec 5<&0 < "$tmp"/dirs
3155     while read d; do
3156       mkdir -p "$testdir/$d"
3157     done
3158     exec 0<&5 5<&-
3159   }
3160
3161   # Copy files or make symbolic links.
3162   delimiter='   '
3163   for f in $files; do echo $f; done \
3164     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
3165     | LC_ALL=C sort \
3166     > "$tmp"/files
3167   { # Rearrange file descriptors. Needed because "while ... done < ..."
3168     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3169     exec 5<&0 < "$tmp"/files
3170     while read g f; do
3171       func_lookup_file "$f"
3172       if test -n "$lookedup_tmp"; then
3173         cp -p "$lookedup_file" "$testdir/$g"
3174       else
3175         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
3176         if { test -n "$symbolic" \
3177              || { test -n "$lsymbolic" \
3178                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
3179           func_ln "$lookedup_file" "$testdir/$g"
3180         else
3181           cp -p "$lookedup_file" "$testdir/$g"
3182         fi
3183       fi
3184     done
3185     exec 0<&5 5<&-
3186   }
3187
3188   # Create Makefile.ams that are for testing.
3189   for_test=true
3190
3191   # Create $sourcebase/Makefile.am.
3192   mkdir -p "$testdir/$sourcebase"
3193   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
3194
3195   # Create $m4base/Makefile.am.
3196   mkdir -p "$testdir/$m4base"
3197   (echo "## Process this file with automake to produce Makefile.in."
3198    echo
3199    echo "EXTRA_DIST ="
3200    for f in $files; do
3201      case "$f" in
3202        m4/* )
3203          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
3204      esac
3205    done
3206   ) > "$testdir/$m4base/Makefile.am"
3207
3208   subdirs="$sourcebase $m4base"
3209   subdirs_with_configure_ac=""
3210
3211   if false && test -f "$testdir"/$m4base/gettext.m4; then
3212     # Avoid stupid error message from automake:
3213     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
3214     mkdir -p "$testdir/po"
3215     (echo "## Process this file with automake to produce Makefile.in."
3216     ) > "$testdir/po/Makefile.am"
3217     func_append subdirs " po"
3218   fi
3219
3220   if test -n "$inctests"; then
3221     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
3222     # Create $testsbase/Makefile.am.
3223     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
3224     # Create $testsbase/configure.ac.
3225     (echo "# Process this file with autoconf to produce a configure script."
3226      echo "AC_INIT([dummy], [0])"
3227      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
3228      echo "AM_INIT_AUTOMAKE"
3229      echo
3230      echo "AM_CONFIG_HEADER([config.h])"
3231      echo
3232      echo "AC_PROG_CC"
3233      echo "AC_PROG_INSTALL"
3234      echo "AC_PROG_MAKE_SET"
3235      echo "AC_PROG_RANLIB"
3236      echo
3237      if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3238        echo "AC_GNU_SOURCE"
3239        echo
3240      fi
3241      for module in $modules; do
3242        func_verify_module
3243        if test -n "$module"; then
3244          func_get_autoconf_early_snippet "$module"
3245        fi
3246      done \
3247        | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3248      if test "$libtool" = true; then
3249        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3250        echo "gl_cond_libtool=true"
3251      else
3252        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3253        echo "gl_cond_libtool=false"
3254        echo "gl_libdeps="
3255        echo "gl_ltlibdeps="
3256      fi
3257      # Wrap the set of autoconf snippets into an autoconf macro that is then
3258      # invoked. This is needed because autoconf does not support AC_REQUIRE
3259      # at the top level:
3260      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3261      # but we want the AC_REQUIRE to have its normal meaning (provide one
3262      # expansion of the required macro before the current point, and only one
3263      # expansion total).
3264      echo "AC_DEFUN([gl_INIT], ["
3265      func_emit_initmacro_start
3266      sed_replace_build_aux='
3267        :a
3268        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3269          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:../'"$auxdir"'/\2)|
3270          ba
3271        }'
3272      # We don't have explicit ordering constraints between the various
3273      # autoconf snippets. It's cleanest to put those of the library before
3274      # those of the tests.
3275      echo "gl_source_base='../$sourcebase'"
3276      for module in $modules; do
3277        func_verify_nontests_module
3278        if test -n "$module"; then
3279          func_get_autoconf_snippet "$module" \
3280            | sed -e "$sed_replace_build_aux"
3281        fi
3282      done
3283      echo "gl_source_base='.'"
3284      for module in $modules; do
3285        func_verify_tests_module
3286        if test -n "$module"; then
3287          func_get_autoconf_snippet "$module" \
3288            | sed -e "$sed_replace_build_aux"
3289        fi
3290      done
3291      # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3292      # created using libtool, because libtool already handles the dependencies.
3293      if test "$libtool" != true; then
3294        libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3295        echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3296        echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3297        echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3298        echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3299      fi
3300      func_emit_initmacro_end
3301      echo "])"
3302      func_emit_initmacro_done
3303      echo
3304      echo "gl_INIT"
3305      echo
3306      # Usually $testsbase/config.h will be a superset of config.h. Verify this
3307      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
3308      echo "AH_TOP([#include \"../config.h\"])"
3309      echo
3310      echo "AC_OUTPUT([Makefile])"
3311     ) > "$testdir/$testsbase/configure.ac"
3312     func_append subdirs " $testsbase"
3313     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
3314   fi
3315
3316   # Create Makefile.am.
3317   (echo "## Process this file with automake to produce Makefile.in."
3318    echo
3319    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3320    echo
3321    echo "SUBDIRS = $subdirs"
3322    echo
3323    echo "ACLOCAL_AMFLAGS = -I $m4base"
3324   ) > "$testdir/Makefile.am"
3325
3326   # Create configure.ac.
3327   (echo "# Process this file with autoconf to produce a configure script."
3328    echo "AC_INIT([dummy], [0])"
3329    if test "$auxdir" != "."; then
3330      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3331    fi
3332    echo "AM_INIT_AUTOMAKE"
3333    echo
3334    echo "AM_CONFIG_HEADER([config.h])"
3335    echo
3336    echo "AC_PROG_CC"
3337    echo "AC_PROG_INSTALL"
3338    echo "AC_PROG_MAKE_SET"
3339    echo
3340    echo "# For autobuild."
3341    echo "AC_CANONICAL_BUILD"
3342    echo "AC_CANONICAL_HOST"
3343    echo
3344    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3345    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3346    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3347    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3348    echo
3349    echo "AC_PROG_RANLIB"
3350    echo
3351    if test -n "$uses_subdirs"; then
3352      echo "AM_PROG_CC_C_O"
3353      echo
3354    fi
3355    if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3356      echo "AC_GNU_SOURCE"
3357      echo
3358    fi
3359    for module in $modules; do
3360      func_verify_nontests_module
3361      if test -n "$module"; then
3362        func_get_autoconf_early_snippet "$module"
3363      fi
3364    done \
3365      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3366    if test "$libtool" = true; then
3367      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3368      echo "gl_cond_libtool=true"
3369    else
3370      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3371      echo "gl_cond_libtool=false"
3372      echo "gl_libdeps="
3373      echo "gl_ltlibdeps="
3374    fi
3375    echo "gl_source_base='$sourcebase'"
3376    # Wrap the set of autoconf snippets into an autoconf macro that is then
3377    # invoked. This is needed because autoconf does not support AC_REQUIRE
3378    # at the top level:
3379    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3380    # but we want the AC_REQUIRE to have its normal meaning (provide one
3381    # expansion of the required macro before the current point, and only one
3382    # expansion total).
3383    echo "AC_DEFUN([gl_INIT], ["
3384    func_emit_initmacro_start
3385    if test "$auxdir" != "build-aux"; then
3386      sed_replace_build_aux='
3387        :a
3388        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3389          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3390          ba
3391        }'
3392    else
3393      sed_replace_build_aux=
3394    fi
3395    for module in $modules; do
3396      func_verify_nontests_module
3397      if test -n "$module"; then
3398        func_get_autoconf_snippet "$module" \
3399          | sed -e "$sed_replace_build_aux"
3400      fi
3401    done
3402    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3403    # created using libtool, because libtool already handles the dependencies.
3404    if test "$libtool" != true; then
3405      libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3406      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3407      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3408      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3409      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3410    fi
3411    func_emit_initmacro_end
3412    echo "])"
3413    func_emit_initmacro_done
3414    echo
3415    echo "gl_INIT"
3416    echo
3417    if test -n "$subdirs_with_configure_ac"; then
3418      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
3419    fi
3420    makefiles="Makefile"
3421    for d in $subdirs; do
3422      # For subdirs that have a configure.ac by their own, it's the subdir's
3423      # configure.ac which creates the subdir's Makefile.am, not this one.
3424      case " $subdirs_with_configure_ac " in
3425        *" $d "*) ;;
3426        *) func_append makefiles " $d/Makefile" ;;
3427      esac
3428    done
3429    echo "AC_OUTPUT([$makefiles])"
3430   ) > "$testdir/configure.ac"
3431
3432   # Create autogenerated files.
3433   (cd "$testdir"
3434    # Do not use "${AUTORECONF} --force --install", because it may invoke
3435    # autopoint, which brings in older versions of some of our .m4 files.
3436    if test -f $m4base/gettext.m4; then
3437      func_execute_command ${AUTOPOINT} --force || func_exit 1
3438      for f in $m4base/*.m4~; do
3439        mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3440      done
3441    fi
3442    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
3443    if ! test -d build-aux; then
3444      func_execute_command mkdir build-aux || func_exit 1
3445    fi
3446    func_execute_command ${AUTOCONF} || func_exit 1
3447    func_execute_command ${AUTOHEADER} || func_exit 1
3448    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3449   ) || func_exit 1
3450   if test -n "$inctests"; then
3451     # Create autogenerated files.
3452     (cd "$testdir/$testsbase" || func_exit 1
3453      # Do not use "${AUTORECONF} --force --install", because it may invoke
3454      # autopoint, which brings in older versions of some of our .m4 files.
3455      if test -f ../$m4base/gettext.m4; then
3456        func_execute_command ${AUTOPOINT} --force || func_exit 1
3457        for f in ../$m4base/*.m4~; do
3458          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3459        done
3460      fi
3461      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
3462      if ! test -d ../build-aux; then
3463        func_execute_command mkdir ../build-aux
3464      fi
3465      func_execute_command ${AUTOCONF} || func_exit 1
3466      func_execute_command ${AUTOHEADER} || func_exit 1
3467      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3468     ) || func_exit 1
3469   fi
3470   # Need to run configure and make once, to create built files that are to be
3471   # distributed (such as getdate.c).
3472   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
3473   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3474                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
3475   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
3476   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
3477   # such $(FOO_H) because they don't refer to distributed files.
3478   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
3479   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3480                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
3481                  | sed -e "$sed_remove_make_variables"`
3482   distributed_built_sources=`for file in $built_sources; do
3483                                case "$cleaned_files" in
3484                                  *" "$file" "*) ;;
3485                                  *) echo $file ;;
3486                                esac;
3487                              done`
3488   if test -n "$distributed_built_sources"; then
3489     (cd "$testdir"
3490      ./configure || func_exit 1
3491        cd "$sourcebase"
3492        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
3493        make built_sources || func_exit 1
3494        cd ..
3495      make distclean || func_exit 1
3496     ) || func_exit 1
3497   fi
3498 }
3499
3500 # func_create_megatestdir megatestdir allmodules
3501 # Input:
3502 # - local_gnulib_dir  from --local-dir
3503 # - auxdir          directory relative to destdir where to place build aux files
3504 func_create_megatestdir ()
3505 {
3506   megatestdir="$1"
3507   allmodules="$2"
3508   if test -z "$allmodules"; then
3509     allmodules=`func_all_modules`
3510   fi
3511
3512   megasubdirs=
3513   # First, all modules one by one.
3514   for onemodule in $allmodules; do
3515     func_create_testdir "$megatestdir/$onemodule" $onemodule
3516     func_append megasubdirs "$onemodule "
3517   done
3518   # Then, all modules all together.
3519   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3520   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3521   allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
3522   func_create_testdir "$megatestdir/ALL" "$allmodules"
3523   func_append megasubdirs "ALL"
3524
3525   # Create autobuild.
3526   cvsdate=`sh "$gnulib_dir/build-aux/mdate-sh" "$gnulib_dir/CVS/Entries" \
3527              | sed -e 's,January,01,'   -e 's,Jan,01,' \
3528                    -e 's,February,02,'  -e 's,Feb,02,' \
3529                    -e 's,March,03,'     -e 's,Mar,03,' \
3530                    -e 's,April,04,'     -e 's,Apr,04,' \
3531                    -e 's,May,05,'                      \
3532                    -e 's,June,06,'      -e 's,Jun,06,' \
3533                    -e 's,July,07,'      -e 's,Jul,07,' \
3534                    -e 's,August,08,'    -e 's,Aug,08,' \
3535                    -e 's,September,09,' -e 's,Sep,09,' \
3536                    -e 's,October,10,'   -e 's,Oct,10,' \
3537                    -e 's,November,11,'  -e 's,Nov,11,' \
3538                    -e 's,December,12,'  -e 's,Dec,12,' \
3539                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
3540                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
3541   (echo '#!/bin/sh'
3542    echo "CVSDATE=$cvsdate"
3543    echo "test -d logs || mkdir logs"
3544    echo "for module in $megasubdirs; do"
3545    echo "  echo \"Working on module \$module...\""
3546    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
3547    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
3548    echo "   echo"
3549    echo "   set -x"
3550    echo "   : autobuild project... \$module"
3551    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
3552    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
3553    echo "   : autobuild hostname... \`hostname\`"
3554    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && make && make check && make distclean"
3555    echo "   echo rc=\$?"
3556    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
3557    echo "done"
3558   ) > "$megatestdir/do-autobuild"
3559   chmod a+x "$megatestdir/do-autobuild"
3560
3561   # Create Makefile.am.
3562   (echo "## Process this file with automake to produce Makefile.in."
3563    echo
3564    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3565    echo
3566    echo "SUBDIRS = $megasubdirs"
3567    echo
3568    echo "EXTRA_DIST = do-autobuild"
3569   ) > "$megatestdir/Makefile.am"
3570
3571   # Create configure.ac.
3572   (echo "# Process this file with autoconf to produce a configure script."
3573    echo "AC_INIT([dummy], [0])"
3574    if test "$auxdir" != "."; then
3575      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3576    fi
3577    echo "AM_INIT_AUTOMAKE"
3578    echo
3579    echo "AC_PROG_MAKE_SET"
3580    echo
3581    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
3582    echo "AC_OUTPUT([Makefile])"
3583   ) > "$megatestdir/configure.ac"
3584
3585   # Create autogenerated files.
3586   (cd "$megatestdir"
3587    # Do not use "${AUTORECONF} --install", because autoreconf operates
3588    # recursively, but the subdirectories are already finished, therefore
3589    # calling autoreconf here would only waste lots of CPU time.
3590    func_execute_command ${ACLOCAL} || func_exit 1
3591    func_execute_command mkdir build-aux
3592    func_execute_command ${AUTOCONF} || func_exit 1
3593    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3594   ) || func_exit 1
3595 }
3596
3597 case $mode in
3598   "" )
3599     func_fatal_error "no mode specified" ;;
3600
3601   list )
3602     func_all_modules
3603     ;;
3604
3605   import | update )
3606
3607     # Where to import.
3608     if test -z "$destdir"; then
3609       destdir=.
3610     fi
3611     test -d "$destdir" \
3612       || func_fatal_error "destination directory does not exist: $destdir"
3613
3614     # Prefer configure.ac to configure.in.
3615     if test -f "$destdir"/configure.ac; then
3616       configure_ac="$destdir/configure.ac"
3617     else
3618       if test -f "$destdir"/configure.in; then
3619         configure_ac="$destdir/configure.in"
3620       else
3621         func_fatal_error "cannot find $destdir/configure.ac"
3622       fi
3623     fi
3624
3625     # Analyze configure.ac.
3626     guessed_auxdir="."
3627     guessed_libtool=false
3628     my_sed_traces='
3629       s,#.*$,,
3630       s,^dnl .*$,,
3631       s, dnl .*$,,
3632       /AC_CONFIG_AUX_DIR/ {
3633         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
3634       }
3635       /A[CM]_PROG_LIBTOOL/ {
3636         s,^.*$,guessed_libtool=true,p
3637       }'
3638     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
3639
3640     if test -z "$auxdir"; then
3641       auxdir="$guessed_auxdir"
3642     fi
3643
3644     # Determine where to apply func_import.
3645     if test -n "$m4base"; then
3646       # Apply func_import to a particular gnulib directory.
3647       # Any number of additional modules can be given.
3648       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
3649         # First use of gnulib in the given m4base.
3650         test -n "$supplied_libname" || supplied_libname=true
3651         test -n "$sourcebase" || sourcebase="lib"
3652         test -n "$docbase" || docbase="doc"
3653         test -n "$testsbase" || testsbase="tests"
3654         test -n "$macro_prefix" || macro_prefix="gl"
3655       fi
3656       func_import "$*"
3657     else
3658       # Apply func_import to all gnulib directories.
3659       # To get this list of directories, look at Makefile.am. (Not at
3660       # configure, because it may be omitted from CVS. Also, don't run
3661       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
3662       m4dirs=
3663       m4dirs_count=0
3664       if test -f "$destdir"/Makefile.am; then
3665         aclocal_amflags=`sed -n 's/^ACLOCAL_AMFLAGS[     ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
3666         m4dir_is_next=
3667         for arg in $aclocal_amflags; do
3668           if test -n "$m4dir_is_next"; then
3669             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
3670             case "$arg" in
3671               /*) ;;
3672               *)
3673                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
3674                   func_append m4dirs " $arg"
3675                   m4dirs_count=`expr $m4dirs_count + 1`
3676                 fi
3677                 ;;
3678             esac
3679             m4dir_is_next=
3680           else
3681             if test "X$arg" = "X-I"; then
3682               m4dir_is_next=yes
3683             else
3684               m4dir_is_next=
3685             fi
3686           fi
3687         done
3688       else
3689         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
3690         if test -f "$destdir"/aclocal.m4; then
3691           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
3692           sedexpr2='s,^[^/]*$,.,'
3693           sedexpr3='s,/[^/]*$,,'
3694           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
3695           m4dirs_count=`echo "$m4dirs" | wc -l`
3696         fi
3697       fi
3698       if test $m4dirs_count = 0; then
3699         # First use of gnulib in a package.
3700         # Any number of additional modules can be given.
3701         test -n "$supplied_libname" || supplied_libname=true
3702         test -n "$sourcebase" || sourcebase="lib"
3703         m4base="m4"
3704         test -n "$docbase" || docbase="doc"
3705         test -n "$testsbase" || testsbase="tests"
3706         test -n "$macro_prefix" || macro_prefix="gl"
3707         func_import "$*"
3708       else
3709         if test $m4dirs_count = 1; then
3710           # There's only one use of gnulib here. Assume the user means it.
3711           # Any number of additional modules can be given.
3712           for m4base in $m4dirs; do
3713             func_import "$*"
3714           done
3715         else
3716           # Ambiguous - guess what the user meant.
3717           if test $# = 0; then
3718             # No further arguments. Guess the user wants to update all of them.
3719             for m4base in $m4dirs; do
3720               # Perform func_import in a subshell, so that variable values
3721               # such as
3722               #   local_gnulib_dir, avoidlist, sourcebase, m4base, pobase,
3723               #   docbase, testsbase, inctests, libname, lgpl, makefile_name,
3724               #   libtool, macro_prefix, po_domain
3725               # don't propagate from one directory to another.
3726               (func_import) || func_exit 1
3727             done
3728           else
3729             # Really ambiguous.
3730             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
3731           fi
3732         fi
3733       fi
3734     fi
3735     ;;
3736
3737   create-testdir )
3738     if test -z "$destdir"; then
3739       func_fatal_error "please specify --dir option"
3740     fi
3741     mkdir "$destdir"
3742     test -d "$destdir" \
3743       || func_fatal_error "could not create destination directory"
3744     test -n "$auxdir" || auxdir="build-aux"
3745     func_create_testdir "$destdir" "$*"
3746     ;;
3747
3748   create-megatestdir )
3749     if test -z "$destdir"; then
3750       func_fatal_error "please specify --dir option"
3751     fi
3752     mkdir "$destdir" || func_fatal_error "could not create destination directory"
3753     test -n "$auxdir" || auxdir="build-aux"
3754     func_create_megatestdir "$destdir" "$*"
3755     ;;
3756
3757   test )
3758     test -n "$destdir" || destdir=testdir$$
3759     mkdir "$destdir" || func_fatal_error "could not create destination directory"
3760     test -n "$auxdir" || auxdir="build-aux"
3761     func_create_testdir "$destdir" "$*"
3762     cd "$destdir"
3763       mkdir build
3764       cd build
3765         ../configure || func_exit 1
3766         make || func_exit 1
3767         make check || func_exit 1
3768         make distclean || func_exit 1
3769         remaining=`find . -type f -print`
3770         if test -n "$remaining"; then
3771           echo "Remaining files:" $remaining 1>&2
3772           echo "gnulib-tool: *** Stop." 1>&2
3773           func_exit 1
3774         fi
3775       cd ..
3776     cd ..
3777     rm -rf "$destdir"
3778     ;;
3779
3780   megatest )
3781     test -n "$destdir" || destdir=testdir$$
3782     mkdir "$destdir" || func_fatal_error "could not create destination directory"
3783     test -n "$auxdir" || auxdir="build-aux"
3784     func_create_megatestdir "$destdir" "$*"
3785     cd "$destdir"
3786       mkdir build
3787       cd build
3788         ../configure
3789         make
3790         make check
3791         make distclean
3792         remaining=`find . -type f -print`
3793         if test -n "$remaining"; then
3794           echo "Remaining files:" $remaining 1>&2
3795           echo "gnulib-tool: *** Stop." 1>&2
3796           func_exit 1
3797         fi
3798       cd ..
3799     cd ..
3800     rm -rf "$destdir"
3801     ;;
3802
3803   extract-description )
3804     for module
3805     do
3806       func_verify_module
3807       if test -n "$module"; then
3808         func_get_description "$module"
3809       fi
3810     done
3811     ;;
3812
3813   extract-notice )
3814     for module
3815     do
3816       func_verify_module
3817       if test -n "$module"; then
3818         func_get_notice "$module"
3819       fi
3820     done
3821     ;;
3822
3823   extract-filelist )
3824     for module
3825     do
3826       func_verify_module
3827       if test -n "$module"; then
3828         func_get_filelist "$module"
3829       fi
3830     done
3831     ;;
3832
3833   extract-dependencies )
3834     for module
3835     do
3836       func_verify_module
3837       if test -n "$module"; then
3838         func_get_dependencies "$module"
3839       fi
3840     done
3841     ;;
3842
3843   extract-autoconf-snippet )
3844     for module
3845     do
3846       func_verify_module
3847       if test -n "$module"; then
3848         func_get_autoconf_snippet "$module"
3849       fi
3850     done
3851     ;;
3852
3853   extract-automake-snippet )
3854     for module
3855     do
3856       func_verify_module
3857       if test -n "$module"; then
3858         func_get_automake_snippet "$module"
3859       fi
3860     done
3861     ;;
3862
3863   extract-include-directive )
3864     for module
3865     do
3866       func_verify_module
3867       if test -n "$module"; then
3868         func_get_include_directive "$module"
3869       fi
3870     done
3871     ;;
3872
3873   extract-link-directive )
3874     for module
3875     do
3876       func_verify_module
3877       if test -n "$module"; then
3878         func_get_link_directive "$module"
3879       fi
3880     done
3881     ;;
3882
3883   extract-license )
3884     for module
3885     do
3886       func_verify_module
3887       if test -n "$module"; then
3888         func_get_license "$module"
3889       fi
3890     done
3891     ;;
3892
3893   extract-maintainer )
3894     for module
3895     do
3896       func_verify_module
3897       if test -n "$module"; then
3898         func_get_maintainer "$module"
3899       fi
3900     done
3901     ;;
3902
3903   extract-tests-module )
3904     for module
3905     do
3906       func_verify_module
3907       if test -n "$module"; then
3908         func_get_tests_module "$module"
3909       fi
3910     done
3911     ;;
3912
3913   * )
3914     func_fatal_error "unknown operation mode --$mode" ;;
3915 esac
3916
3917 rm -rf "$tmp"
3918 # Undo the effect of the previous 'trap' command. Some shellology:
3919 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
3920 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
3921 # exit); for the others we need to call 'exit' explicitly. The value of $? is
3922 # 128 + signal number and is set before the trap-registered command is run.
3923 trap '' 0
3924 trap 'func_exit $?' 1 2 3 13 15
3925
3926 exit 0
3927
3928 # Local Variables:
3929 # indent-tabs-mode: nil
3930 # whitespace-check-buffer-indent: nil
3931 # End: