Allow AC_REQUIREs in the configure.ac snippet.
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002-2006 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: 2006-08-08 11:35:22 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28
29 # You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
30 AUTOCONFPATH=
31 #case $USER in
32 #  bruno )
33 #    AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
34 #    AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
35 #    ;;
36 #esac
37
38 # You can set AUTOMAKEPATH to empty if automake 1.9.x is already in your PATH.
39 AUTOMAKEPATH=
40
41 # If you didn't set AUTOCONFPATH and AUTOMAKEPATH, you can also set the
42 # variables AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF individually.
43 if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then
44   AUTOCONF="${AUTOCONFPATH}autoconf"
45 fi
46 if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then
47   ACLOCAL="${AUTOMAKEPATH}aclocal"
48 fi
49 if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then
50   AUTOMAKE="${AUTOMAKEPATH}automake"
51 fi
52 if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then
53   AUTORECONF="${AUTOCONFPATH}autoreconf"
54 fi
55
56 # GNU sort is needed. Set SORT to its location (not needed if it's called
57 # 'sort' and already in the PATH).
58 if test -z "$SORT"; then
59   SORT=sort
60 fi
61
62 # func_usage
63 # outputs to stdout the --help usage message.
64 func_usage ()
65 {
66   echo "\
67 Usage: gnulib-tool --list
68        gnulib-tool --import [module1 ... moduleN]
69        gnulib-tool --update
70        gnulib-tool --create-testdir --dir=directory module1 ... moduleN
71        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
72        gnulib-tool --test --dir=directory module1 ... moduleN
73        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
74        gnulib-tool --extract-description module
75        gnulib-tool --extract-filelist module
76        gnulib-tool --extract-dependencies module
77        gnulib-tool --extract-autoconf-snippet module
78        gnulib-tool --extract-automake-snippet module
79        gnulib-tool --extract-include-directive module
80        gnulib-tool --extract-license module
81        gnulib-tool --extract-maintainer module
82        gnulib-tool --extract-tests-module module
83
84 Operation modes:
85       --list                print the available module names
86       --import              import the given modules into the current package;
87                             if no modules are specified, update the current
88                             package from the current gnulib
89       --update              update the current package, restore files omitted
90                             from CVS
91       --create-testdir      create a scratch package with the given modules
92       --create-megatestdir  create a mega scratch package with the given modules
93                             one by one and all together
94       --test                test the combination of the given modules
95                             (recommended to use CC=\"gcc -Wall\" here)
96       --megatest            test the given modules one by one and all together
97                             (recommended to use CC=\"gcc -Wall\" here)
98       --extract-description        extract the description
99       --extract-filelist           extract the list of files
100       --extract-dependencies       extract the dependencies
101       --extract-autoconf-snippet   extract the snippet for configure.ac
102       --extract-automake-snippet   extract the snippet for lib/Makefile.am
103       --extract-include-directive  extract the #include directive
104       --extract-license            report the license terms of the source files
105                                    under lib/
106       --extract-maintainer         report the maintainer(s) inside gnulib
107       --extract-tests-module       report the unit test module, if it exists
108
109 General options:
110       --dir=DIRECTORY       Specify the target directory.
111                             For --import, this specifies where your
112                             configure.ac can be found.  Defaults to current
113                             directory.
114       --local-dir=DIRECTORY  Specify a local override directory where to look
115                             up files before looking in gnulib's directory.
116
117 Options for --import:
118       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
119       --source-base=DIRECTORY
120                             Directory relative to --dir where source code is
121                             placed (default \"lib\").
122       --m4-base=DIRECTORY   Directory relative to --dir where *.m4 macros are
123                             placed (default \"m4\").
124       --doc-base=DIRECTORY  Directory relative to --dir where doc files are
125                             placed (default \"doc\").
126       --tests-base=DIRECTORY
127                             Directory relative to --dir where unit tests are
128                             placed (default \"tests\").
129       --aux-dir=DIRECTORY   Directory relative to --dir where auxiliary build
130                             tools are placed (default \"build-aux\").
131       --with-tests          Include unit tests for the included modules.
132       --avoid=MODULE        Avoid including the given MODULE. Useful if you
133                             have code that provides equivalent functionality.
134                             This option can be repeated.
135       --lgpl                Abort if modules aren't available under the LGPL.
136                             Also modify license template from GPL to LGPL.
137       --libtool             Use libtool rules.
138       --no-libtool          Don't use libtool rules.
139       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
140                             'gl_INIT'. Default is 'gl'.
141       --no-changelog        don't update or create ChangeLog files
142
143 Options for --import and --update:
144       --dry-run             For --import, only print what would have been done.
145   -s, --symbolic, --symlink Make symbolic links instead of copying files.
146
147 Report bugs to <bug-gnulib@gnu.org>."
148 }
149
150 # func_version
151 # outputs to stdout the --version message.
152 func_version ()
153 {
154   year=`echo "$last_checkin_date" | sed -e 's,/.*$,,'`
155   echo "$progname (GNU $package) $version"
156   echo "Copyright (C) $year Free Software Foundation, Inc.
157 This is free software; see the source for copying conditions.  There is NO
158 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
159   echo "Written by" "Bruno Haible" "and" "Simon Josefsson"
160 }
161
162 # func_emit_copyright_notice
163 # outputs to stdout a header for a generated file.
164 func_emit_copyright_notice ()
165 {
166   echo "# Copyright (C) 2004-2006 Free Software Foundation, Inc."
167   echo "#"
168   echo "# This file is free software, distributed under the terms of the GNU"
169   echo "# General Public License.  As a special exception to the GNU General"
170   echo "# Public License, this file may be distributed as part of a program"
171   echo "# that contains a configuration script generated by Autoconf, under"
172   echo "# the same distribution terms as the rest of that program."
173   echo "#"
174   echo "# Generated by gnulib-tool."
175 }
176
177 # func_tmpdir
178 # creates a temporary directory.
179 # Sets variable
180 # - tmp             pathname of freshly created temporary directory
181 func_tmpdir ()
182 {
183   # Use the environment variable TMPDIR, falling back to /tmp. This allows
184   # users to specify a different temporary directory, for example, if their
185   # /tmp is filled up or too small.
186   : ${TMPDIR=/tmp}
187   {
188     # Use the mktemp program if available. If not available, hide the error
189     # message.
190     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
191     test -n "$tmp" && test -d "$tmp"
192   } ||
193   {
194     # Use a simple mkdir command. It is guaranteed to fail if the directory
195     # already exists.  $RANDOM is bash specific and expands to empty in shells
196     # other than bash, ksh and zsh.  Its use does not increase security;
197     # rather, it minimizes the probability of failure in a very cluttered /tmp
198     # directory.
199     tmp=$TMPDIR/gl$$-$RANDOM
200     (umask 077 && mkdir "$tmp")
201   } ||
202   {
203     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
204     { (exit 1); exit 1; }
205   }
206 }
207
208 # func_fatal_error message
209 # outputs to stderr a fatal error message, and terminates the program.
210 func_fatal_error ()
211 {
212   echo "gnulib-tool: *** $1" 1>&2
213   echo "gnulib-tool: *** Stop." 1>&2
214   exit 1
215 }
216
217 # func_readlink SYMLINK
218 # outputs the target of the given symlink.
219 if (type -p readlink) > /dev/null 2>&1; then
220   func_readlink ()
221   {
222     # Use the readlink program from GNU coreutils.
223     readlink "$1"
224   }
225 else
226   func_readlink ()
227   {
228     # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
229     # would do the wrong thing if the link target contains " -> ".
230     LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
231   }
232 fi
233
234 # func_ln_if_changed SRC DEST
235 # Like ln -s, but avoids munging timestamps if the link is correct.
236 func_ln_if_changed ()
237 {
238   if test $# -ne 2; then
239     echo "usage: func_ln_if_changed SRC DEST" >&2
240   fi
241   if test -L "$2" && test "$1" = "`func_readlink "$2"`"; then
242     :
243   else
244     rm -f "$2"
245     ln -s "$1" "$2"
246   fi
247 }
248
249 # Command-line option processing.
250 # Removes the OPTIONS from the arguments. Sets the variables:
251 # - mode            list or import or create-testdir or create-megatestdir
252 # - destdir         from --dir
253 # - libname, supplied_libname  from --lib
254 # - sourcebase      from --source-base
255 # - m4base          from --m4-base
256 # - docbase         from --doc-base
257 # - testsbase       from --tests-base
258 # - auxdir          from --aux-dir
259 # - inctests        true if --with-tests was given, blank otherwise
260 # - avoidlist       list of modules to avoid, from --avoid
261 # - lgpl            true if --lgpl was given, blank otherwise
262 # - libtool         true if --libtool was given, false if --no-libtool was
263 #                   given, blank otherwise
264 # - macro_prefix    from --macro-prefix
265 # - autoconf_minversion  minimum supported autoconf version
266 # - do_changelog    false if --no-changelog was given, : otherwise
267 # - doit            : if actions shall be executed, false if only to be printed
268 # - local_gnulib_dir  from --local-dir
269 # - symbolic        true if --symbolic was given, blank otherwise
270 {
271   mode=
272   destdir=
273   libname=libgnu
274   supplied_libname=
275   sourcebase=
276   m4base=
277   docbase=
278   testsbase=
279   auxdir=
280   inctests=
281   avoidlist=
282   lgpl=
283   libtool=
284   macro_prefix=
285   do_changelog=:
286   doit=:
287   local_gnulib_dir=
288   symbolic=
289
290   supplied_opts="$@"
291
292   while test $# -gt 0; do
293     case "$1" in
294       --list | --lis )
295         mode=list
296         shift ;;
297       --import | --impor | --impo | --imp | --im | --i )
298         mode=import
299         shift ;;
300       --update | --updat | --upda | --upd | --up | --u )
301         mode=update
302         shift ;;
303       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
304         mode=create-testdir
305         shift ;;
306       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
307         mode=create-megatestdir
308         shift ;;
309       --test | --tes | --te | --t )
310         mode=test
311         shift ;;
312       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
313         mode=megatest
314         shift ;;
315       --extract-* )
316         mode=`echo "X$1" | sed -e 's/^X--//'`
317         shift ;;
318       --dir )
319         shift
320         if test $# = 0; then
321           func_fatal_error "missing argument for --dir"
322         fi
323         destdir=$1
324         shift ;;
325       --dir=* )
326         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
327         shift ;;
328       --lib )
329         shift
330         if test $# = 0; then
331           func_fatal_error "missing argument for --lib"
332         fi
333         libname=$1
334         supplied_libname=true
335         shift ;;
336       --lib=* )
337         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
338         supplied_libname=true
339         shift ;;
340       --source-base )
341         shift
342         if test $# = 0; then
343           func_fatal_error "missing argument for --source-base"
344         fi
345         sourcebase=$1
346         shift ;;
347       --source-base=* )
348         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
349         shift ;;
350       --m4-base )
351         shift
352         if test $# = 0; then
353           func_fatal_error "missing argument for --m4-base"
354         fi
355         m4base=$1
356         shift ;;
357       --m4-base=* )
358         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
359         shift ;;
360       --doc-base )
361         shift
362         if test $# = 0; then
363           func_fatal_error "missing argument for --doc-base"
364         fi
365         docbase=$1
366         shift ;;
367       --doc-base=* )
368         docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'`
369         shift ;;
370       --tests-base )
371         shift
372         if test $# = 0; then
373           func_fatal_error "missing argument for --tests-base"
374         fi
375         testsbase=$1
376         shift ;;
377       --tests-base=* )
378         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
379         shift ;;
380       --aux-dir )
381         shift
382         if test $# = 0; then
383           func_fatal_error "missing argument for --aux-dir"
384         fi
385         auxdir=$1
386         shift ;;
387       --aux-dir=* )
388         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
389         shift ;;
390       --with-tests )
391         inctests=true
392         shift ;;
393       --avoid )
394         shift
395         if test $# = 0; then
396           func_fatal_error "missing argument for --avoid"
397         fi
398         avoidlist="$avoidlist $1"
399         shift ;;
400       --avoid=* )
401         avoidlist="$avoidlist "`echo "X$1" | sed -e 's/^X--avoid=//'`
402         shift ;;
403       --lgpl )
404         lgpl=true
405         shift ;;
406       --libtool )
407         libtool=true
408         shift ;;
409       --no-libtool )
410         libtool=false
411         shift ;;
412       --macro-prefix )
413         shift
414         if test $# = 0; then
415           func_fatal_error "missing argument for --macro-prefix"
416         fi
417         macro_prefix="$1"
418         shift ;;
419       --macro-prefix=* )
420         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
421         shift ;;
422       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
423         do_changelog=false
424         shift ;;
425       --dry-run )
426         doit=false
427         shift ;;
428       --local-dir )
429         shift
430         if test $# = 0; then
431           func_fatal_error "missing argument for --local-dir"
432         fi
433         local_gnulib_dir=$1
434         shift ;;
435       --local-dir=* )
436         local_gnulib_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'`
437         shift ;;
438       -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy )
439         symbolic=true
440         shift ;;
441       --help | --hel | --he | --h )
442         func_usage
443         exit 0 ;;
444       --version | --versio | --versi | --vers | --ver | --ve | --v )
445         func_version
446         exit 0 ;;
447       -- )
448         # Stop option processing
449         shift
450         break ;;
451       -* )
452         echo "gnulib-tool: unknown option $1" 1>&2
453         echo "Try 'gnulib-tool --help' for more information." 1>&2
454         exit 1 ;;
455       * )
456         break ;;
457     esac
458   done
459
460   if test "$mode" = update; then
461     if test $# != 0; then
462       echo "gnulib-tool: too many arguments in 'update' mode" 1>&2
463       echo "Try 'gnulib-tool --help' for more information." 1>&2
464       echo "If you really want to modify the gnulib configuration of your project," 1>&2
465       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
466       exit 1
467     fi
468     if test -n "$supplied_libname" || test -n "$sourcebase" || test -n "$m4base" \
469        || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \
470        || test -n "$inctests" || test -n "$avoidlist" || test -n "$lgpl" \
471        || test -n "$macro_prefix"; then
472       echo "gnulib-tool: invalid options for 'update' mode" 1>&2
473       echo "Try 'gnulib-tool --help' for more information." 1>&2
474       echo "If you really want to modify the gnulib configuration of your project," 1>&2
475       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
476       exit 1
477     fi
478     do_changelog=false
479   fi
480
481   # Determine the minimum supported autoconf version from the project's
482   # configure.ac.
483   DEFAULT_AUTOCONF_MINVERSION="2.59"
484   autoconf_minversion=
485   configure_ac=
486   if { test "$mode" = import || test "$mode" = update; } && test -n "$destdir"; then
487     if test -f "$destdir"/configure.ac; then
488       configure_ac="$destdir/configure.ac"
489     else
490       if test -f "$destdir"/configure.in; then
491         configure_ac="$destdir/configure.in"
492       fi
493     fi
494   else
495     if test -f configure.ac; then
496       configure_ac="configure.ac"
497     else
498       if test -f configure.in; then
499         configure_ac="configure.in"
500       fi
501     fi
502   fi
503   if test -n "$configure_ac"; then
504     # Use sed, not autoconf --trace, to look for the AC_PREREQ invocation,
505     # because when some m4 files are omitted from a CVS repository,
506     # "autoconf --trace=AC_PREREQ" fails with an error message like this:
507     #   m4: aclocal.m4:851: Cannot open m4/absolute-header.m4: No such file or directory
508     #   autom4te: m4 failed with exit status: 1
509     prereqs=
510     my_sed_traces='
511       s,#.*$,,
512       s,^dnl .*$,,
513       s, dnl .*$,,
514       /AC_PREREQ/ {
515         s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,prereqs="$prereqs \1",p
516       }'
517     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
518     if test -n "$prereqs"; then
519       autoconf_minversion=`for version in $prereqs; do echo $version; done | $SORT -g | uniq | tail -1`
520     fi
521   fi
522   if test -z "$autoconf_minversion"; then
523     autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION
524   fi
525   case "$autoconf_minversion" in
526     1.* | 2.[0-4]* | 2.5[0-8]*)
527       func_fatal_error "minimum supported autoconf version is 2.59. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;;
528   esac
529
530   # Remove trailing slashes from the directory names. This is necessary for
531   # m4base (to avoid an error in func_import) and optional for the others.
532   sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
533   case "$sourcebase" in
534     */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
535   esac
536   case "$m4base" in
537     */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
538   esac
539   case "$docbase" in
540     */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;;
541   esac
542   case "$testsbase" in
543     */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
544   esac
545   case "$auxdir" in
546     */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
547   esac
548 }
549
550 case "$0" in
551   /*) self_abspathname="$0" ;;
552   */*) self_abspathname=`pwd`/"$0" ;;
553   *) for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`; do
554        if test -x "$d/$0" && test ! -d "$d/$0"; then
555          self_abspathname="$d/$0"
556          break
557        fi
558      done
559      if test -z "$self_abspathname"; then
560        func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
561      fi
562      ;;
563 esac
564 while test -h "$self_abspathname"; do
565   # Resolve symbolic link.
566   linkval=`func_readlink "$self_abspathname"`
567   test -n "$linkval" || break
568   case "$linkval" in
569     /* ) self_abspathname="$linkval" ;;
570     * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
571   esac
572 done
573 gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
574
575 func_tmpdir
576 trap 'rm -rf "$tmp"' 0 1 2 3 15
577
578 # func_lookup_file file
579 # looks up a file in $local_gnulib_dir or $gnulib_dir, or combines it through
580 # 'patch'.
581 # Output:
582 # - lookedup_file   name of the merged (combined) file
583 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
584 func_lookup_file ()
585 {
586   lkfile="$1"
587   if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile"; then
588     lookedup_file="$local_gnulib_dir/$lkfile"
589     lookedup_tmp=
590   else
591     if test -f "$gnulib_dir/$lkfile"; then
592       if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile.diff"; then
593         lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'`
594         rm -f "$tmp/$lkbase"
595         cp "$gnulib_dir/$lkfile" "$tmp/$lkbase"
596         patch -s "$tmp/$lkbase" < "$local_gnulib_dir/$lkfile.diff" \
597           || func_fatal_error "patch file $local_gnulib_dir/$lkfile.diff didn't apply cleanly"
598         lookedup_file="$tmp/$lkbase"
599         lookedup_tmp=true
600       else
601         lookedup_file="$gnulib_dir/$lkfile"
602         lookedup_tmp=
603       fi
604     else
605       func_fatal_error "file $gnulib_dir/$lkfile not found"
606     fi
607   fi
608 }
609
610 # func_all_modules
611 func_all_modules ()
612 {
613   # Filter out metainformation files like README, which are not modules.
614   # Filter out unit test modules; they can be retrieved through
615   # --extract-tests-module if desired.
616   {
617     (cd "$gnulib_dir/modules" && ls -1)
618     if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
619       (cd "$local_gnulib_dir/modules" && ls -1 | sed -e 's,\.diff$,,')
620     fi
621   } \
622       | sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/^TEMPLATE-TESTS$/d' -e '/~$/d' \
623       | sed -e '/-tests$/d' \
624       | LC_ALL=C sort \
625       | LC_ALL=C uniq
626 }
627
628 # func_verify_module
629 # verifies a module name
630 func_verify_module ()
631 {
632   if ! { test -f "$gnulib_dir/modules/$module" \
633          || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
634               && test -f "$local_gnulib_dir/modules/$module"; }; } \
635      || test "CVS" = "$module" \
636      || test "ChangeLog" = "$module" \
637      || test "README" = "$module" \
638      || test "TEMPLATE" = "$module" \
639      || test "TEMPLATE-TESTS" = "$module"; then
640     echo "gnulib-tool: module $module doesn't exist" 1>&2
641     module=
642   fi
643 }
644
645 # func_verify_nontests_module
646 # verifies a module name, excluding tests modules
647 func_verify_nontests_module ()
648 {
649   case "$module" in
650     *-tests ) module= ;;
651     * ) func_verify_module ;;
652   esac
653 }
654
655 # func_verify_tests_module
656 # verifies a module name, considering only tests modules
657 func_verify_tests_module ()
658 {
659   case "$module" in
660     *-tests ) func_verify_module ;;
661     * ) module= ;;
662   esac
663 }
664
665 sed_extract_prog=':[     ]*$/ {
666   :a
667     n
668     s/^Description:[     ]*$//
669     s/^Files:[   ]*$//
670     s/^Depends-on:[      ]*$//
671     s/^configure\.ac:[   ]*$//
672     s/^Makefile\.am:[    ]*$//
673     s/^Include:[         ]*$//
674     s/^License:[         ]*$//
675     s/^Maintainer:[      ]*$//
676     tb
677     p
678     ba
679   :b
680 }'
681
682 # func_get_description module
683 func_get_description ()
684 {
685   func_lookup_file "modules/$1"
686   sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file"
687 }
688
689 # func_get_filelist module
690 func_get_filelist ()
691 {
692   func_lookup_file "modules/$1"
693   sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file"
694   case "$autoconf_minversion" in
695     2.59)
696       #echo m4/onceonly.m4
697       echo m4/onceonly_2_57.m4
698       ;;
699   esac
700 }
701
702 # func_get_dependencies module
703 func_get_dependencies ()
704 {
705   # ${module}-tests always implicitly depends on ${module}.
706   echo "$1" | sed -n -e 's/-tests//p'
707   # Then the explicit dependencies listed in the module description.
708   func_lookup_file "modules/$1"
709   sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file"
710 }
711
712 # func_get_autoconf_snippet module
713 func_get_autoconf_snippet ()
714 {
715   func_lookup_file "modules/$1"
716   sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file"
717 }
718
719 # func_get_automake_snippet module
720 func_get_automake_snippet ()
721 {
722   func_lookup_file "modules/$1"
723   sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
724 }
725
726 # func_get_include_directive module
727 func_get_include_directive ()
728 {
729   func_lookup_file "modules/$1"
730   sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file" | \
731   sed -e 's/^\(["<]\)/#include \1/'
732 }
733
734 # func_get_license module
735 func_get_license ()
736 {
737   func_lookup_file "modules/$1"
738   sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
739 }
740
741 # func_get_maintainer module
742 func_get_maintainer ()
743 {
744   func_lookup_file "modules/$1"
745   sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
746 }
747
748 # func_get_tests_module module
749 func_get_tests_module ()
750 {
751   # The naming convention for tests modules is hardwired: ${module}-tests.
752   if test -f modules/"$1"-tests; then
753     echo "$1"-tests
754   fi
755 }
756
757 # func_acceptable module
758 # tests whether a module is acceptable.
759 # Input:
760 # - avoidlist       list of modules to avoid
761 func_acceptable ()
762 {
763   for avoid in $avoidlist; do
764     if test "$avoid" = "$1"; then
765       return 1
766     fi
767   done
768   return 0
769 }
770
771 # func_modules_transitive_closure
772 # Input:
773 # - modules         list of specified modules
774 # - inctests        true if tests should be included, blank otherwise
775 # - avoidlist       list of modules to avoid
776 # Output:
777 # - modules         list of modules, including dependencies
778 func_modules_transitive_closure ()
779 {
780   while true; do
781     xmodules=
782     for module in $modules; do
783       func_verify_module
784       if test -n "$module"; then
785         # Duplicate dependencies are harmless, but Jim wants a warning.
786         duplicated_deps=`func_get_dependencies $module | LC_ALL=C sort | LC_ALL=C uniq -d`
787         if test -n "$duplicated_deps"; then
788           echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
789         fi
790         if func_acceptable $module; then
791           xmodules="$xmodules $module"
792           for depmodule in `func_get_dependencies $module`; do
793             if func_acceptable $depmodule; then
794               xmodules="$xmodules $depmodule"
795             fi
796           done
797           if test -n "$inctests"; then
798             testsmodule=`func_get_tests_module $module`
799             if test -n "$testsmodule"; then
800               if func_acceptable $testsmodule; then
801                 xmodules="$xmodules $testsmodule"
802                 for depmodule in `func_get_dependencies $testsmodule`; do
803                   if func_acceptable $depmodule; then
804                     xmodules="$xmodules $depmodule"
805                   fi
806                 done
807               fi
808             fi
809           fi
810         fi
811       fi
812     done
813     xmodules=`for m in $xmodules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
814     if test "$xmodules" = "$modules"; then
815       break
816     fi
817     modules="$xmodules"
818   done
819 }
820
821 # func_modules_add_dummy
822 # Input:
823 # - modules         list of modules, including dependencies
824 # Output:
825 # - modules         list of modules, including 'dummy' if needed
826 func_modules_add_dummy ()
827 {
828   have_lib_SOURCES=
829   sed_remove_backslash_newline=':a
830 /\\$/{
831 s/\\$//
832 N
833 s/\n//
834 ba
835 }'
836   for module in $modules; do
837     func_verify_nontests_module
838     if test -n "$module"; then
839       # Extract the value of "lib_SOURCES += ...".
840       for file in `func_get_automake_snippet "$module" | sed -e "$sed_remove_backslash_newline" | sed -n -e 's,^lib_SOURCES[     ]*+=\([^#]*\).*$,\1,p'`; do
841         # Ignore .h files since they are not compiled.
842         case "$file" in
843           *.h) ;;
844           *) have_lib_SOURCES=yes ;;
845         esac
846       done
847     fi
848   done
849   # Add the dummy module, to make sure the library will be non-empty.
850   if test -z "$have_lib_SOURCES"; then
851     modules="$modules dummy"
852   fi
853 }
854
855 # func_modules_to_filelist
856 # Input:
857 # - modules         list of modules, including dependencies
858 # Output:
859 # - files           list of files
860 func_modules_to_filelist ()
861 {
862   files=
863   for module in $modules; do
864     func_verify_module
865     if test -n "$module"; then
866       files="$files "`func_get_filelist $module`
867     fi
868   done
869   files=`for f in $files; do echo $f; done | LC_ALL=C sort | LC_ALL=C uniq`
870 }
871
872 # func_emit_lib_Makefile_am
873 # emits the contents of lib/Makefile.am to standard output.
874 # Input:
875 # - modules         list of modules, including dependencies
876 # - libname         library name
877 # - libtool         true if libtool will be used, false or blank otherwise
878 # - actioncmd       (optional) command that will reproduce this invocation
879 func_emit_lib_Makefile_am ()
880 {
881   if test "$libtool" = true; then
882     libext=la
883     perhapsLT=LT
884   else
885     libext=a
886     perhapsLT=
887   fi
888   echo "## Process this file with automake to produce Makefile.in."
889   func_emit_copyright_notice
890   if test -n "$actioncmd"; then
891     echo "# Reproduce by: $actioncmd"
892   fi
893   echo
894   # No need to generate dependencies since the sources are in gnulib, not here.
895   echo "AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies"
896   echo
897   echo "noinst_${perhapsLT}LIBRARIES = $libname.$libext"
898   echo
899   echo "${libname}_${libext}_SOURCES ="
900   echo "${libname}_${libext}_LIBADD = @${perhapsLT}LIBOBJS@"
901   echo "noinst_HEADERS ="
902   echo "pkgdata_DATA ="
903   echo "EXTRA_DIST ="
904   echo "BUILT_SOURCES ="
905   echo "SUFFIXES ="
906   echo "MOSTLYCLEANFILES = core *.stackdump"
907   echo "MOSTLYCLEANDIRS ="
908   echo "CLEANFILES ="
909   echo "DISTCLEANFILES ="
910   echo "MAINTAINERCLEANFILES ="
911   echo
912   echo "AM_CPPFLAGS ="
913   echo
914   for module in $modules; do
915     func_verify_nontests_module
916     if test -n "$module"; then
917       {
918         func_get_automake_snippet "$module" |
919           sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
920         if test "$module" = 'alloca'; then
921           echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
922         fi
923       } > amsnippet.tmp
924       # Skip the contents if its entirely empty.
925       if grep '[^        ]' amsnippet.tmp > /dev/null ; then
926         echo "## begin gnulib module $module"
927         echo
928         cat amsnippet.tmp
929         echo "## end   gnulib module $module"
930         echo
931       fi
932       rm -f amsnippet.tmp
933     fi
934   done
935   echo
936   echo "mostlyclean-local: mostlyclean-generic"
937   echo "        @test -z \"\$(MOSTLYCLEANDIRS)\" || \\"
938   echo "          for dir in \$(MOSTLYCLEANDIRS); do \\"
939   echo "            if test -d \$\$dir; then \\"
940   echo "              echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
941   echo "            fi; \\"
942   echo "          done"
943   echo
944   echo "# Makefile.am ends here"
945 }
946
947 # func_emit_tests_Makefile_am
948 # emits the contents of tests/Makefile.am to standard output.
949 # Input:
950 # - modules         list of modules, including dependencies
951 # - libname         library name
952 # - libtool         true if libtool will be used, false or blank otherwise
953 # - sourcebase      relative directory containing lib source code
954 # - m4base          relative directory containing autoconf macros
955 # - testsbase       relative directory containing unit test code
956 func_emit_tests_Makefile_am ()
957 {
958   if test "$libtool" = true; then
959     libext=la
960   else
961     libext=a
962   fi
963   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
964   echo "## Process this file with automake to produce Makefile.in."
965   func_emit_copyright_notice
966   echo
967   # Generate dependencies here, since it eases the debugging of test failures.
968   echo "AUTOMAKE_OPTIONS = 1.5 foreign"
969   echo
970   echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
971   echo
972   # Nothing is being added to SUBDIRS; nevertheless the existence of this
973   # variable is needed to avoid an error from automake:
974   #   "AM_GNU_GETTEXT used but SUBDIRS not defined"
975   echo "SUBDIRS ="
976   echo "TESTS ="
977   echo "TESTS_ENVIRONMENT ="
978   echo "noinst_PROGRAMS ="
979   echo "check_PROGRAMS ="
980   echo "noinst_HEADERS ="
981   echo "pkgdata_DATA ="
982   echo "EXTRA_DIST ="
983   echo "BUILT_SOURCES ="
984   echo "SUFFIXES ="
985   echo "MOSTLYCLEANFILES = core *.stackdump"
986   echo "MOSTLYCLEANDIRS ="
987   echo "CLEANFILES ="
988   echo "DISTCLEANFILES ="
989   echo "MAINTAINERCLEANFILES ="
990   echo
991   echo "AM_CPPFLAGS = \\"
992   echo "  -I. -I\$(srcdir) \\"
993   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
994   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
995   echo
996   echo "LDADD = ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}"
997   echo
998   for module in $modules; do
999     func_verify_tests_module
1000     if test -n "$module"; then
1001       func_get_automake_snippet "$module" > amsnippet.tmp
1002       # Skip the contents if its entirely empty.
1003       if grep '[^        ]' amsnippet.tmp > /dev/null ; then
1004         echo "## begin gnulib module $module"
1005         echo
1006         cat amsnippet.tmp
1007         echo "## end   gnulib module $module"
1008         echo
1009       fi
1010       rm -f amsnippet.tmp
1011     fi
1012   done
1013   echo "# Clean up after Solaris cc."
1014   echo "clean-local:"
1015   echo "        rm -rf SunWS_cache"
1016   echo
1017   echo "mostlyclean-local: mostlyclean-generic"
1018   echo "        @test -z \"\$(MOSTLYCLEANDIRS)\" || \\"
1019   echo "          for dir in \$(MOSTLYCLEANDIRS); do \\"
1020   echo "            if test -d \$\$dir; then \\"
1021   echo "              echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1022   echo "            fi; \\"
1023   echo "          done"
1024   echo
1025   echo "# Makefile.am ends here"
1026 }
1027
1028 # func_import modules
1029 # Uses also the variables
1030 # - destdir         target directory
1031 # - libname         library name
1032 # - sourcebase      directory relative to destdir where to place source code
1033 # - m4base          directory relative to destdir where to place *.m4 macros
1034 # - docbase         directory relative to destdir where to place doc files
1035 # - testsbase       directory relative to destdir where to place unit test code
1036 # - auxdir          directory relative to destdir where to place build aux files
1037 # - inctests        true if --with-tests was given, blank otherwise
1038 # - avoidlist       list of modules to avoid, from --avoid
1039 # - lgpl            true if library's license shall be LGPL, blank otherwise
1040 # - libtool         true if --libtool was given, false if --no-libtool was
1041 #                   given, blank otherwise
1042 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
1043 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1044 # - autoconf_minversion  minimum supported autoconf version
1045 # - doit            : if actions shall be executed, false if only to be printed
1046 # - symbolic        true if files should be symlinked, copied otherwise
1047 func_import ()
1048 {
1049   # Get the cached settings.
1050   cached_specified_modules=
1051   cached_avoidlist=
1052   cached_sourcebase=
1053   cached_m4base=
1054   cached_docbase=
1055   cached_testsbase=
1056   cached_libname=
1057   cached_lgpl=
1058   cached_libtool=
1059   cached_macro_prefix=
1060   cached_files=
1061   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
1062     cached_libtool=false
1063     my_sed_traces='
1064       s,#.*$,,
1065       s,^dnl .*$,,
1066       s, dnl .*$,,
1067       /gl_MODULES(/ {
1068         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
1069       }
1070       /gl_AVOID(/ {
1071         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
1072       }
1073       /gl_SOURCE_BASE(/ {
1074         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
1075       }
1076       /gl_M4_BASE(/ {
1077         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
1078       }
1079       /gl_DOC_BASE(/ {
1080         s,^.*gl_DOC_BASE([[ ]*\([^])]*\).*$,cached_docbase="\1",p
1081       }
1082       /gl_TESTS_BASE(/ {
1083         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
1084       }
1085       /gl_LIB(/ {
1086         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
1087       }
1088       /gl_LGPL/ {
1089         s,^.*$,cached_lgpl=true,p
1090       }
1091       /gl_LIBTOOL/ {
1092         s,^.*$,cached_libtool=true,p
1093       }
1094       /gl_MACRO_PREFIX(/ {
1095         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
1096       }'
1097     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
1098     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
1099       my_sed_traces='
1100         s,#.*$,,
1101         s,^dnl .*$,,
1102         s, dnl .*$,,
1103         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
1104           s,^.*$,cached_files=",p
1105           n
1106           ta
1107           :a
1108           s,^\]).*$,",
1109           tb
1110           p
1111           n
1112           ba
1113           :b
1114           p
1115         }'
1116       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
1117     fi
1118   fi
1119
1120   # Merge the cached settings with the specified ones.
1121   # The m4base must be the same as expected from the pathname.
1122   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
1123     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
1124   fi
1125   # Append the cached and the specified module names. So that
1126   # "gnulib-tool --import foo" means to add the module foo.
1127   specified_modules="$cached_specified_modules $1"
1128   # Append the cached and the specified avoidlist. This is probably better
1129   # than dropping the cached one when --avoid is specified at least once.
1130   avoidlist=`echo $cached_avoidlist $avoidlist`
1131   # The sourcebase defaults to the cached one.
1132   if test -z "$sourcebase"; then
1133     sourcebase="$cached_sourcebase"
1134     if test -z "$sourcebase"; then
1135       func_fatal_error "missing --source-base option"
1136     fi
1137   fi
1138   # The docbase defaults to the cached one.
1139   if test -z "$docbase"; then
1140     docbase="$cached_docbase"
1141     if test -z "$docbase"; then
1142       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."
1143     fi
1144   fi
1145   # The testsbase defaults to the cached one.
1146   if test -z "$testsbase"; then
1147     testsbase="$cached_testsbase"
1148     if test -z "$testsbase"; then
1149       func_fatal_error "missing --tests-base option"
1150     fi
1151   fi
1152   # The libname defaults to the cached one.
1153   if test -z "$supplied_libname"; then
1154     libname="$cached_libname"
1155     if test -z "$libname"; then
1156       func_fatal_error "missing --lib option"
1157     fi
1158   fi
1159   # Require LGPL if specified either way.
1160   if test -z "$lgpl"; then
1161     lgpl="$cached_lgpl"
1162   fi
1163   # Use libtool if specified either way, or if guessed.
1164   if test -z "$libtool"; then
1165     if test -n "$cached_m4base"; then
1166       libtool="$cached_libtool"
1167     else
1168       libtool="$guessed_libtool"
1169     fi
1170   fi
1171   # The macro_prefix defaults to the cached one.
1172   if test -z "$macro_prefix"; then
1173     macro_prefix="$cached_macro_prefix"
1174     if test -z "$macro_prefix"; then
1175       func_fatal_error "missing --macro-prefix option"
1176     fi
1177   fi
1178
1179   # Canonicalize the list of specified modules.
1180   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
1181
1182   # Determine final module list.
1183   modules="$specified_modules"
1184   func_modules_transitive_closure
1185   echo "Module list with included dependencies:"
1186   echo "$modules" | sed -e 's/^/  /'
1187
1188   # Add the dummy module if needed.
1189   func_modules_add_dummy
1190
1191   # If --lgpl, check the license of modules are compatible.
1192   if test -n "$lgpl"; then
1193     for module in $modules; do
1194       license=`func_get_license $module`
1195       case $license in
1196         LGPL | 'GPLed build tool' | 'public domain' | 'unlimited') ;;
1197         *) func_fatal_error "incompatible license on module $module: $license" ;;
1198       esac
1199     done
1200   fi
1201
1202   # Determine final file list.
1203   func_modules_to_filelist
1204   echo "File list:"
1205   echo "$files" | sed -e 's/^/  /'
1206
1207   test -n "$files" \
1208     || func_fatal_error "refusing to do nothing"
1209
1210   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
1211   new_files="$files m4/gnulib-tool.m4"
1212   old_files="$cached_files"
1213   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
1214     old_files="$old_files m4/gnulib-tool.m4"
1215   fi
1216
1217   # Create directories.
1218   if test ! -d "$destdir/$sourcebase"; then
1219     if $doit; then
1220       echo "Creating directory $destdir/$sourcebase"
1221       mkdir "$destdir/$sourcebase" || func_fatal_error "failed"
1222     else
1223       echo "Create directory $destdir/$sourcebase"
1224     fi
1225   fi
1226   if test ! -d "$destdir/$m4base"; then
1227     if $doit; then
1228       echo "Creating directory $destdir/$m4base"
1229       mkdir "$destdir/$m4base" || func_fatal_error "failed"
1230     else
1231       echo "Create directory $destdir/$m4base"
1232     fi
1233   fi
1234   docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
1235   if test -n "$docfiles"; then
1236     if test ! -d "$destdir/$docbase"; then
1237       if $doit; then
1238         echo "Creating directory $destdir/$docbase"
1239         mkdir "$destdir/$docbase" || func_fatal_error "failed"
1240       else
1241         echo "Create directory $destdir/$docbase"
1242       fi
1243     fi
1244   fi
1245   if test -n "$inctests"; then
1246     if test ! -d "$destdir/$testsbase"; then
1247       if $doit; then
1248         echo "Creating directory $destdir/$testsbase"
1249         mkdir "$destdir/$testsbase" || func_fatal_error "failed"
1250       else
1251         echo "Create directory $destdir/$testsbase"
1252       fi
1253     fi
1254   fi
1255   if test ! -d "$destdir/$auxdir"; then
1256     if $doit; then
1257       echo "Creating directory $destdir/$auxdir"
1258       mkdir "$destdir/$auxdir" || func_fatal_error "failed"
1259     else
1260       echo "Create directory $destdir/$auxdir"
1261     fi
1262   fi
1263
1264   # func_dest_tmpfilename file
1265   # determines the name of a temporary file (file is relative to destdir).
1266   # Sets variable:
1267   #   - tmpfile       absolute filename of the temporary file
1268   func_dest_tmpfilename ()
1269   {
1270     if $doit; then
1271       # Put the new contents of $file in a file in the same directory (needed
1272       # to guarantee that an 'mv' to "$destdir/$file" works).
1273       tmpfile="$destdir/$1.tmp"
1274     else
1275       # Put the new contents of $file in a file in a temporary directory
1276       # (because the directory of "$file" might not exist).
1277       tmpfile="$tmp"/`basename "$1"`.tmp
1278     fi
1279   }
1280
1281   # Copy files or make symbolic links. Remove obsolete files.
1282   delimiter='   '
1283   for f in $old_files; do
1284     case "$f" in
1285       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1286       doc/*) g=`echo "$f" | sed -e "s,^doc/,$cached_docbase/,"` ;;
1287       lib/*) g=`echo "$f" | sed -e "s,^lib/,$cached_sourcebase/,"` ;;
1288       m4/*) g=`echo "$f" | sed -e "s,^m4/,$cached_m4base/,"` ;;
1289       tests/*) g=`echo "$f" | sed -e "s,^tests/,$cached_testsbase/,"` ;;
1290       *) g="$f" ;;
1291     esac
1292     echo "$g""$delimiter""$f"
1293   done | LC_ALL=C sort > "$tmp"/old-files
1294   for f in $new_files; do
1295     case "$f" in
1296       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1297       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1298       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1299       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1300       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1301       *) g="$f" ;;
1302     esac
1303     echo "$g""$delimiter""$f"
1304   done | LC_ALL=C sort > "$tmp"/new-files
1305   # First the files that are in old-files, but not in new-files:
1306   sed_take_first_column='s,'"$delimiter"'.*,,'
1307   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
1308     # Remove the file. Do nothing if the user already removed it.
1309     if test -f "$destdir/$g"; then
1310       if $doit; then
1311         echo "Removing file $g (backup in ${g}~)"
1312         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1313       else
1314         echo "Remove file $g (backup in ${g}~)"
1315       fi
1316     fi
1317   done
1318   # func_add_or_update handles a file that ought to be present afterwards.
1319   # Uses parameters f, g, already_present.
1320   func_add_or_update ()
1321   {
1322     func_dest_tmpfilename "$g"
1323     func_lookup_file "$f"
1324     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
1325     if test -n "$lgpl"; then
1326       # Update license.
1327       case "$f" in
1328         lib/*)
1329           sed -e 's/GNU General/GNU Lesser General/g' \
1330               -e 's/version 2\([ ,]\)/version 2.1\1/g' \
1331             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
1332           ;;
1333       esac
1334     fi
1335     if test -f "$destdir/$g"; then
1336       # The file already exists.
1337       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
1338         : # The file has not changed.
1339       else
1340         # Replace the file.
1341         if $doit; then
1342           if test -n "$already_present"; then
1343             echo "Updating file $g (backup in ${g}~)"
1344           else
1345             echo "Replacing file $g (non-gnulib code backuped in ${g}~) !!"
1346           fi
1347           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1348           if test -n "$symbolic" && test -z "$lookedup_tmp" \
1349              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1350             func_ln_if_changed "$lookedup_file" "$destdir/$g"
1351           else
1352             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1353           fi
1354         else
1355           if test -n "$already_present"; then
1356             echo "Update file $g (backup in ${g}~)"
1357           else
1358             echo "Replace file $g (non-gnulib code backuped in ${g}~) !!"
1359           fi
1360         fi
1361       fi
1362     else
1363       # Install the file.
1364       # Don't protest if the file should be there but isn't: it happens
1365       # frequently that developers don't put autogenerated files into CVS.
1366       if $doit; then
1367         echo "Copying file $g"
1368         if test -n "$symbolic" && test -z "$lookedup_tmp" \
1369            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1370           func_ln_if_changed "$lookedup_file" "$destdir/$g"
1371         else
1372           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1373         fi
1374       else
1375         echo "Copy file $g"
1376       fi
1377     fi
1378     rm -f "$tmpfile"
1379   }
1380   # Then the files that are in new-files, but not in old-files:
1381   sed_take_last_column='s,^.*'"$delimiter"',,'
1382   already_present=
1383   for f in `LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_last_column"`; do
1384     case "$f" in
1385       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1386       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1387       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1388       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1389       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1390       *) g="$f" ;;
1391     esac
1392     func_add_or_update
1393   done
1394   # Then the files that are in new-files and in old-files:
1395   already_present=true
1396   for f in `LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_last_column"`; do
1397     case "$f" in
1398       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1399       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1400       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1401       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1402       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1403       *) g="$f" ;;
1404     esac
1405     func_add_or_update
1406   done
1407
1408   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
1409   actioncmd="gnulib-tool --import"
1410   actioncmd="$actioncmd --dir=$destdir"
1411   actioncmd="$actioncmd --lib=$libname"
1412   actioncmd="$actioncmd --source-base=$sourcebase"
1413   actioncmd="$actioncmd --m4-base=$m4base"
1414   actioncmd="$actioncmd --doc-base=$docbase"
1415   actioncmd="$actioncmd --aux-dir=$auxdir"
1416   for module in $avoidlist; do
1417     actioncmd="$actioncmd --avoid=$module"
1418   done
1419   if test -n "$lgpl"; then
1420     actioncmd="$actioncmd --lgpl"
1421   fi
1422   if test "$libtool" = true; then
1423     actioncmd="$actioncmd --libtool"
1424   else
1425     actioncmd="$actioncmd --no-libtool"
1426   fi
1427   actioncmd="$actioncmd --macro-prefix=$macro_prefix"
1428   actioncmd="$actioncmd `echo $specified_modules`"
1429
1430   # Create lib/Makefile.am.
1431   func_dest_tmpfilename $sourcebase/Makefile.am
1432   func_emit_lib_Makefile_am > "$tmpfile"
1433   if test -f "$destdir"/$sourcebase/Makefile.am; then
1434     if cmp "$destdir"/$sourcebase/Makefile.am "$tmpfile" > /dev/null; then
1435       rm -f "$tmpfile"
1436     else
1437       if $doit; then
1438         echo "Updating $sourcebase/Makefile.am (backup in $sourcebase/Makefile.am~)"
1439         mv -f "$destdir"/$sourcebase/Makefile.am "$destdir"/$sourcebase/Makefile.am~
1440         mv -f "$tmpfile" "$destdir"/$sourcebase/Makefile.am
1441       else
1442         echo "Update $sourcebase/Makefile.am (backup in $sourcebase/Makefile.am~)"
1443         rm -f "$tmpfile"
1444       fi
1445     fi
1446   else
1447     if $doit; then
1448       echo "Creating $sourcebase/Makefile.am"
1449       mv -f "$tmpfile" "$destdir"/$sourcebase/Makefile.am
1450     else
1451       echo "Create $sourcebase/Makefile.am"
1452       rm -f "$tmpfile"
1453     fi
1454   fi
1455
1456   # Create m4/gnulib-cache.m4.
1457   func_dest_tmpfilename $m4base/gnulib-cache.m4
1458   (
1459     func_emit_copyright_notice
1460     echo "#"
1461     echo "# This file represents the specification of how gnulib-tool is used."
1462     echo "# It acts as a cache: It is written and read by gnulib-tool."
1463     echo "# In projects using CVS, this file is meant to be stored in CVS,"
1464     echo "# like the configure.ac and various Makefile.am files."
1465     echo
1466     echo
1467     echo "# Specification in the form of a command-line invocation:"
1468     echo "#   $actioncmd"
1469     echo
1470     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
1471     echo "gl_MODULES(["`echo $specified_modules`"])"
1472     echo "gl_AVOID([$avoidlist])"
1473     echo "gl_SOURCE_BASE([$sourcebase])"
1474     echo "gl_M4_BASE([$m4base])"
1475     echo "gl_DOC_BASE([$docbase])"
1476     echo "gl_TESTS_BASE([$testsbase])"
1477     echo "gl_LIB([$libname])"
1478     test -z "$lgpl" || echo "gl_LGPL"
1479     if test "$libtool" = true; then
1480       echo "gl_LIBTOOL"
1481     fi
1482     echo "gl_MACRO_PREFIX([$macro_prefix])"
1483   ) > "$tmpfile"
1484   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
1485     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
1486       rm -f "$tmpfile"
1487     else
1488       if $doit; then
1489         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1490         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
1491         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
1492       else
1493         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1494         if false; then
1495           cat "$tmpfile"
1496           echo
1497           echo "# gnulib-cache.m4 ends here"
1498         fi
1499         rm -f "$tmpfile"
1500       fi
1501     fi
1502   else
1503     if $doit; then
1504       echo "Creating $m4base/gnulib-cache.m4"
1505       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
1506     else
1507       echo "Create $m4base/gnulib-cache.m4"
1508       cat "$tmpfile"
1509       rm -f "$tmpfile"
1510     fi
1511   fi
1512
1513   # Create m4/gnulib-comp.m4.
1514   func_dest_tmpfilename $m4base/gnulib-comp.m4
1515   (
1516     func_emit_copyright_notice
1517     echo "#"
1518     echo "# This file represents the compiled summary of the specification in"
1519     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
1520     echo "# to be invoked from configure.ac."
1521     echo "# In projects using CVS, this file can be treated like other built files."
1522     echo
1523     echo
1524     echo "# This macro should be invoked from $configure_ac, in the section"
1525     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
1526     echo "# any checks for libraries, header files, types and library functions."
1527     echo "AC_DEFUN([${macro_prefix}_EARLY],"
1528     echo "["
1529     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
1530     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1531       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
1532     fi
1533     if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1534       echo "  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])"
1535     fi
1536     if grep gl_LOCK "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1537       echo "  AC_REQUIRE([gl_LOCK])"
1538     fi
1539     echo "])"
1540     echo
1541     echo "# This macro should be invoked from $configure_ac, in the section"
1542     echo "# \"Check for header files, types and library functions\"."
1543     echo "AC_DEFUN([${macro_prefix}_INIT],"
1544     echo "["
1545     if test "$libtool" = true; then
1546       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
1547     else
1548       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
1549     fi
1550     if test "$auxdir" != "build-aux"; then
1551       sed_replace_build_aux='
1552         :a
1553         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
1554           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
1555           ba
1556         }'
1557       sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
1558     else
1559       sed_replace_build_aux=
1560     fi
1561     for module in $modules; do
1562       func_verify_module
1563       if test -n "$module"; then
1564         func_get_autoconf_snippet "$module" \
1565           | sed -e '/^$/d;' -e 's/^/  /' \
1566                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
1567                 -e "$sed_replace_build_aux"
1568         if test "$module" = 'alloca' && test "$libtool" = true; then
1569           echo 'changequote(,)dnl'
1570           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
1571           echo 'changequote([, ])dnl'
1572           echo 'AC_SUBST([LTALLOCA])'
1573         fi
1574       fi
1575     done
1576     echo "])"
1577     echo
1578     echo "# This macro records the list of files which have been installed by"
1579     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
1580     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
1581     echo "$files" | sed -e 's,^,  ,'
1582     echo "])"
1583   ) > "$tmpfile"
1584   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
1585     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
1586       rm -f "$tmpfile"
1587     else
1588       if $doit; then
1589         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1590         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
1591         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
1592       else
1593         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1594         if false; then
1595           cat "$tmpfile"
1596           echo
1597           echo "# gnulib-comp.m4 ends here"
1598         fi
1599         rm -f "$tmpfile"
1600       fi
1601     fi
1602   else
1603     if $doit; then
1604       echo "Creating $m4base/gnulib-comp.m4"
1605       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
1606     else
1607       echo "Create $m4base/gnulib-comp.m4"
1608       cat "$tmpfile"
1609       rm -f "$tmpfile"
1610     fi
1611   fi
1612
1613   if test -n "$inctests"; then
1614     # Create tests/Makefile.am.
1615     func_dest_tmpfilename $testsbase/Makefile.am
1616     func_emit_tests_Makefile_am > "$tmpfile"
1617     if test -f "$destdir"/$testsbase/Makefile.am; then
1618       if cmp "$destdir"/$testsbase/Makefile.am "$tmpfile" > /dev/null; then
1619         rm -f "$tmpfile"
1620       else
1621         if $doit; then
1622           echo "Updating $testsbase/Makefile.am (backup in $testsbase/Makefile.am~)"
1623           mv -f "$destdir"/$testsbase/Makefile.am "$destdir"/$testsbase/Makefile.am~
1624           mv -f "$tmpfile" "$destdir"/$testsbase/Makefile.am
1625         else
1626           echo "Update $testsbase/Makefile.am (backup in $testsbase/Makefile.am~)"
1627           rm -f "$tmpfile"
1628         fi
1629       fi
1630     else
1631       if $doit; then
1632         echo "Creating $testsbase/Makefile.am"
1633         mv -f "$tmpfile" "$destdir"/$testsbase/Makefile.am
1634       else
1635         echo "Create $testsbase/Makefile.am"
1636         rm -f "$tmpfile"
1637       fi
1638     fi
1639   fi
1640
1641   echo "Finished."
1642   echo
1643   echo "You may need to add #include directives for the following .h files."
1644   (
1645    # First the #include <...> directives without #ifs, sorted for convenience.
1646    for module in $modules; do
1647      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1648        :
1649      else
1650        func_get_include_directive "$module" | grep -v 'include "'
1651      fi
1652    done | LC_ALL=C sort -u
1653    # Then the #include "..." directives without #ifs, sorted for convenience.
1654    for module in $modules; do
1655      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1656        :
1657      else
1658        func_get_include_directive "$module" | grep 'include "'
1659      fi
1660    done | LC_ALL=C sort -u
1661    # Then the #include directives that are surrounded by #ifs. Not sorted.
1662    for module in $modules; do
1663      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1664        func_get_include_directive "$module"
1665      fi
1666    done
1667   ) | sed -e '/^$/d;' -e 's/^/  /'
1668   echo
1669   echo "Don't forget to"
1670   echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1671   if test -n "$inctests"; then
1672     echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1673   fi
1674   sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
1675   sourcebase_base=`basename "$sourcebase"`
1676   echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
1677   if test -n "$inctests"; then
1678     testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
1679     testsbase_base=`basename "$testsbase"`
1680     echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
1681   fi
1682   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
1683   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
1684   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
1685 }
1686
1687 # func_create_testdir testdir modules
1688 # Input:
1689 # - auxdir          directory relative to destdir where to place build aux files
1690 func_create_testdir ()
1691 {
1692   testdir="$1"
1693   modules="$2"
1694   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
1695
1696   # Determine final module list.
1697   func_modules_transitive_closure
1698   echo "Module list with included dependencies:"
1699   echo "$modules" | sed -e 's/^/  /'
1700
1701   # Add the dummy module if needed.
1702   func_modules_add_dummy
1703
1704   # Determine final file list.
1705   func_modules_to_filelist
1706   echo "File list:"
1707   echo "$files" | sed -e 's/^/  /'
1708
1709   # Create directories.
1710   for d in `echo "$files" | sed -n -e 's,^\(.*\)/[^/]*,\1,p'`; do
1711     if test "$d" = build-aux; then
1712       mkdir -p "$testdir/$auxdir"
1713     else
1714       mkdir -p "$testdir/$d"
1715     fi
1716   done
1717
1718   # Copy files or make symbolic links.
1719   for f in $files; do
1720     func_lookup_file "$f"
1721     case "$f" in
1722       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1723       *) g="$f" ;;
1724     esac
1725     if test -n "$lookedup_tmp"; then
1726       cp -p "$lookedup_file" "$testdir/$g"
1727     else
1728       ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
1729       if test -z "$symbolic"; then
1730         cp -p "$lookedup_file" "$testdir/$g"
1731       else
1732         ln -s "$lookedup_file" "$testdir/$g"
1733       fi
1734     fi
1735   done
1736
1737   # Create lib/Makefile.am.
1738   mkdir -p "$testdir/lib"
1739   func_emit_lib_Makefile_am > "$testdir/lib/Makefile.am"
1740
1741   # Create m4/Makefile.am.
1742   mkdir -p "$testdir/m4"
1743   (echo "## Process this file with automake to produce Makefile.in."
1744    echo
1745    echo "EXTRA_DIST ="
1746    for f in $files; do
1747      case "$f" in
1748        m4/* )
1749          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
1750      esac
1751    done
1752   ) > "$testdir/m4/Makefile.am"
1753
1754   subdirs="lib m4"
1755   subdirs_with_configure_ac=""
1756
1757   if test -f "$testdir"/m4/gettext.m4; then
1758     # Avoid stupid error message from automake:
1759     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
1760     mkdir -p "$testdir/po"
1761     (echo "## Process this file with automake to produce Makefile.in."
1762     ) > "$testdir/po/Makefile.am"
1763     subdirs="$subdirs po"
1764   fi
1765
1766   if test -n "$inctests"; then
1767     test -d "$testdir/tests" || mkdir "$testdir/tests"
1768     # Create tests/Makefile.am.
1769     sourcebase=lib
1770     m4base=m4
1771     testsbase=tests
1772     func_emit_tests_Makefile_am > "$testdir/tests/Makefile.am"
1773     # Create tests/configure.ac.
1774     (echo "# Process this file with autoconf to produce a configure script."
1775      echo "AC_INIT([dummy], [0])"
1776      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
1777      echo "AM_INIT_AUTOMAKE"
1778      echo
1779      echo "AM_CONFIG_HEADER([config.h])"
1780      echo
1781      echo "AC_PROG_CC"
1782      echo "AC_PROG_INSTALL"
1783      echo "AC_PROG_MAKE_SET"
1784      echo "AC_PROG_RANLIB"
1785      echo
1786      if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1787        echo "AC_GNU_SOURCE"
1788        echo
1789      fi
1790      if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1791        echo "gl_USE_SYSTEM_EXTENSIONS"
1792        echo
1793      fi
1794      if grep gl_LOCK "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1795        echo "gl_LOCK"
1796        echo
1797      fi
1798      if test "$libtool" = true; then
1799        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
1800      else
1801        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
1802      fi
1803      # Wrap the set of autoconf snippets into an autoconf macro that is then
1804      # invoked. This is needed because autoconf does not support AC_REQUIRE
1805      # at the top level:
1806      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
1807      # but we want the AC_REQUIRE to have its normal meaning (provide one
1808      # expansion of the required macro before the current point, and only one
1809      # expansion total).
1810      echo "AC_DEFUN([gl_INIT], ["
1811      if test "$auxdir" != "build-aux"; then
1812        sed_replace_build_aux='
1813          :a
1814          /AC_CONFIG_FILES(.*:build-aux\/.*)/{
1815            s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:../'"$auxdir"'/\2)|
1816            ba
1817          }'
1818        sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
1819      else
1820        sed_replace_build_aux=
1821      fi
1822      # We don't have explicit ordering constraints between the various
1823      # autoconf snippets. It's cleanest to put those of the library before
1824      # those of the tests.
1825      for module in $modules; do
1826        func_verify_nontests_module
1827        if test -n "$module"; then
1828          func_get_autoconf_snippet "$module" \
1829            | sed -e "$sed_replace_build_aux"
1830        fi
1831      done
1832      for module in $modules; do
1833        func_verify_tests_module
1834        if test -n "$module"; then
1835          func_get_autoconf_snippet "$module" \
1836            | sed -e "$sed_replace_build_aux"
1837        fi
1838      done
1839      echo "])"
1840      echo "gl_INIT"
1841      echo
1842      # Usually tests/config.h will be a superset of config.h. Verify this by
1843      # "merging" config.h into tests/config.h; look out for gcc warnings.
1844      echo "AH_TOP([#include \"../config.h\"])"
1845      echo
1846      echo "AC_OUTPUT([Makefile])"
1847     ) > "$testdir/tests/configure.ac"
1848     subdirs="$subdirs tests"
1849     subdirs_with_configure_ac="$subdirs_with_configure_ac tests"
1850   fi
1851
1852   # Create Makefile.am.
1853   (echo "## Process this file with automake to produce Makefile.in."
1854    echo
1855    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1856    echo
1857    echo "SUBDIRS = $subdirs"
1858    echo
1859    echo "ACLOCAL_AMFLAGS = -I m4"
1860   ) > "$testdir/Makefile.am"
1861
1862   # Create configure.ac.
1863   (echo "# Process this file with autoconf to produce a configure script."
1864    echo "AC_INIT([dummy], [0])"
1865    if test "$auxdir" != "."; then
1866      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1867    fi
1868    echo "AM_INIT_AUTOMAKE"
1869    echo
1870    echo "AM_CONFIG_HEADER([config.h])"
1871    echo
1872    echo "AC_PROG_CC"
1873    echo "AC_PROG_INSTALL"
1874    echo "AC_PROG_MAKE_SET"
1875    echo "AC_PROG_RANLIB"
1876    echo
1877    if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1878      echo "AC_GNU_SOURCE"
1879      echo
1880    fi
1881    if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1882      echo "gl_USE_SYSTEM_EXTENSIONS"
1883      echo
1884    fi
1885    if grep gl_LOCK "$testdir"/m4/*.m4 >/dev/null 2>/dev/null; then
1886      echo "gl_LOCK"
1887      echo
1888    fi
1889    if test "$libtool" = true; then
1890      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
1891    else
1892      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
1893    fi
1894    # Wrap the set of autoconf snippets into an autoconf macro that is then
1895    # invoked. This is needed because autoconf does not support AC_REQUIRE
1896    # at the top level:
1897    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
1898    # but we want the AC_REQUIRE to have its normal meaning (provide one
1899    # expansion of the required macro before the current point, and only one
1900    # expansion total).
1901    echo "AC_DEFUN([gl_INIT], ["
1902    if test "$auxdir" != "build-aux"; then
1903      sed_replace_build_aux='
1904        :a
1905        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
1906          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
1907          ba
1908        }'
1909      sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
1910    else
1911      sed_replace_build_aux=
1912    fi
1913    for module in $modules; do
1914      func_verify_nontests_module
1915      if test -n "$module"; then
1916        func_get_autoconf_snippet "$module" \
1917          | sed -e "$sed_replace_build_aux"
1918      fi
1919    done
1920    echo "])"
1921    echo "gl_INIT"
1922    echo
1923    if test -n "$subdirs_with_configure_ac"; then
1924      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
1925    fi
1926    makefiles="Makefile"
1927    for d in $subdirs; do
1928      # For subdirs that have a configure.ac by their own, it's the subdir's
1929      # configure.ac which creates the subdir's Makefile.am, not this one.
1930      case " $subdirs_with_configure_ac " in
1931        *" $d "*) ;;
1932        *) makefiles="$makefiles $d/Makefile" ;;
1933      esac
1934    done
1935    echo "AC_OUTPUT([$makefiles])"
1936   ) > "$testdir/configure.ac"
1937
1938   # Create autogenerated files.
1939   (cd "$testdir"
1940    echo "executing ${AUTORECONF} --force --install"
1941    ${AUTORECONF} --force --install
1942   )
1943   if grep '^BUILT_SOURCES *+=' "$testdir/lib/Makefile.am" > /dev/null; then
1944     (cd "$testdir"
1945      ./configure
1946        cd lib
1947        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
1948        make built_sources
1949        cd ..
1950      make distclean
1951     )
1952   fi
1953 }
1954
1955 # func_create_megatestdir megatestdir allmodules
1956 # Input:
1957 # - auxdir          directory relative to destdir where to place build aux files
1958 func_create_megatestdir ()
1959 {
1960   megatestdir="$1"
1961   allmodules="$2"
1962   if test -z "$allmodules"; then
1963     allmodules=`func_all_modules`
1964   fi
1965
1966   megasubdirs=
1967   # First, all modules one by one.
1968   for onemodule in $allmodules; do
1969     func_create_testdir "$megatestdir/$onemodule" $onemodule
1970     megasubdirs="${megasubdirs}$onemodule "
1971   done
1972   # Then, all modules all together.
1973   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
1974   allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done`
1975   func_create_testdir "$megatestdir/ALL" "$allmodules"
1976   megasubdirs="${megasubdirs}ALL"
1977
1978   # Create Makefile.am.
1979   (echo "## Process this file with automake to produce Makefile.in."
1980    echo
1981    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1982    echo
1983    echo "SUBDIRS = $megasubdirs"
1984   ) > "$megatestdir/Makefile.am"
1985
1986   # Create configure.ac.
1987   (echo "# Process this file with autoconf to produce a configure script."
1988    echo "AC_INIT([dummy], [0])"
1989    if test "$auxdir" != "."; then
1990      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1991    fi
1992    echo "AM_INIT_AUTOMAKE"
1993    echo
1994    echo "AC_PROG_MAKE_SET"
1995    echo
1996    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
1997    echo "AC_OUTPUT([Makefile])"
1998   ) > "$megatestdir/configure.ac"
1999
2000   # Create autogenerated files.
2001   (cd "$megatestdir"
2002    # Do not use "${AUTORECONF} --install", because autoreconf operates
2003    # recursively, but the subdirectories are already finished, therefore
2004    # calling autoreconf here would only waste lots of CPU time.
2005    echo "executing ${ACLOCAL}"
2006    ${ACLOCAL}
2007    echo "executing mkdir build-aux"
2008    mkdir build-aux
2009    echo "executing ${AUTOCONF}"
2010    ${AUTOCONF}
2011    echo "executing ${AUTOMAKE} --add-missing --copy"
2012    ${AUTOMAKE} --add-missing --copy
2013   )
2014 }
2015
2016 case $mode in
2017   "" )
2018     func_fatal_error "no mode specified" ;;
2019
2020   list )
2021     func_all_modules
2022     ;;
2023
2024   import | update )
2025
2026     # Where to import.
2027     if test -z "$destdir"; then
2028       destdir=.
2029     fi
2030     test -d "$destdir" \
2031       || func_fatal_error "destination directory does not exist: $destdir"
2032
2033     # Prefer configure.ac to configure.in.
2034     if test -f "$destdir"/configure.ac; then
2035       configure_ac="$destdir/configure.ac"
2036     else
2037       if test -f "$destdir"/configure.in; then
2038         configure_ac="$destdir/configure.in"
2039       else
2040         func_fatal_error "cannot find $destdir/configure.ac"
2041       fi
2042     fi
2043
2044     # Analyze configure.ac.
2045     guessed_auxdir="."
2046     guessed_libtool=false
2047     my_sed_traces='
2048       s,#.*$,,
2049       s,^dnl .*$,,
2050       s, dnl .*$,,
2051       /AC_CONFIG_AUX_DIR/ {
2052         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
2053       }
2054       /A[CM]_PROG_LIBTOOL/ {
2055         s,^.*$,guessed_libtool=true,p
2056       }'
2057     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
2058
2059     if test -z "$auxdir"; then
2060       auxdir="$guessed_auxdir"
2061     fi
2062
2063     # Determine where to apply func_import.
2064     if test -n "$m4base"; then
2065       # Apply func_import to a particular gnulib directory.
2066       # Any number of additional modules can be given.
2067       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
2068         # First use of gnulib in the given m4base.
2069         test -n "$supplied_libname" || supplied_libname=true
2070         test -n "$sourcebase" || sourcebase="lib"
2071         test -n "$docbase" || docbase="doc"
2072         test -n "$testsbase" || testsbase="tests"
2073         test -n "$macro_prefix" || macro_prefix="gl"
2074       fi
2075       func_import "$*"
2076     else
2077       # Apply func_import to all gnulib directories.
2078       # To get this list of directories, look at Makefile.am. (Not at
2079       # configure, because it may be omitted from CVS. Also, don't run
2080       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
2081       m4dirs=
2082       m4dirs_count=0
2083       if test -f "$destdir"/Makefile.am; then
2084         aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[         ]*=' "$destdir"/Makefile.am | sed -e 's/^ACLOCAL_AMFLAGS[       ]*=\(.*\)$/\1/'`
2085         m4dir_is_next=
2086         for arg in $aclocal_amflags; do
2087           if test -n "$m4dir_is_next"; then
2088             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
2089             case "$arg" in
2090               /*) ;;
2091               *)
2092                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
2093                   m4dirs="$m4dirs $arg"
2094                   m4dirs_count=`expr $m4dirs_count + 1`
2095                 fi
2096                 ;;
2097             esac
2098           else
2099             if test "X$arg" = "X-I"; then
2100               m4dir_is_next=yes
2101             else
2102               m4dir_is_next=
2103             fi
2104           fi
2105         done
2106       else
2107         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
2108         if test -f "$destdir"/aclocal.m4; then
2109           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
2110           sedexpr2='s,^[^/]*$,.,'
2111           sedexpr3='s,/[^/]*$,,'
2112           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort | LC_ALL=C uniq`
2113           m4dirs_count=`echo "$m4dirs" | wc -l`
2114         fi
2115       fi
2116       if test $m4dirs_count = 0; then
2117         # First use of gnulib in a package.
2118         # Any number of additional modules can be given.
2119         test -n "$supplied_libname" || supplied_libname=true
2120         test -n "$sourcebase" || sourcebase="lib"
2121         m4base="m4"
2122         test -n "$docbase" || docbase="doc"
2123         test -n "$testsbase" || testsbase="tests"
2124         test -n "$macro_prefix" || macro_prefix="gl"
2125         func_import "$*"
2126       else
2127         if test $m4dirs_count = 1; then
2128           # There's only one use of gnulib here. Assume the user means it.
2129           # Any number of additional modules can be given.
2130           for m4base in $m4dirs; do
2131             func_import "$*"
2132           done
2133         else
2134           # Ambiguous - guess what the user meant.
2135           if test $# = 0; then
2136             # No further arguments. Guess the user wants to update all of them.
2137             for m4base in $m4dirs; do
2138               func_import
2139             done
2140           else
2141             # Really ambiguous.
2142             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
2143           fi
2144         fi
2145       fi
2146     fi
2147     ;;
2148
2149   create-testdir )
2150     if test -z "$destdir"; then
2151       func_fatal_error "please specify --dir option"
2152     fi
2153     mkdir "$destdir"
2154     test -d "$destdir" \
2155       || func_fatal_error "could not create destination directory"
2156     test -n "$auxdir" || auxdir="build-aux"
2157     func_create_testdir "$destdir" "$*"
2158     ;;
2159
2160   create-megatestdir )
2161     if test -z "$destdir"; then
2162       func_fatal_error "please specify --dir option"
2163     fi
2164     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2165     test -n "$auxdir" || auxdir="build-aux"
2166     func_create_megatestdir "$destdir" "$*"
2167     ;;
2168
2169   test )
2170     test -n "$destdir" || destdir=testdir$$
2171     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2172     test -n "$auxdir" || auxdir="build-aux"
2173     func_create_testdir "$destdir" "$*"
2174     cd "$destdir"
2175       mkdir build
2176       cd build
2177         ../configure
2178         make
2179         make check
2180         make distclean
2181         remaining=`find . -type f -print`
2182         if test -n "$remaining"; then
2183           echo "Remaining files:" $remaining 1>&2
2184           echo "gnulib-tool: *** Stop." 1>&2
2185           exit 1
2186         fi
2187       cd ..
2188     cd ..
2189     rm -rf "$destdir"
2190     ;;
2191
2192   megatest )
2193     test -n "$destdir" || destdir=testdir$$
2194     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2195     test -n "$auxdir" || auxdir="build-aux"
2196     func_create_megatestdir "$destdir" "$*"
2197     cd "$destdir"
2198       mkdir build
2199       cd build
2200         ../configure
2201         make
2202         make check
2203         make distclean
2204         remaining=`find . -type f -print`
2205         if test -n "$remaining"; then
2206           echo "Remaining files:" $remaining 1>&2
2207           echo "gnulib-tool: *** Stop." 1>&2
2208           exit 1
2209         fi
2210       cd ..
2211     cd ..
2212     rm -rf "$destdir"
2213     ;;
2214
2215   extract-description )
2216     for module
2217     do
2218       func_verify_module
2219       if test -n "$module"; then
2220         func_get_description "$module"
2221       fi
2222     done
2223     ;;
2224
2225   extract-filelist )
2226     for module
2227     do
2228       func_verify_module
2229       if test -n "$module"; then
2230         func_get_filelist "$module"
2231       fi
2232     done
2233     ;;
2234
2235   extract-dependencies )
2236     for module
2237     do
2238       func_verify_module
2239       if test -n "$module"; then
2240         func_get_dependencies "$module"
2241       fi
2242     done
2243     ;;
2244
2245   extract-autoconf-snippet )
2246     for module
2247     do
2248       func_verify_module
2249       if test -n "$module"; then
2250         func_get_autoconf_snippet "$module"
2251       fi
2252     done
2253     ;;
2254
2255   extract-automake-snippet )
2256     for module
2257     do
2258       func_verify_module
2259       if test -n "$module"; then
2260         func_get_automake_snippet "$module"
2261       fi
2262     done
2263     ;;
2264
2265   extract-include-directive )
2266     for module
2267     do
2268       func_verify_module
2269       if test -n "$module"; then
2270         func_get_include_directive "$module"
2271       fi
2272     done
2273     ;;
2274
2275   extract-license )
2276     for module
2277     do
2278       func_verify_module
2279       if test -n "$module"; then
2280         func_get_license "$module"
2281       fi
2282     done
2283     ;;
2284
2285   extract-maintainer )
2286     for module
2287     do
2288       func_verify_module
2289       if test -n "$module"; then
2290         func_get_maintainer "$module"
2291       fi
2292     done
2293     ;;
2294
2295   extract-tests-module )
2296     for module
2297     do
2298       func_verify_module
2299       if test -n "$module"; then
2300         func_get_tests_module "$module"
2301       fi
2302     done
2303     ;;
2304
2305   * )
2306     func_fatal_error "unknown operation mode --$mode" ;;
2307 esac
2308
2309 rm -rf "$tmp"
2310 # Undo the effect of the previous 'trap' command. Some shellology:
2311 # We cannot use "trap - 0 1 2 3 15", because Solaris sh would attempt to
2312 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
2313 # exit); for the others we need to call 'exit' explicitly. The value of $? is
2314 # 128 + signal number and is set before the trap-registered command is run.
2315 trap '' 0
2316 trap 'exit $?' 1 2 3 15
2317
2318 exit 0