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