* gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
[pspp] / 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-28 19:39:49 $'
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, check the license 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' | 'public domain' | 'unlimited') ;;
1408         *) func_fatal_error "incompatible license on module $module: $license" ;;
1409       esac
1410     done
1411   fi
1412
1413   # Determine script to apply to imported library files.
1414   sed_transform_lib_file=
1415   case $nl$modules$nl in
1416     *"${nl}config-h$nl"*)
1417       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
1418       sed_transform_lib_file=$sed_transform_lib_file'
1419         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
1420       ' ;;
1421   esac
1422   if test -n "$lgpl"; then
1423     # Update license.
1424     sed_transform_lib_file=$sed_transform_lib_file'
1425       s/GNU General/GNU Lesser General/g
1426       s/version 2\([ ,]\)/version 2.1\1/g
1427     '
1428   fi
1429
1430   # Determine final file list.
1431   func_modules_to_filelist
1432   echo "File list:"
1433   echo "$files" | sed -e 's/^/  /'
1434
1435   test -n "$files" \
1436     || func_fatal_error "refusing to do nothing"
1437
1438   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
1439   new_files="$files m4/gnulib-tool.m4"
1440   old_files="$cached_files"
1441   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
1442     old_files="$old_files m4/gnulib-tool.m4"
1443   fi
1444
1445   # Create directories.
1446   if test ! -d "$destdir/$sourcebase"; then
1447     if $doit; then
1448       echo "Creating directory $destdir/$sourcebase"
1449       mkdir "$destdir/$sourcebase" || func_fatal_error "failed"
1450     else
1451       echo "Create directory $destdir/$sourcebase"
1452     fi
1453   fi
1454   if test ! -d "$destdir/$m4base"; then
1455     if $doit; then
1456       echo "Creating directory $destdir/$m4base"
1457       mkdir "$destdir/$m4base" || func_fatal_error "failed"
1458     else
1459       echo "Create directory $destdir/$m4base"
1460     fi
1461   fi
1462   docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
1463   if test -n "$docfiles"; then
1464     if test ! -d "$destdir/$docbase"; then
1465       if $doit; then
1466         echo "Creating directory $destdir/$docbase"
1467         mkdir "$destdir/$docbase" || func_fatal_error "failed"
1468       else
1469         echo "Create directory $destdir/$docbase"
1470       fi
1471     fi
1472   fi
1473   if test -n "$inctests"; then
1474     if test ! -d "$destdir/$testsbase"; then
1475       if $doit; then
1476         echo "Creating directory $destdir/$testsbase"
1477         mkdir "$destdir/$testsbase" || func_fatal_error "failed"
1478       else
1479         echo "Create directory $destdir/$testsbase"
1480       fi
1481     fi
1482   fi
1483   if test ! -d "$destdir/$auxdir"; then
1484     if $doit; then
1485       echo "Creating directory $destdir/$auxdir"
1486       mkdir "$destdir/$auxdir" || func_fatal_error "failed"
1487     else
1488       echo "Create directory $destdir/$auxdir"
1489     fi
1490   fi
1491
1492   # func_dest_tmpfilename file
1493   # determines the name of a temporary file (file is relative to destdir).
1494   # Sets variable:
1495   #   - tmpfile       absolute filename of the temporary file
1496   func_dest_tmpfilename ()
1497   {
1498     if $doit; then
1499       # Put the new contents of $file in a file in the same directory (needed
1500       # to guarantee that an 'mv' to "$destdir/$file" works).
1501       tmpfile="$destdir/$1.tmp"
1502     else
1503       # Put the new contents of $file in a file in a temporary directory
1504       # (because the directory of "$file" might not exist).
1505       tmpfile="$tmp"/`basename "$1"`.tmp
1506     fi
1507   }
1508
1509   # Copy files or make symbolic links. Remove obsolete files.
1510   delimiter='   '
1511   for f in $old_files; do
1512     case "$f" in
1513       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1514       doc/*) g=`echo "$f" | sed -e "s,^doc/,$cached_docbase/,"` ;;
1515       lib/*) g=`echo "$f" | sed -e "s,^lib/,$cached_sourcebase/,"` ;;
1516       m4/*) g=`echo "$f" | sed -e "s,^m4/,$cached_m4base/,"` ;;
1517       tests/*) g=`echo "$f" | sed -e "s,^tests/,$cached_testsbase/,"` ;;
1518       *) g="$f" ;;
1519     esac
1520     echo "$g""$delimiter""$f"
1521   done | LC_ALL=C sort > "$tmp"/old-files
1522   for f in $new_files; do
1523     case "$f" in
1524       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1525       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1526       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1527       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1528       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1529       *) g="$f" ;;
1530     esac
1531     echo "$g""$delimiter""$f"
1532   done | LC_ALL=C sort > "$tmp"/new-files
1533   # First the files that are in old-files, but not in new-files:
1534   sed_take_first_column='s,'"$delimiter"'.*,,'
1535   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
1536     # Remove the file. Do nothing if the user already removed it.
1537     if test -f "$destdir/$g"; then
1538       if $doit; then
1539         echo "Removing file $g (backup in ${g}~)"
1540         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1541       else
1542         echo "Remove file $g (backup in ${g}~)"
1543       fi
1544     fi
1545   done
1546   # func_add_or_update handles a file that ought to be present afterwards.
1547   # Uses parameters f, g, already_present.
1548   func_add_or_update ()
1549   {
1550     func_dest_tmpfilename "$g"
1551     func_lookup_file "$f"
1552     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
1553     if test -n "sed_transform_lib_file"; then
1554       case "$f" in
1555         lib/*)
1556           sed -e "$sed_transform_lib_file" \
1557             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
1558           ;;
1559       esac
1560     fi
1561     if test -f "$destdir/$g"; then
1562       # The file already exists.
1563       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
1564         : # The file has not changed.
1565       else
1566         # Replace the file.
1567         if $doit; then
1568           if test -n "$already_present"; then
1569             echo "Updating file $g (backup in ${g}~)"
1570           else
1571             echo "Replacing file $g (non-gnulib code backuped in ${g}~) !!"
1572           fi
1573           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1574           if test -n "$symbolic" && test -z "$lookedup_tmp" \
1575              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1576             func_ln_if_changed "$lookedup_file" "$destdir/$g"
1577           else
1578             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1579           fi
1580         else
1581           if test -n "$already_present"; then
1582             echo "Update file $g (backup in ${g}~)"
1583           else
1584             echo "Replace file $g (non-gnulib code backuped in ${g}~) !!"
1585           fi
1586         fi
1587       fi
1588     else
1589       # Install the file.
1590       # Don't protest if the file should be there but isn't: it happens
1591       # frequently that developers don't put autogenerated files into CVS.
1592       if $doit; then
1593         echo "Copying file $g"
1594         if test -n "$symbolic" && test -z "$lookedup_tmp" \
1595            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1596           func_ln_if_changed "$lookedup_file" "$destdir/$g"
1597         else
1598           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1599         fi
1600       else
1601         echo "Copy file $g"
1602       fi
1603     fi
1604     rm -f "$tmpfile"
1605   }
1606   # Then the files that are in new-files, but not in old-files:
1607   sed_take_last_column='s,^.*'"$delimiter"',,'
1608   already_present=
1609   for f in `LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_last_column"`; do
1610     case "$f" in
1611       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1612       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1613       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1614       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1615       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1616       *) g="$f" ;;
1617     esac
1618     func_add_or_update
1619   done
1620   # Then the files that are in new-files and in old-files:
1621   already_present=true
1622   for f in `LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_last_column"`; do
1623     case "$f" in
1624       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1625       doc/*) g=`echo "$f" | sed -e "s,^doc/,$docbase/,"` ;;
1626       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1627       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1628       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
1629       *) g="$f" ;;
1630     esac
1631     func_add_or_update
1632   done
1633
1634   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
1635   actioncmd="gnulib-tool --import"
1636   actioncmd="$actioncmd --dir=$destdir"
1637   if test -n "$local_gnulib_dir"; then
1638     actioncmd="$actioncmd --local-dir=$local_gnulib_dir"
1639   fi
1640   actioncmd="$actioncmd --lib=$libname"
1641   actioncmd="$actioncmd --source-base=$sourcebase"
1642   actioncmd="$actioncmd --m4-base=$m4base"
1643   actioncmd="$actioncmd --doc-base=$docbase"
1644   actioncmd="$actioncmd --aux-dir=$auxdir"
1645   for module in $avoidlist; do
1646     actioncmd="$actioncmd --avoid=$module"
1647   done
1648   if test -n "$lgpl"; then
1649     actioncmd="$actioncmd --lgpl"
1650   fi
1651   if test -n "$makefile_name"; then
1652     actioncmd="$actioncmd --makefile_name=$makefile_name"
1653   fi
1654   if test "$libtool" = true; then
1655     actioncmd="$actioncmd --libtool"
1656   else
1657     actioncmd="$actioncmd --no-libtool"
1658   fi
1659   actioncmd="$actioncmd --macro-prefix=$macro_prefix"
1660   actioncmd="$actioncmd `echo $specified_modules`"
1661
1662   # Default the makefile name to Makefile.am.
1663   if test -n "$makefile_name"; then
1664     makefile_am=$makefile_name
1665   else
1666     makefile_am=Makefile.am
1667   fi
1668
1669   # Create library makefile.
1670   func_dest_tmpfilename $sourcebase/$makefile_am
1671   func_emit_lib_Makefile_am > "$tmpfile"
1672   if test -f "$destdir"/$sourcebase/$makefile_am; then
1673     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
1674       rm -f "$tmpfile"
1675     else
1676       if $doit; then
1677         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
1678         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
1679         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
1680       else
1681         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
1682         rm -f "$tmpfile"
1683       fi
1684     fi
1685   else
1686     if $doit; then
1687       echo "Creating $sourcebase/$makefile_am"
1688       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
1689     else
1690       echo "Create $sourcebase/$makefile_am"
1691       rm -f "$tmpfile"
1692     fi
1693   fi
1694
1695   # Create m4/gnulib-cache.m4.
1696   func_dest_tmpfilename $m4base/gnulib-cache.m4
1697   (
1698     func_emit_copyright_notice
1699     echo "#"
1700     echo "# This file represents the specification of how gnulib-tool is used."
1701     echo "# It acts as a cache: It is written and read by gnulib-tool."
1702     echo "# In projects using CVS, this file is meant to be stored in CVS,"
1703     echo "# like the configure.ac and various Makefile.am files."
1704     echo
1705     echo
1706     echo "# Specification in the form of a command-line invocation:"
1707     echo "#   $actioncmd"
1708     echo
1709     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
1710     # Store the local_gnulib_dir relative to destdir.
1711     case "$local_gnulib_dir" in
1712       "" | /*)
1713         relative_local_gnulib_dir="$local_gnulib_dir" ;;
1714       * )
1715         case "$destdir" in
1716           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
1717           *)
1718             # destdir, local_gnulib_dir are both relative.
1719             func_relativize "$destdir" "$local_gnulib_dir"
1720             relative_local_gnulib_dir="$reldir" ;;
1721         esac ;;
1722     esac
1723     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
1724     echo "gl_MODULES(["`echo $specified_modules`"])"
1725     echo "gl_AVOID([$avoidlist])"
1726     echo "gl_SOURCE_BASE([$sourcebase])"
1727     echo "gl_M4_BASE([$m4base])"
1728     echo "gl_DOC_BASE([$docbase])"
1729     echo "gl_TESTS_BASE([$testsbase])"
1730     echo "gl_LIB([$libname])"
1731     test -z "$lgpl" || echo "gl_LGPL"
1732     echo "gl_MAKEFILE_NAME([$makefile_name])"
1733     if test "$libtool" = true; then
1734       echo "gl_LIBTOOL"
1735     fi
1736     echo "gl_MACRO_PREFIX([$macro_prefix])"
1737   ) > "$tmpfile"
1738   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
1739     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
1740       rm -f "$tmpfile"
1741     else
1742       if $doit; then
1743         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1744         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
1745         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
1746       else
1747         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1748         if false; then
1749           cat "$tmpfile"
1750           echo
1751           echo "# gnulib-cache.m4 ends here"
1752         fi
1753         rm -f "$tmpfile"
1754       fi
1755     fi
1756   else
1757     if $doit; then
1758       echo "Creating $m4base/gnulib-cache.m4"
1759       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
1760     else
1761       echo "Create $m4base/gnulib-cache.m4"
1762       cat "$tmpfile"
1763       rm -f "$tmpfile"
1764     fi
1765   fi
1766
1767   # Create m4/gnulib-comp.m4.
1768   func_dest_tmpfilename $m4base/gnulib-comp.m4
1769   (
1770     func_emit_copyright_notice
1771     echo "#"
1772     echo "# This file represents the compiled summary of the specification in"
1773     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
1774     echo "# to be invoked from configure.ac."
1775     echo "# In projects using CVS, this file can be treated like other built files."
1776     echo
1777     echo
1778     echo "# This macro should be invoked from $configure_ac, in the section"
1779     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
1780     echo "# any checks for libraries, header files, types and library functions."
1781     echo "AC_DEFUN([${macro_prefix}_EARLY],"
1782     echo "["
1783     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
1784     echo "  m4_pattern_allow([^gl_ES$])dnl a valid locale name"
1785     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
1786     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1787       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
1788     fi
1789     if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1790       echo "  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])"
1791     fi
1792     if grep gl_LOCK "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
1793       echo "  AC_REQUIRE([gl_LOCK_EARLY])"
1794     fi
1795     echo "])"
1796     echo
1797     echo "# This macro should be invoked from $configure_ac, in the section"
1798     echo "# \"Check for header files, types and library functions\"."
1799     echo "AC_DEFUN([${macro_prefix}_INIT],"
1800     echo "["
1801     if test "$libtool" = true; then
1802       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
1803     else
1804       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
1805     fi
1806     if test "$auxdir" != "build-aux"; then
1807       sed_replace_build_aux='
1808         :a
1809         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
1810           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
1811           ba
1812         }'
1813       sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
1814     else
1815       sed_replace_build_aux=
1816     fi
1817     for module in $modules; do
1818       func_verify_module
1819       if test -n "$module"; then
1820         func_get_autoconf_snippet "$module" \
1821           | sed -e '/^$/d;' -e 's/^/  /' \
1822                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
1823                 -e "$sed_replace_build_aux"
1824         if test "$module" = 'alloca' && test "$libtool" = true; then
1825           echo 'changequote(,)dnl'
1826           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
1827           echo 'changequote([, ])dnl'
1828           echo 'AC_SUBST([LTALLOCA])'
1829         fi
1830       fi
1831     done
1832     echo "])"
1833     echo
1834     echo "# This macro records the list of files which have been installed by"
1835     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
1836     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
1837     echo "$files" | sed -e 's,^,  ,'
1838     echo "])"
1839   ) > "$tmpfile"
1840   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
1841     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
1842       rm -f "$tmpfile"
1843     else
1844       if $doit; then
1845         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1846         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
1847         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
1848       else
1849         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1850         if false; then
1851           cat "$tmpfile"
1852           echo
1853           echo "# gnulib-comp.m4 ends here"
1854         fi
1855         rm -f "$tmpfile"
1856       fi
1857     fi
1858   else
1859     if $doit; then
1860       echo "Creating $m4base/gnulib-comp.m4"
1861       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
1862     else
1863       echo "Create $m4base/gnulib-comp.m4"
1864       cat "$tmpfile"
1865       rm -f "$tmpfile"
1866     fi
1867   fi
1868
1869   if test -n "$inctests"; then
1870     # Create tests makefile.
1871     func_dest_tmpfilename $testsbase/$makefile_am
1872     func_emit_tests_Makefile_am > "$tmpfile"
1873     if test -f "$destdir"/$testsbase/$makefile_am; then
1874       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
1875         rm -f "$tmpfile"
1876       else
1877         if $doit; then
1878           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
1879           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
1880           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
1881         else
1882           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
1883           rm -f "$tmpfile"
1884         fi
1885       fi
1886     else
1887       if $doit; then
1888         echo "Creating $testsbase/$makefile_am"
1889         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
1890       else
1891         echo "Create $testsbase/$makefile_am"
1892         rm -f "$tmpfile"
1893       fi
1894     fi
1895   fi
1896
1897   echo "Finished."
1898   echo
1899   echo "You may need to add #include directives for the following .h files."
1900   (
1901    # First the #include <...> directives without #ifs, sorted for convenience.
1902    for module in $modules; do
1903      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1904        :
1905      else
1906        func_get_include_directive "$module" | grep -v 'include "'
1907      fi
1908    done | LC_ALL=C sort -u
1909    # Then the #include "..." directives without #ifs, sorted for convenience.
1910    for module in $modules; do
1911      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1912        :
1913      else
1914        func_get_include_directive "$module" | grep 'include "'
1915      fi
1916    done | LC_ALL=C sort -u
1917    # Then the #include directives that are surrounded by #ifs. Not sorted.
1918    for module in $modules; do
1919      if func_get_include_directive "$module" | grep '^#if' >/dev/null; then
1920        func_get_include_directive "$module"
1921      fi
1922    done
1923   ) | sed -e '/^$/d;' -e 's/^/  /'
1924   echo
1925   echo "Don't forget to"
1926   if test "$makefile_am" = Makefile.am; then
1927     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1928   else
1929     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
1930   fi
1931   if test -n "$inctests"; then
1932     if test "$makefile_am" = Makefile.am; then
1933       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1934     else
1935       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
1936     fi
1937   fi
1938   if test "$makefile_am" = Makefile.am; then
1939     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
1940     sourcebase_base=`basename "$sourcebase"`
1941     echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
1942   fi
1943   if test -n "$inctests"; then
1944     if test "$makefile_am" = Makefile.am; then
1945       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
1946       testsbase_base=`basename "$testsbase"`
1947       echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
1948     fi
1949   fi
1950   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
1951   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
1952   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
1953 }
1954
1955 # func_create_testdir testdir modules
1956 # Input:
1957 # - local_gnulib_dir  from --local-dir
1958 # - auxdir          directory relative to destdir where to place build aux files
1959 func_create_testdir ()
1960 {
1961   testdir="$1"
1962   modules="$2"
1963   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
1964
1965   # Subdirectory names.
1966   sourcebase=gllib
1967   m4base=glm4
1968   testsbase=gltests
1969
1970   # Determine final module list.
1971   func_modules_transitive_closure
1972   echo "Module list with included dependencies:"
1973   echo "$modules" | sed -e 's/^/  /'
1974
1975   # Add the dummy module if needed.
1976   func_modules_add_dummy
1977
1978   # Determine final file list.
1979   func_modules_to_filelist
1980   echo "File list:"
1981   echo "$files" | sed -e 's/^/  /'
1982
1983   # Create directories.
1984   for d in `echo "$files" | sed -n -e 's,^\(.*\)/[^/]*,\1,p'`; do
1985     case "$d" in
1986       build-aux) mkdir -p "$testdir/$auxdir" ;;
1987       lib)       mkdir -p "$testdir/$sourcebase" ;;
1988       m4)        mkdir -p "$testdir/$m4base" ;;
1989       tests)     mkdir -p "$testdir/$testsbase" ;;
1990       *)         mkdir -p "$testdir/$d" ;;
1991     esac
1992   done
1993
1994   # Copy files or make symbolic links.
1995   for f in $files; do
1996     func_lookup_file "$f"
1997     case "$f" in
1998       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1999       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
2000       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
2001       tests/*) g=`echo "$f" | sed -e "s,^tests/,$testsbase/,"` ;;
2002       *) g="$f" ;;
2003     esac
2004     if test -n "$lookedup_tmp"; then
2005       cp -p "$lookedup_file" "$testdir/$g"
2006     else
2007       ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
2008       if test -z "$symbolic"; then
2009         cp -p "$lookedup_file" "$testdir/$g"
2010       else
2011         ln -s "$lookedup_file" "$testdir/$g"
2012       fi
2013     fi
2014   done
2015
2016   # Create $sourcebase/Makefile.am.
2017   mkdir -p "$testdir/$sourcebase"
2018   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
2019
2020   # Create $m4base/Makefile.am.
2021   mkdir -p "$testdir/$m4base"
2022   (echo "## Process this file with automake to produce Makefile.in."
2023    echo
2024    echo "EXTRA_DIST ="
2025    for f in $files; do
2026      case "$f" in
2027        m4/* )
2028          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
2029      esac
2030    done
2031   ) > "$testdir/$m4base/Makefile.am"
2032
2033   subdirs="$sourcebase $m4base"
2034   subdirs_with_configure_ac=""
2035
2036   if test -f "$testdir"/$m4base/gettext.m4; then
2037     # Avoid stupid error message from automake:
2038     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
2039     mkdir -p "$testdir/po"
2040     (echo "## Process this file with automake to produce Makefile.in."
2041     ) > "$testdir/po/Makefile.am"
2042     subdirs="$subdirs po"
2043   fi
2044
2045   if test -n "$inctests"; then
2046     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
2047     # Create $testsbase/Makefile.am.
2048     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
2049     # Create $testsbase/configure.ac.
2050     (echo "# Process this file with autoconf to produce a configure script."
2051      echo "AC_INIT([dummy], [0])"
2052      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
2053      echo "AM_INIT_AUTOMAKE"
2054      echo
2055      echo "AM_CONFIG_HEADER([config.h])"
2056      echo
2057      echo "AC_PROG_CC"
2058      echo "AC_PROG_INSTALL"
2059      echo "AC_PROG_MAKE_SET"
2060      echo "AC_PROG_RANLIB"
2061      echo
2062      if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2063        echo "AC_GNU_SOURCE"
2064        echo
2065      fi
2066      if grep gl_USE_SYSTEM_EXTENSIONS "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2067        echo "gl_USE_SYSTEM_EXTENSIONS"
2068        echo
2069      fi
2070      if grep gl_LOCK "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2071        echo "gl_LOCK_EARLY"
2072        echo
2073      fi
2074      if test "$libtool" = true; then
2075        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2076      else
2077        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2078      fi
2079      # Wrap the set of autoconf snippets into an autoconf macro that is then
2080      # invoked. This is needed because autoconf does not support AC_REQUIRE
2081      # at the top level:
2082      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
2083      # but we want the AC_REQUIRE to have its normal meaning (provide one
2084      # expansion of the required macro before the current point, and only one
2085      # expansion total).
2086      echo "AC_DEFUN([gl_INIT], ["
2087      if test "$auxdir" != "build-aux"; then
2088        sed_replace_build_aux='
2089          :a
2090          /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2091            s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:../'"$auxdir"'/\2)|
2092            ba
2093          }'
2094        sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
2095      else
2096        sed_replace_build_aux=
2097      fi
2098      # We don't have explicit ordering constraints between the various
2099      # autoconf snippets. It's cleanest to put those of the library before
2100      # those of the tests.
2101      for module in $modules; do
2102        func_verify_nontests_module
2103        if test -n "$module"; then
2104          func_get_autoconf_snippet "$module" \
2105            | sed -e "$sed_replace_build_aux"
2106        fi
2107      done
2108      for module in $modules; do
2109        func_verify_tests_module
2110        if test -n "$module"; then
2111          func_get_autoconf_snippet "$module" \
2112            | sed -e "$sed_replace_build_aux"
2113        fi
2114      done
2115      echo "])"
2116      echo "gl_INIT"
2117      echo
2118      # Usually $testsbase/config.h will be a superset of config.h. Verify this
2119      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
2120      echo "AH_TOP([#include \"../config.h\"])"
2121      echo
2122      echo "AC_OUTPUT([Makefile])"
2123     ) > "$testdir/$testsbase/configure.ac"
2124     subdirs="$subdirs $testsbase"
2125     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
2126   fi
2127
2128   # Create Makefile.am.
2129   (echo "## Process this file with automake to produce Makefile.in."
2130    echo
2131    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
2132    echo
2133    echo "SUBDIRS = $subdirs"
2134    echo
2135    echo "ACLOCAL_AMFLAGS = -I $m4base"
2136   ) > "$testdir/Makefile.am"
2137
2138   # Create configure.ac.
2139   (echo "# Process this file with autoconf to produce a configure script."
2140    echo "AC_INIT([dummy], [0])"
2141    if test "$auxdir" != "."; then
2142      echo "AC_CONFIG_AUX_DIR([$auxdir])"
2143    fi
2144    echo "AM_INIT_AUTOMAKE"
2145    echo
2146    echo "AM_CONFIG_HEADER([config.h])"
2147    echo
2148    echo "AC_PROG_CC"
2149    echo "AC_PROG_INSTALL"
2150    echo "AC_PROG_MAKE_SET"
2151    echo
2152    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
2153    echo "m4_pattern_allow([^gl_ES$])dnl a valid locale name"
2154    echo
2155    echo "AC_PROG_RANLIB"
2156    echo
2157    if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2158      echo "AC_GNU_SOURCE"
2159      echo
2160    fi
2161    if grep gl_USE_SYSTEM_EXTENSIONS "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2162      echo "gl_USE_SYSTEM_EXTENSIONS"
2163      echo
2164    fi
2165    if grep gl_LOCK "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2166      echo "gl_LOCK_EARLY"
2167      echo
2168    fi
2169    if test "$libtool" = true; then
2170      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2171    else
2172      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2173    fi
2174    # Wrap the set of autoconf snippets into an autoconf macro that is then
2175    # invoked. This is needed because autoconf does not support AC_REQUIRE
2176    # at the top level:
2177    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
2178    # but we want the AC_REQUIRE to have its normal meaning (provide one
2179    # expansion of the required macro before the current point, and only one
2180    # expansion total).
2181    echo "AC_DEFUN([gl_INIT], ["
2182    if test "$auxdir" != "build-aux"; then
2183      sed_replace_build_aux='
2184        :a
2185        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2186          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
2187          ba
2188        }'
2189      sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
2190    else
2191      sed_replace_build_aux=
2192    fi
2193    for module in $modules; do
2194      func_verify_nontests_module
2195      if test -n "$module"; then
2196        func_get_autoconf_snippet "$module" \
2197          | sed -e "$sed_replace_build_aux"
2198      fi
2199    done
2200    echo "])"
2201    echo "gl_INIT"
2202    echo
2203    if test -n "$subdirs_with_configure_ac"; then
2204      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
2205    fi
2206    makefiles="Makefile"
2207    for d in $subdirs; do
2208      # For subdirs that have a configure.ac by their own, it's the subdir's
2209      # configure.ac which creates the subdir's Makefile.am, not this one.
2210      case " $subdirs_with_configure_ac " in
2211        *" $d "*) ;;
2212        *) makefiles="$makefiles $d/Makefile" ;;
2213      esac
2214    done
2215    echo "AC_OUTPUT([$makefiles])"
2216   ) > "$testdir/configure.ac"
2217
2218   # Create autogenerated files.
2219   (cd "$testdir"
2220    echo "executing ${AUTORECONF} --force --install"
2221    ${AUTORECONF} --force --install
2222   )
2223   if grep '^BUILT_SOURCES *+=' "$testdir/$sourcebase/Makefile.am" > /dev/null; then
2224     (cd "$testdir"
2225      ./configure
2226        cd "$sourcebase"
2227        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
2228        make built_sources
2229        cd ..
2230      make distclean
2231     )
2232   fi
2233 }
2234
2235 # func_create_megatestdir megatestdir allmodules
2236 # Input:
2237 # - local_gnulib_dir  from --local-dir
2238 # - auxdir          directory relative to destdir where to place build aux files
2239 func_create_megatestdir ()
2240 {
2241   megatestdir="$1"
2242   allmodules="$2"
2243   if test -z "$allmodules"; then
2244     allmodules=`func_all_modules`
2245   fi
2246
2247   megasubdirs=
2248   # First, all modules one by one.
2249   for onemodule in $allmodules; do
2250     func_create_testdir "$megatestdir/$onemodule" $onemodule
2251     megasubdirs="${megasubdirs}$onemodule "
2252   done
2253   # Then, all modules all together.
2254   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
2255   allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done`
2256   func_create_testdir "$megatestdir/ALL" "$allmodules"
2257   megasubdirs="${megasubdirs}ALL"
2258
2259   # Create Makefile.am.
2260   (echo "## Process this file with automake to produce Makefile.in."
2261    echo
2262    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
2263    echo
2264    echo "SUBDIRS = $megasubdirs"
2265   ) > "$megatestdir/Makefile.am"
2266
2267   # Create configure.ac.
2268   (echo "# Process this file with autoconf to produce a configure script."
2269    echo "AC_INIT([dummy], [0])"
2270    if test "$auxdir" != "."; then
2271      echo "AC_CONFIG_AUX_DIR([$auxdir])"
2272    fi
2273    echo "AM_INIT_AUTOMAKE"
2274    echo
2275    echo "AC_PROG_MAKE_SET"
2276    echo
2277    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
2278    echo "AC_OUTPUT([Makefile])"
2279   ) > "$megatestdir/configure.ac"
2280
2281   # Create autogenerated files.
2282   (cd "$megatestdir"
2283    # Do not use "${AUTORECONF} --install", because autoreconf operates
2284    # recursively, but the subdirectories are already finished, therefore
2285    # calling autoreconf here would only waste lots of CPU time.
2286    echo "executing ${ACLOCAL}"
2287    ${ACLOCAL}
2288    echo "executing mkdir build-aux"
2289    mkdir build-aux
2290    echo "executing ${AUTOCONF}"
2291    ${AUTOCONF}
2292    echo "executing ${AUTOMAKE} --add-missing --copy"
2293    ${AUTOMAKE} --add-missing --copy
2294   )
2295 }
2296
2297 case $mode in
2298   "" )
2299     func_fatal_error "no mode specified" ;;
2300
2301   list )
2302     func_all_modules
2303     ;;
2304
2305   import | update )
2306
2307     # Where to import.
2308     if test -z "$destdir"; then
2309       destdir=.
2310     fi
2311     test -d "$destdir" \
2312       || func_fatal_error "destination directory does not exist: $destdir"
2313
2314     # Prefer configure.ac to configure.in.
2315     if test -f "$destdir"/configure.ac; then
2316       configure_ac="$destdir/configure.ac"
2317     else
2318       if test -f "$destdir"/configure.in; then
2319         configure_ac="$destdir/configure.in"
2320       else
2321         func_fatal_error "cannot find $destdir/configure.ac"
2322       fi
2323     fi
2324
2325     # Analyze configure.ac.
2326     guessed_auxdir="."
2327     guessed_libtool=false
2328     my_sed_traces='
2329       s,#.*$,,
2330       s,^dnl .*$,,
2331       s, dnl .*$,,
2332       /AC_CONFIG_AUX_DIR/ {
2333         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
2334       }
2335       /A[CM]_PROG_LIBTOOL/ {
2336         s,^.*$,guessed_libtool=true,p
2337       }'
2338     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
2339
2340     if test -z "$auxdir"; then
2341       auxdir="$guessed_auxdir"
2342     fi
2343
2344     # Determine where to apply func_import.
2345     if test -n "$m4base"; then
2346       # Apply func_import to a particular gnulib directory.
2347       # Any number of additional modules can be given.
2348       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
2349         # First use of gnulib in the given m4base.
2350         test -n "$supplied_libname" || supplied_libname=true
2351         test -n "$sourcebase" || sourcebase="lib"
2352         test -n "$docbase" || docbase="doc"
2353         test -n "$testsbase" || testsbase="tests"
2354         test -n "$macro_prefix" || macro_prefix="gl"
2355       fi
2356       func_import "$*"
2357     else
2358       # Apply func_import to all gnulib directories.
2359       # To get this list of directories, look at Makefile.am. (Not at
2360       # configure, because it may be omitted from CVS. Also, don't run
2361       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
2362       m4dirs=
2363       m4dirs_count=0
2364       if test -f "$destdir"/Makefile.am; then
2365         aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[         ]*=' "$destdir"/Makefile.am | sed -e 's/^ACLOCAL_AMFLAGS[       ]*=\(.*\)$/\1/'`
2366         m4dir_is_next=
2367         for arg in $aclocal_amflags; do
2368           if test -n "$m4dir_is_next"; then
2369             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
2370             case "$arg" in
2371               /*) ;;
2372               *)
2373                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
2374                   m4dirs="$m4dirs $arg"
2375                   m4dirs_count=`expr $m4dirs_count + 1`
2376                 fi
2377                 ;;
2378             esac
2379           else
2380             if test "X$arg" = "X-I"; then
2381               m4dir_is_next=yes
2382             else
2383               m4dir_is_next=
2384             fi
2385           fi
2386         done
2387       else
2388         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
2389         if test -f "$destdir"/aclocal.m4; then
2390           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
2391           sedexpr2='s,^[^/]*$,.,'
2392           sedexpr3='s,/[^/]*$,,'
2393           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort | LC_ALL=C uniq`
2394           m4dirs_count=`echo "$m4dirs" | wc -l`
2395         fi
2396       fi
2397       if test $m4dirs_count = 0; then
2398         # First use of gnulib in a package.
2399         # Any number of additional modules can be given.
2400         test -n "$supplied_libname" || supplied_libname=true
2401         test -n "$sourcebase" || sourcebase="lib"
2402         m4base="m4"
2403         test -n "$docbase" || docbase="doc"
2404         test -n "$testsbase" || testsbase="tests"
2405         test -n "$macro_prefix" || macro_prefix="gl"
2406         func_import "$*"
2407       else
2408         if test $m4dirs_count = 1; then
2409           # There's only one use of gnulib here. Assume the user means it.
2410           # Any number of additional modules can be given.
2411           for m4base in $m4dirs; do
2412             func_import "$*"
2413           done
2414         else
2415           # Ambiguous - guess what the user meant.
2416           if test $# = 0; then
2417             # No further arguments. Guess the user wants to update all of them.
2418             for m4base in $m4dirs; do
2419               func_import
2420             done
2421           else
2422             # Really ambiguous.
2423             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
2424           fi
2425         fi
2426       fi
2427     fi
2428     ;;
2429
2430   create-testdir )
2431     if test -z "$destdir"; then
2432       func_fatal_error "please specify --dir option"
2433     fi
2434     mkdir "$destdir"
2435     test -d "$destdir" \
2436       || func_fatal_error "could not create destination directory"
2437     test -n "$auxdir" || auxdir="build-aux"
2438     func_create_testdir "$destdir" "$*"
2439     ;;
2440
2441   create-megatestdir )
2442     if test -z "$destdir"; then
2443       func_fatal_error "please specify --dir option"
2444     fi
2445     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2446     test -n "$auxdir" || auxdir="build-aux"
2447     func_create_megatestdir "$destdir" "$*"
2448     ;;
2449
2450   test )
2451     test -n "$destdir" || destdir=testdir$$
2452     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2453     test -n "$auxdir" || auxdir="build-aux"
2454     func_create_testdir "$destdir" "$*"
2455     cd "$destdir"
2456       mkdir build
2457       cd build
2458         ../configure
2459         make
2460         make check
2461         make distclean
2462         remaining=`find . -type f -print`
2463         if test -n "$remaining"; then
2464           echo "Remaining files:" $remaining 1>&2
2465           echo "gnulib-tool: *** Stop." 1>&2
2466           exit 1
2467         fi
2468       cd ..
2469     cd ..
2470     rm -rf "$destdir"
2471     ;;
2472
2473   megatest )
2474     test -n "$destdir" || destdir=testdir$$
2475     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2476     test -n "$auxdir" || auxdir="build-aux"
2477     func_create_megatestdir "$destdir" "$*"
2478     cd "$destdir"
2479       mkdir build
2480       cd build
2481         ../configure
2482         make
2483         make check
2484         make distclean
2485         remaining=`find . -type f -print`
2486         if test -n "$remaining"; then
2487           echo "Remaining files:" $remaining 1>&2
2488           echo "gnulib-tool: *** Stop." 1>&2
2489           exit 1
2490         fi
2491       cd ..
2492     cd ..
2493     rm -rf "$destdir"
2494     ;;
2495
2496   extract-description )
2497     for module
2498     do
2499       func_verify_module
2500       if test -n "$module"; then
2501         func_get_description "$module"
2502       fi
2503     done
2504     ;;
2505
2506   extract-filelist )
2507     for module
2508     do
2509       func_verify_module
2510       if test -n "$module"; then
2511         func_get_filelist "$module"
2512       fi
2513     done
2514     ;;
2515
2516   extract-dependencies )
2517     for module
2518     do
2519       func_verify_module
2520       if test -n "$module"; then
2521         func_get_dependencies "$module"
2522       fi
2523     done
2524     ;;
2525
2526   extract-autoconf-snippet )
2527     for module
2528     do
2529       func_verify_module
2530       if test -n "$module"; then
2531         func_get_autoconf_snippet "$module"
2532       fi
2533     done
2534     ;;
2535
2536   extract-automake-snippet )
2537     for module
2538     do
2539       func_verify_module
2540       if test -n "$module"; then
2541         func_get_automake_snippet "$module"
2542       fi
2543     done
2544     ;;
2545
2546   extract-include-directive )
2547     for module
2548     do
2549       func_verify_module
2550       if test -n "$module"; then
2551         func_get_include_directive "$module"
2552       fi
2553     done
2554     ;;
2555
2556   extract-license )
2557     for module
2558     do
2559       func_verify_module
2560       if test -n "$module"; then
2561         func_get_license "$module"
2562       fi
2563     done
2564     ;;
2565
2566   extract-maintainer )
2567     for module
2568     do
2569       func_verify_module
2570       if test -n "$module"; then
2571         func_get_maintainer "$module"
2572       fi
2573     done
2574     ;;
2575
2576   extract-tests-module )
2577     for module
2578     do
2579       func_verify_module
2580       if test -n "$module"; then
2581         func_get_tests_module "$module"
2582       fi
2583     done
2584     ;;
2585
2586   * )
2587     func_fatal_error "unknown operation mode --$mode" ;;
2588 esac
2589
2590 rm -rf "$tmp"
2591 # Undo the effect of the previous 'trap' command. Some shellology:
2592 # We cannot use "trap - 0 1 2 3 15", because Solaris sh would attempt to
2593 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
2594 # exit); for the others we need to call 'exit' explicitly. The value of $? is
2595 # 128 + signal number and is set before the trap-registered command is run.
2596 trap '' 0
2597 trap 'exit $?' 1 2 3 15
2598
2599 exit 0