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