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