Tests modules are under GPL now.
[pspp] / 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-17 23:46:34 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28 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   func_lookup_file "modules/$1"
1024   { sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
1025     # The default is GPL.
1026     echo "GPL"
1027   } | sed -e 's,^ *$,,' | sed -e 1q
1028 }
1029
1030 # func_get_maintainer module
1031 # Input:
1032 # - local_gnulib_dir  from --local-dir
1033 func_get_maintainer ()
1034 {
1035   func_lookup_file "modules/$1"
1036   sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
1037 }
1038
1039 # func_get_tests_module module
1040 # Input:
1041 # - local_gnulib_dir  from --local-dir
1042 func_get_tests_module ()
1043 {
1044   # The naming convention for tests modules is hardwired: ${module}-tests.
1045   if test -f "$gnulib_dir/modules/$1"-tests \
1046      || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1047           && test -f "$local_gnulib_dir/modules/$1"-tests; }; then
1048     echo "$1"-tests
1049   fi
1050 }
1051
1052 # func_acceptable module
1053 # tests whether a module is acceptable.
1054 # Input:
1055 # - avoidlist       list of modules to avoid
1056 func_acceptable ()
1057 {
1058   for avoid in $avoidlist; do
1059     if test "$avoid" = "$1"; then
1060       return 1
1061     fi
1062   done
1063   return 0
1064 }
1065
1066 # func_modules_transitive_closure
1067 # Input:
1068 # - local_gnulib_dir  from --local-dir
1069 # - modules         list of specified modules
1070 # - inctests        true if tests should be included, blank otherwise
1071 # - avoidlist       list of modules to avoid
1072 # - tmp             pathname of a temporary directory
1073 # Output:
1074 # - modules         list of modules, including dependencies
1075 func_modules_transitive_closure ()
1076 {
1077   # In order to process every module only once (for speed), process an "input
1078   # list" of modules, producing an "output list" of modules. During each round,
1079   # more modules can be queued in the input list. Once a module on the input
1080   # list has been processed, it is added to the "handled list", so we can avoid
1081   # to process it again.
1082   handledmodules=
1083   inmodules="$modules"
1084   outmodules=
1085   while test -n "$inmodules"; do
1086     inmodules_this_round="$inmodules"
1087     inmodules=                    # Accumulator, queue for next round
1088     for module in $inmodules_this_round; do
1089       func_verify_module
1090       if test -n "$module"; then
1091         if func_acceptable $module; then
1092           func_append outmodules " $module"
1093           deps=`func_get_dependencies $module`
1094           # Duplicate dependencies are harmless, but Jim wants a warning.
1095           duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d`
1096           if test -n "$duplicated_deps"; then
1097             echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
1098           fi
1099           func_append inmodules " $deps"
1100           if test -n "$inctests"; then
1101             testsmodule=`func_get_tests_module $module`
1102             if test -n "$testsmodule"; then
1103               func_append inmodules " $testsmodule"
1104             fi
1105           fi
1106         fi
1107       fi
1108     done
1109     handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
1110     # Remove $handledmodules from $inmodules.
1111     for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
1112     inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
1113   done
1114   modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u`
1115   rm -f "$tmp"/queued-modules
1116 }
1117
1118 # func_modules_add_dummy
1119 # Input:
1120 # - local_gnulib_dir  from --local-dir
1121 # - modules         list of modules, including dependencies
1122 # Output:
1123 # - modules         list of modules, including 'dummy' if needed
1124 func_modules_add_dummy ()
1125 {
1126   have_lib_SOURCES=
1127   sed_remove_backslash_newline=':a
1128 /\\$/{
1129 s/\\$//
1130 N
1131 s/\n//
1132 ba
1133 }'
1134   for module in $modules; do
1135     func_verify_nontests_module
1136     if test -n "$module"; then
1137       # Extract the value of "lib_SOURCES += ...".
1138       for file in `func_get_automake_snippet "$module" | sed -e "$sed_remove_backslash_newline" | sed -n -e 's,^lib_SOURCES[     ]*+=\([^#]*\).*$,\1,p'`; do
1139         # Ignore .h files since they are not compiled.
1140         case "$file" in
1141           *.h) ;;
1142           *) have_lib_SOURCES=yes ;;
1143         esac
1144       done
1145     fi
1146   done
1147   # Add the dummy module, to make sure the library will be non-empty.
1148   if test -z "$have_lib_SOURCES"; then
1149     func_append modules " dummy"
1150   fi
1151 }
1152
1153 # func_modules_to_filelist
1154 # Input:
1155 # - local_gnulib_dir  from --local-dir
1156 # - modules         list of modules, including dependencies
1157 # Output:
1158 # - files           list of files
1159 func_modules_to_filelist ()
1160 {
1161   files=
1162   for module in $modules; do
1163     func_verify_module
1164     if test -n "$module"; then
1165       fs=`func_get_filelist $module`
1166       func_append files " $fs"
1167     fi
1168   done
1169   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
1170 }
1171
1172 # func_emit_lib_Makefile_am
1173 # emits the contents of library makefile to standard output.
1174 # Input:
1175 # - local_gnulib_dir  from --local-dir
1176 # - modules         list of modules, including dependencies
1177 # - libname         library name
1178 # - auxdir          directory relative to destdir where to place build aux files
1179 # - makefile_name   from --makefile-name
1180 # - libtool         true if libtool will be used, false or blank otherwise
1181 # - macro_prefix    prefix of gl_LIBOBJS macros to use
1182 # - actioncmd       (optional) command that will reproduce this invocation
1183 # Output:
1184 # - uses_subdirs    nonempty if object files in subdirs exist
1185 func_emit_lib_Makefile_am ()
1186 {
1187   # When creating an includable Makefile.am snippet, augment variables with
1188   # += instead of assigning them.
1189   if test -n "$makefile_name"; then
1190     assign='+='
1191   else
1192     assign='='
1193   fi
1194   if test "$libtool" = true; then
1195     libext=la
1196     perhapsLT=LT
1197     sed_eliminate_LDFLAGS=
1198   else
1199     libext=a
1200     perhapsLT=
1201     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1202   fi
1203   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1204   echo "## Process this file with automake to produce Makefile.in."
1205   func_emit_copyright_notice
1206   if test -n "$actioncmd"; then
1207     echo "# Reproduce by: $actioncmd"
1208   fi
1209   echo
1210   uses_subdirs=
1211   {
1212     for module in $modules; do
1213       func_verify_nontests_module
1214       if test -n "$module"; then
1215         {
1216           func_get_automake_snippet "$module" |
1217             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1218                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' |
1219             sed -e "$sed_eliminate_LDFLAGS" |
1220             sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' |
1221             sed -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1222                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g'
1223           if test "$module" = 'alloca'; then
1224             echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
1225             echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@"
1226           fi
1227         } > amsnippet.tmp
1228         # Skip the contents if its entirely empty.
1229         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1230           echo "## begin gnulib module $module"
1231           echo
1232           cat amsnippet.tmp
1233           echo "## end   gnulib module $module"
1234           echo
1235         fi
1236         rm -f amsnippet.tmp
1237         # Test whether there are some source files in subdirectories.
1238         for f in `func_get_filelist "$module"`; do
1239           case $f in
1240             lib/*/*.c) uses_subdirs=yes ;;
1241           esac
1242         done
1243       fi
1244     done
1245   } > allsnippets.tmp
1246   if test -z "$makefile_name"; then
1247     # If there are source files in subdirectories, prevent collision of the
1248     # object files (example: hash.c and libxml/hash.c).
1249     subdir_options=
1250     if test -n "$uses_subdirs"; then
1251       subdir_options=' subdir-objects'
1252     fi
1253     echo "AUTOMAKE_OPTIONS = 1.5 gnits${subdir_options}"
1254   fi
1255   echo
1256   if test -z "$makefile_name"; then
1257     echo "noinst_HEADERS ="
1258     echo "noinst_LIBRARIES ="
1259     echo "noinst_LTLIBRARIES ="
1260     # Automake versions < 1.9b create an empty pkgdatadir at installation time
1261     # if you specify pkgdata_DATA to empty. This is a workaround.
1262     if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1263       echo "pkgdata_DATA ="
1264     fi
1265     echo "EXTRA_DIST ="
1266     echo "BUILT_SOURCES ="
1267     echo "SUFFIXES ="
1268   fi
1269   echo "MOSTLYCLEANFILES $assign core *.stackdump"
1270   if test -z "$makefile_name"; then
1271     echo "MOSTLYCLEANDIRS ="
1272     echo "CLEANFILES ="
1273     echo "DISTCLEANFILES ="
1274     echo "MAINTAINERCLEANFILES ="
1275     echo
1276     echo "AM_CPPFLAGS ="
1277   fi
1278   echo
1279   if grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *= *$libname\\.$libext\$" allsnippets.tmp > /dev/null; then
1280     # One of the snippets already specifies an installation location for the
1281     # library. Don't confuse automake by saying it should not be installed.
1282     :
1283   else
1284     # By default, the generated library should not be installed.
1285     echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext"
1286   fi
1287   echo
1288   echo "${libname}_${libext}_SOURCES ="
1289   # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
1290   # automake during its analyses looks for $(LIBOBJS), not for @LIBOBJS@.
1291   echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1292   echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1293   echo "EXTRA_${libname}_${libext}_SOURCES ="
1294   if test "$libtool" = true; then
1295     echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)"
1296   fi
1297   echo
1298   cat allsnippets.tmp \
1299     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
1300   echo
1301   echo "mostlyclean-local: mostlyclean-generic"
1302   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1303   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1304   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1305   echo "          fi; \\"
1306   echo "        done"
1307   rm -f allsnippets.tmp
1308 }
1309
1310 # func_emit_tests_Makefile_am
1311 # emits the contents of tests makefile to standard output.
1312 # Input:
1313 # - local_gnulib_dir  from --local-dir
1314 # - modules         list of modules, including dependencies
1315 # - libname         library name
1316 # - makefile_name   from --makefile-name
1317 # - libtool         true if libtool will be used, false or blank otherwise
1318 # - sourcebase      relative directory containing lib source code
1319 # - m4base          relative directory containing autoconf macros
1320 # - testsbase       relative directory containing unit test code
1321 func_emit_tests_Makefile_am ()
1322 {
1323   if test "$libtool" = true; then
1324     libext=la
1325   else
1326     libext=a
1327   fi
1328   if test "$libtool" = true; then
1329     libext=la
1330     sed_eliminate_LDFLAGS=
1331   else
1332     libext=a
1333     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1334   fi
1335   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
1336   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1337   echo "## Process this file with automake to produce Makefile.in."
1338   func_emit_copyright_notice
1339   echo
1340   # Generate dependencies here, since it eases the debugging of test failures.
1341   echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1342   echo
1343   echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
1344   echo
1345   (
1346     for module in $modules; do
1347       func_verify_tests_module
1348       if test -n "$module"; then
1349         {
1350           func_get_automake_snippet "$module" |
1351             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1352                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' |
1353             sed -e "$sed_eliminate_LDFLAGS" |
1354             sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' |
1355             sed -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1356                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g'
1357         } > amsnippet.tmp
1358         # Skip the contents if its entirely empty.
1359         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1360           echo "## begin gnulib module $module"
1361           echo
1362           cat amsnippet.tmp
1363           echo "## end   gnulib module $module"
1364           echo
1365         fi
1366         rm -f amsnippet.tmp
1367       fi
1368     done
1369   ) > allsnippets.tmp
1370   # Nothing is being added to SUBDIRS; nevertheless the existence of this
1371   # variable is needed to avoid an error from automake:
1372   #   "AM_GNU_GETTEXT used but SUBDIRS not defined"
1373   echo "SUBDIRS ="
1374   echo "TESTS ="
1375   echo "TESTS_ENVIRONMENT ="
1376   echo "noinst_PROGRAMS ="
1377   echo "check_PROGRAMS ="
1378   echo "noinst_HEADERS ="
1379   if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1380     echo "pkgdata_DATA ="
1381   fi
1382   echo "EXTRA_DIST ="
1383   echo "BUILT_SOURCES ="
1384   echo "SUFFIXES ="
1385   echo "MOSTLYCLEANFILES = core *.stackdump"
1386   echo "MOSTLYCLEANDIRS ="
1387   echo "CLEANFILES ="
1388   echo "DISTCLEANFILES ="
1389   echo "MAINTAINERCLEANFILES ="
1390   echo
1391   echo "AM_CPPFLAGS = \\"
1392   echo "  -I. -I\$(srcdir) \\"
1393   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
1394   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
1395   echo
1396   echo "LDADD = ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}"
1397   echo
1398   cat allsnippets.tmp
1399   echo "# Clean up after Solaris cc."
1400   echo "clean-local:"
1401   echo "        rm -rf SunWS_cache"
1402   echo
1403   echo "mostlyclean-local: mostlyclean-generic"
1404   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1405   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1406   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1407   echo "          fi; \\"
1408   echo "        done"
1409   rm -f allsnippets.tmp
1410 }
1411
1412 # func_emit_initmacro_start
1413 # emits the first few statements of the gl_INIT macro to standard output.
1414 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1415 func_emit_initmacro_start ()
1416 {
1417   # Overriding AC_LIBOBJ and AC_REPLACE_FUNCS has the effect of storing
1418   # platform-dependent object files in ${macro_prefix}_LIBOBJS instead of
1419   # LIBOBJS.  The purpose is to allow several gnulib instantiations under
1420   # a single configure.ac file.  (AC_CONFIG_LIBOBJ_DIR does not allow this
1421   # flexibility.)
1422   # Furthermore it avoids an automake error like this when a Makefile.am
1423   # that uses pieces of gnulib also uses $(LIBOBJ):
1424   #   automatically discovered file `error.c' should not be explicitly mentioned
1425   echo "  m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix}_LIBOBJ]))"
1426   echo "  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix}_REPLACE_FUNCS]))"
1427   # Overriding AC_LIBSOURCES has the same purpose of avoiding the automake
1428   # error when a Makefile.am that uses pieces of gnulib also uses $(LIBOBJ):
1429   #   automatically discovered file `error.c' should not be explicitly mentioned
1430   # We let automake know about the files to be distributed through the
1431   # EXTRA_lib_SOURCES variable.
1432   echo "  m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix}_LIBSOURCES]))"
1433 }
1434
1435 # func_emit_initmacro_end
1436 # emits the last few statements of the gl_INIT macro to standard output.
1437 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1438 func_emit_initmacro_end ()
1439 {
1440   echo "  m4_popdef([AC_LIBSOURCES])"
1441   echo "  m4_popdef([AC_REPLACE_FUNCS])"
1442   echo "  m4_popdef([AC_LIBOBJ])"
1443   echo "  AC_CONFIG_COMMANDS_PRE(["
1444   echo "    ${macro_prefix}_libobjs="
1445   echo "    ${macro_prefix}_ltlibobjs="
1446   echo "    if test -n \"\$${macro_prefix}_LIBOBJS\"; then"
1447   echo "      # Remove the extension."
1448   echo "      sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
1449   echo "      for i in \`for i in \$${macro_prefix}_LIBOBJS; do echo \"\$i\"; done | sed \"\$sed_drop_objext\" | sort | uniq\`; do"
1450   echo "        ${macro_prefix}_libobjs=\"\$${macro_prefix}_libobjs \$i.\$ac_objext\""
1451   echo "        ${macro_prefix}_ltlibobjs=\"\$${macro_prefix}_ltlibobjs \$i.lo\""
1452   echo "      done"
1453   echo "    fi"
1454   echo "    AC_SUBST([${macro_prefix}_LIBOBJS], [\$${macro_prefix}_libobjs])"
1455   echo "    AC_SUBST([${macro_prefix}_LTLIBOBJS], [\$${macro_prefix}_ltlibobjs])"
1456   echo "  ])"
1457 }
1458
1459 # func_emit_initmacro_done
1460 # emits a few statements after the gl_INIT macro to standard output.
1461 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1462 func_emit_initmacro_done ()
1463 {
1464   echo
1465   echo "# Like AC_LIBOBJ, except that the module name goes"
1466   echo "# into ${macro_prefix}_LIBOBJS instead of into LIBOBJS."
1467   echo "AC_DEFUN([${macro_prefix}_LIBOBJ],"
1468   echo "  [${macro_prefix}_LIBOBJS=\"\$${macro_prefix}_LIBOBJS \$1.\$ac_objext\"])"
1469   echo
1470   echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
1471   echo "# into ${macro_prefix}_LIBOBJS instead of into LIBOBJS."
1472   echo "AC_DEFUN([${macro_prefix}_REPLACE_FUNCS],"
1473   echo "  [AC_CHECK_FUNCS([\$1], , [${macro_prefix}_LIBOBJ(\$ac_func)])])"
1474   echo
1475   echo "# Like AC_LIBSOURCES, except that it does nothing."
1476   echo "# We rely on EXTRA_lib..._SOURCES instead."
1477   echo "AC_DEFUN([${macro_prefix}_LIBSOURCES],"
1478   echo "  [])"
1479 }
1480
1481 # func_import modules
1482 # Uses also the variables
1483 # - destdir         target directory
1484 # - local_gnulib_dir  from --local-dir
1485 # - libname         library name
1486 # - sourcebase      directory relative to destdir where to place source code
1487 # - m4base          directory relative to destdir where to place *.m4 macros
1488 # - docbase         directory relative to destdir where to place doc files
1489 # - testsbase       directory relative to destdir where to place unit test code
1490 # - auxdir          directory relative to destdir where to place build aux files
1491 # - inctests        true if --with-tests was given, blank otherwise
1492 # - avoidlist       list of modules to avoid, from --avoid
1493 # - lgpl            true if library's license shall be LGPL, blank otherwise
1494 # - makefile_name   from --makefile-name
1495 # - libtool         true if --libtool was given, false if --no-libtool was
1496 #                   given, blank otherwise
1497 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
1498 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
1499 # - autoconf_minversion  minimum supported autoconf version
1500 # - doit            : if actions shall be executed, false if only to be printed
1501 # - symbolic        true if files should be symlinked, copied otherwise
1502 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
1503 #                   copied otherwise
1504 func_import ()
1505 {
1506   # Get the cached settings.
1507   cached_local_gnulib_dir=
1508   cached_specified_modules=
1509   cached_avoidlist=
1510   cached_sourcebase=
1511   cached_m4base=
1512   cached_docbase=
1513   cached_testsbase=
1514   cached_libname=
1515   cached_lgpl=
1516   cached_makefile_name=
1517   cached_libtool=
1518   cached_macro_prefix=
1519   cached_files=
1520   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
1521     cached_libtool=false
1522     my_sed_traces='
1523       s,#.*$,,
1524       s,^dnl .*$,,
1525       s, dnl .*$,,
1526       /gl_LOCAL_DIR(/ {
1527         s,^.*gl_LOCAL_DIR([[ ]*\([^])]*\).*$,cached_local_gnulib_dir="\1",p
1528       }
1529       /gl_MODULES(/ {
1530         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
1531       }
1532       /gl_AVOID(/ {
1533         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
1534       }
1535       /gl_SOURCE_BASE(/ {
1536         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
1537       }
1538       /gl_M4_BASE(/ {
1539         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
1540       }
1541       /gl_DOC_BASE(/ {
1542         s,^.*gl_DOC_BASE([[ ]*\([^])]*\).*$,cached_docbase="\1",p
1543       }
1544       /gl_TESTS_BASE(/ {
1545         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
1546       }
1547       /gl_LIB(/ {
1548         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
1549       }
1550       /gl_LGPL/ {
1551         s,^.*$,cached_lgpl=true,p
1552       }
1553       /gl_MAKEFILE_NAME(/ {
1554         s,^.*gl_MAKEFILE_NAME([[ ]*\([^])]*\).*$,cached_makefile_name="\1",p
1555       }
1556       /gl_LIBTOOL/ {
1557         s,^.*$,cached_libtool=true,p
1558       }
1559       /gl_MACRO_PREFIX(/ {
1560         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
1561       }'
1562     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
1563     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
1564       my_sed_traces='
1565         s,#.*$,,
1566         s,^dnl .*$,,
1567         s, dnl .*$,,
1568         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
1569           s,^.*$,cached_files=",p
1570           n
1571           ta
1572           :a
1573           s,^\]).*$,",
1574           tb
1575           p
1576           n
1577           ba
1578           :b
1579           p
1580         }'
1581       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
1582     fi
1583   fi
1584
1585   # Merge the cached settings with the specified ones.
1586   # The m4base must be the same as expected from the pathname.
1587   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
1588     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
1589   fi
1590   # The local_gnulib_dir defaults to the cached one. Recall that the cached one
1591   # is relative to $destdir, whereas the one we use is relative to . or absolute.
1592   if test -z "$local_gnulib_dir"; then
1593     if test -n "$cached_local_gnulib_dir"; then
1594       case "$destdir" in
1595         /*)
1596           local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
1597         *)
1598           case "$cached_local_gnulib_dir" in
1599             /*)
1600               local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
1601             *)
1602               func_relconcat "$destdir" "$cached_local_gnulib_dir"
1603               local_gnulib_dir="$relconcat" ;;
1604           esac ;;
1605       esac
1606     fi
1607   fi
1608   # Append the cached and the specified module names. So that
1609   # "gnulib-tool --import foo" means to add the module foo.
1610   specified_modules="$cached_specified_modules $1"
1611   # Append the cached and the specified avoidlist. This is probably better
1612   # than dropping the cached one when --avoid is specified at least once.
1613   avoidlist=`echo $cached_avoidlist $avoidlist`
1614   # The sourcebase defaults to the cached one.
1615   if test -z "$sourcebase"; then
1616     sourcebase="$cached_sourcebase"
1617     if test -z "$sourcebase"; then
1618       func_fatal_error "missing --source-base option"
1619     fi
1620   fi
1621   # The docbase defaults to the cached one.
1622   if test -z "$docbase"; then
1623     docbase="$cached_docbase"
1624     if test -z "$docbase"; then
1625       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."
1626     fi
1627   fi
1628   # The testsbase defaults to the cached one.
1629   if test -z "$testsbase"; then
1630     testsbase="$cached_testsbase"
1631     if test -z "$testsbase"; then
1632       func_fatal_error "missing --tests-base option"
1633     fi
1634   fi
1635   # The libname defaults to the cached one.
1636   if test -z "$supplied_libname"; then
1637     libname="$cached_libname"
1638     if test -z "$libname"; then
1639       func_fatal_error "missing --lib option"
1640     fi
1641   fi
1642   # Require LGPL if specified either way.
1643   if test -z "$lgpl"; then
1644     lgpl="$cached_lgpl"
1645   fi
1646   # The makefile_name defaults to the cached one.
1647   if test -z "$makefile_name"; then
1648     makefile_name="$cached_makefile_name"
1649   fi
1650   # Use libtool if specified either way, or if guessed.
1651   if test -z "$libtool"; then
1652     if test -n "$cached_m4base"; then
1653       libtool="$cached_libtool"
1654     else
1655       libtool="$guessed_libtool"
1656     fi
1657   fi
1658   # The macro_prefix defaults to the cached one.
1659   if test -z "$macro_prefix"; then
1660     macro_prefix="$cached_macro_prefix"
1661     if test -z "$macro_prefix"; then
1662       func_fatal_error "missing --macro-prefix option"
1663     fi
1664   fi
1665
1666   # Canonicalize the list of specified modules.
1667   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
1668
1669   # Determine final module list.
1670   modules="$specified_modules"
1671   func_modules_transitive_closure
1672   echo "Module list with included dependencies:"
1673   echo "$modules" | sed -e 's/^/  /'
1674
1675   # Add the dummy module if needed.
1676   func_modules_add_dummy
1677
1678   # If --lgpl, verify that the licenses of modules are compatible.
1679   if test -n "$lgpl"; then
1680     for module in $modules; do
1681       license=`func_get_license $module`
1682       case $license in
1683         LGPL | 'GPLed build tool') ;;
1684         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
1685         *) func_fatal_error "incompatible license on module $module: $license" ;;
1686       esac
1687     done
1688   fi
1689
1690   # Determine script to apply to imported library files.
1691   sed_transform_lib_file=
1692   for module in $modules; do
1693     if test $module = config-h; then
1694       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
1695       sed_transform_lib_file=$sed_transform_lib_file'
1696         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
1697       '
1698       break
1699     fi
1700   done
1701   if test -n "$lgpl"; then
1702     # Update license.
1703     sed_transform_lib_file=$sed_transform_lib_file'
1704       s/GNU General/GNU Lesser General/g
1705       s/version 2\([ ,]\)/version 2.1\1/g
1706     '
1707   fi
1708
1709   # Determine final file list.
1710   func_modules_to_filelist
1711   echo "File list:"
1712   echo "$files" | sed -e 's/^/  /'
1713
1714   test -n "$files" \
1715     || func_fatal_error "refusing to do nothing"
1716
1717   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
1718   new_files="$files m4/gnulib-tool.m4"
1719   old_files="$cached_files"
1720   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
1721     func_append old_files " m4/gnulib-tool.m4"
1722   fi
1723
1724   sed_rewrite_old_files="\
1725     s,^build-aux/,$auxdir/,
1726     s,^doc/,$cached_docbase/,
1727     s,^lib/,$cached_sourcebase/,
1728     s,^m4/,$cached_m4base/,
1729     s,^tests/,$cached_testsbase/,"
1730   sed_rewrite_new_files="\
1731     s,^build-aux/,$auxdir/,
1732     s,^doc/,$docbase/,
1733     s,^lib/,$sourcebase/,
1734     s,^m4/,$m4base/,
1735     s,^tests/,$testsbase/,"
1736
1737   # Create directories.
1738   { echo "$sourcebase"
1739     echo "$m4base"
1740     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
1741     if test -n "$docfiles"; then
1742       echo "$docbase"
1743     fi
1744     if test -n "$inctests"; then
1745       echo "$testsbase"
1746     fi
1747     echo "$auxdir"
1748     for f in $files; do echo $f; done \
1749       | sed -e "$sed_rewrite_new_files" \
1750       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
1751       | LC_ALL=C sort -u
1752   } > "$tmp"/dirs
1753   { # Rearrange file descriptors. Needed because "while ... done < ..."
1754     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
1755     exec 5<&0 < "$tmp"/dirs
1756     while read d; do
1757       if test ! -d "$destdir/$d"; then
1758         if $doit; then
1759           echo "Creating directory $destdir/$d"
1760           mkdir -p "$destdir/$d" || func_fatal_error "failed"
1761         else
1762           echo "Create directory $destdir/$d"
1763         fi
1764       fi
1765     done
1766     exec 0<&5 5<&-
1767   }
1768
1769   # func_dest_tmpfilename file
1770   # determines the name of a temporary file (file is relative to destdir).
1771   # Sets variable:
1772   #   - tmpfile       absolute filename of the temporary file
1773   func_dest_tmpfilename ()
1774   {
1775     if $doit; then
1776       # Put the new contents of $file in a file in the same directory (needed
1777       # to guarantee that an 'mv' to "$destdir/$file" works).
1778       tmpfile="$destdir/$1.tmp"
1779     else
1780       # Put the new contents of $file in a file in a temporary directory
1781       # (because the directory of "$file" might not exist).
1782       tmpfile="$tmp"/`basename "$1"`.tmp
1783     fi
1784   }
1785
1786   # Copy files or make symbolic links. Remove obsolete files.
1787   delimiter='   '
1788   # Construct a table with 2 columns: rewritten-file-name original-file-name,
1789   # representing the files according to the last gnulib-tool invocation.
1790   for f in $old_files; do echo $f; done \
1791     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
1792     | LC_ALL=C sort \
1793     > "$tmp"/old-files
1794   # Construct a table with 2 columns: rewritten-file-name original-file-name,
1795   # representing the files after this gnulib-tool invocation.
1796   for f in $new_files; do echo $f; done \
1797     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
1798     | LC_ALL=C sort \
1799     > "$tmp"/new-files
1800   # First the files that are in old-files, but not in new-files:
1801   sed_take_first_column='s,'"$delimiter"'.*,,'
1802   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
1803     # Remove the file. Do nothing if the user already removed it.
1804     if test -f "$destdir/$g"; then
1805       if $doit; then
1806         echo "Removing file $g (backup in ${g}~)"
1807         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1808       else
1809         echo "Remove file $g (backup in ${g}~)"
1810       fi
1811     fi
1812   done
1813   # func_add_or_update handles a file that ought to be present afterwards.
1814   # Uses parameters
1815   # - f             the original file name
1816   # - g             the rewritten file name
1817   # - already_present  nonempty if the file already exists, empty otherwise
1818   func_add_or_update ()
1819   {
1820     func_dest_tmpfilename "$g"
1821     func_lookup_file "$f"
1822     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
1823     if test -n "$sed_transform_lib_file"; then
1824       case "$f" in
1825         lib/*)
1826           sed -e "$sed_transform_lib_file" \
1827             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
1828           ;;
1829       esac
1830     fi
1831     if test -f "$destdir/$g"; then
1832       # The file already exists.
1833       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
1834         : # The file has not changed.
1835       else
1836         # Replace the file.
1837         if $doit; then
1838           if test -n "$already_present"; then
1839             echo "Updating file $g (backup in ${g}~)"
1840           else
1841             echo "Replacing file $g (non-gnulib code backuped in ${g}~) !!"
1842           fi
1843           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1844           if { test -n "$symbolic" \
1845                || { test -n "$lsymbolic" \
1846                     && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
1847              && test -z "$lookedup_tmp" \
1848              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1849             func_ln_if_changed "$lookedup_file" "$destdir/$g"
1850           else
1851             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1852           fi
1853         else
1854           if test -n "$already_present"; then
1855             echo "Update file $g (backup in ${g}~)"
1856           else
1857             echo "Replace file $g (non-gnulib code backuped in ${g}~) !!"
1858           fi
1859         fi
1860       fi
1861     else
1862       # Install the file.
1863       # Don't protest if the file should be there but isn't: it happens
1864       # frequently that developers don't put autogenerated files into CVS.
1865       if $doit; then
1866         echo "Copying file $g"
1867         if { test -n "$symbolic" \
1868              || { test -n "$lsymbolic" \
1869                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
1870            && test -z "$lookedup_tmp" \
1871            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
1872           func_ln_if_changed "$lookedup_file" "$destdir/$g"
1873         else
1874           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
1875         fi
1876       else
1877         echo "Copy file $g"
1878       fi
1879     fi
1880     rm -f "$tmpfile"
1881   }
1882   # Then the files that are in new-files, but not in old-files:
1883   sed_take_last_column='s,^.*'"$delimiter"',,'
1884   already_present=
1885   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
1886     | sed -e "$sed_take_last_column" \
1887     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
1888   { # Rearrange file descriptors. Needed because "while ... done < ..."
1889     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
1890     exec 5<&0 < "$tmp"/added-files
1891     while read g f; do
1892       func_add_or_update
1893     done
1894     exec 0<&5 5<&-
1895   }
1896   # Then the files that are in new-files and in old-files:
1897   already_present=true
1898   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
1899     | sed -e "$sed_take_last_column" \
1900     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
1901   { # Rearrange file descriptors. Needed because "while ... done < ..."
1902     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
1903     exec 5<&0 < "$tmp"/kept-files
1904     while read g f; do
1905       func_add_or_update
1906     done
1907     exec 0<&5 5<&-
1908   }
1909
1910   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
1911   actioncmd="gnulib-tool --import"
1912   func_append actioncmd " --dir=$destdir"
1913   if test -n "$local_gnulib_dir"; then
1914     func_append actioncmd " --local-dir=$local_gnulib_dir"
1915   fi
1916   func_append actioncmd " --lib=$libname"
1917   func_append actioncmd " --source-base=$sourcebase"
1918   func_append actioncmd " --m4-base=$m4base"
1919   func_append actioncmd " --doc-base=$docbase"
1920   func_append actioncmd " --aux-dir=$auxdir"
1921   for module in $avoidlist; do
1922     func_append actioncmd " --avoid=$module"
1923   done
1924   if test -n "$lgpl"; then
1925     func_append actioncmd " --lgpl"
1926   fi
1927   if test -n "$makefile_name"; then
1928     func_append actioncmd " --makefile-name=$makefile_name"
1929   fi
1930   if test "$libtool" = true; then
1931     func_append actioncmd " --libtool"
1932   else
1933     func_append actioncmd " --no-libtool"
1934   fi
1935   func_append actioncmd " --macro-prefix=$macro_prefix"
1936   func_append actioncmd " `echo $specified_modules`"
1937
1938   # Default the makefile name to Makefile.am.
1939   if test -n "$makefile_name"; then
1940     makefile_am=$makefile_name
1941   else
1942     makefile_am=Makefile.am
1943   fi
1944
1945   # Create library makefile.
1946   func_dest_tmpfilename $sourcebase/$makefile_am
1947   func_emit_lib_Makefile_am > "$tmpfile"
1948   if test -f "$destdir"/$sourcebase/$makefile_am; then
1949     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
1950       rm -f "$tmpfile"
1951     else
1952       if $doit; then
1953         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
1954         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
1955         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
1956       else
1957         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
1958         rm -f "$tmpfile"
1959       fi
1960     fi
1961   else
1962     if $doit; then
1963       echo "Creating $sourcebase/$makefile_am"
1964       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
1965     else
1966       echo "Create $sourcebase/$makefile_am"
1967       rm -f "$tmpfile"
1968     fi
1969   fi
1970
1971   # Create m4/gnulib-cache.m4.
1972   func_dest_tmpfilename $m4base/gnulib-cache.m4
1973   (
1974     func_emit_copyright_notice
1975     echo "#"
1976     echo "# This file represents the specification of how gnulib-tool is used."
1977     echo "# It acts as a cache: It is written and read by gnulib-tool."
1978     echo "# In projects using CVS, this file is meant to be stored in CVS,"
1979     echo "# like the configure.ac and various Makefile.am files."
1980     echo
1981     echo
1982     echo "# Specification in the form of a command-line invocation:"
1983     echo "#   $actioncmd"
1984     echo
1985     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
1986     # Store the local_gnulib_dir relative to destdir.
1987     case "$local_gnulib_dir" in
1988       "" | /*)
1989         relative_local_gnulib_dir="$local_gnulib_dir" ;;
1990       * )
1991         case "$destdir" in
1992           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
1993           *)
1994             # destdir, local_gnulib_dir are both relative.
1995             func_relativize "$destdir" "$local_gnulib_dir"
1996             relative_local_gnulib_dir="$reldir" ;;
1997         esac ;;
1998     esac
1999     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
2000     echo "gl_MODULES(["`echo $specified_modules`"])"
2001     echo "gl_AVOID([$avoidlist])"
2002     echo "gl_SOURCE_BASE([$sourcebase])"
2003     echo "gl_M4_BASE([$m4base])"
2004     echo "gl_DOC_BASE([$docbase])"
2005     echo "gl_TESTS_BASE([$testsbase])"
2006     echo "gl_LIB([$libname])"
2007     test -z "$lgpl" || echo "gl_LGPL"
2008     echo "gl_MAKEFILE_NAME([$makefile_name])"
2009     if test "$libtool" = true; then
2010       echo "gl_LIBTOOL"
2011     fi
2012     echo "gl_MACRO_PREFIX([$macro_prefix])"
2013   ) > "$tmpfile"
2014   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
2015     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
2016       rm -f "$tmpfile"
2017     else
2018       if $doit; then
2019         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
2020         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
2021         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
2022       else
2023         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
2024         if false; then
2025           cat "$tmpfile"
2026           echo
2027           echo "# gnulib-cache.m4 ends here"
2028         fi
2029         rm -f "$tmpfile"
2030       fi
2031     fi
2032   else
2033     if $doit; then
2034       echo "Creating $m4base/gnulib-cache.m4"
2035       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
2036     else
2037       echo "Create $m4base/gnulib-cache.m4"
2038       cat "$tmpfile"
2039       rm -f "$tmpfile"
2040     fi
2041   fi
2042
2043   # Create m4/gnulib-comp.m4.
2044   func_dest_tmpfilename $m4base/gnulib-comp.m4
2045   (
2046     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
2047     func_emit_copyright_notice
2048     echo "#"
2049     echo "# This file represents the compiled summary of the specification in"
2050     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
2051     echo "# to be invoked from configure.ac."
2052     echo "# In projects using CVS, this file can be treated like other built files."
2053     echo
2054     echo
2055     echo "# This macro should be invoked from $configure_ac, in the section"
2056     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
2057     echo "# any checks for libraries, header files, types and library functions."
2058     echo "AC_DEFUN([${macro_prefix}_EARLY],"
2059     echo "["
2060     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
2061     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
2062     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
2063     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
2064     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
2065     if test -n "$uses_subdirs"; then
2066       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
2067     fi
2068     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
2069       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
2070     fi
2071     if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
2072       echo "  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])"
2073     fi
2074     if grep gl_LOCK "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
2075       echo "  AC_REQUIRE([gl_LOCK_EARLY])"
2076     fi
2077     echo "])"
2078     echo
2079     echo "# This macro should be invoked from $configure_ac, in the section"
2080     echo "# \"Check for header files, types and library functions\"."
2081     echo "AC_DEFUN([${macro_prefix}_INIT],"
2082     echo "["
2083     func_emit_initmacro_start
2084     if test "$libtool" = true; then
2085       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2086       echo "  gl_cond_libtool=true"
2087     else
2088       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2089       echo "  gl_cond_libtool=false"
2090       echo "  gl_libdeps="
2091       echo "  gl_ltlibdeps="
2092     fi
2093     echo "  gl_source_base='$sourcebase'"
2094     if test "$auxdir" != "build-aux"; then
2095       sed_replace_build_aux='
2096         :a
2097         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2098           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
2099           ba
2100         }'
2101       sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
2102     else
2103       sed_replace_build_aux=
2104     fi
2105     for module in $modules; do
2106       func_verify_module
2107       if test -n "$module"; then
2108         func_get_autoconf_snippet "$module" \
2109           | sed -e '/^$/d;' -e 's/^/  /' \
2110                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
2111                 -e "$sed_replace_build_aux"
2112         if test "$module" = 'alloca' && test "$libtool" = true; then
2113           echo 'changequote(,)dnl'
2114           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
2115           echo 'changequote([, ])dnl'
2116           echo 'AC_SUBST([LTALLOCA])'
2117         fi
2118       fi
2119     done
2120     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
2121     # created using libtool, because libtool already handles the dependencies.
2122     if test "$libtool" != true; then
2123       libname_upper=`echo "$libname" | tr 'a-z' 'A-Z'`
2124       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
2125       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
2126       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
2127       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
2128     fi
2129     func_emit_initmacro_end
2130     echo "])"
2131     func_emit_initmacro_done
2132     echo
2133     echo "# This macro records the list of files which have been installed by"
2134     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
2135     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
2136     echo "$files" | sed -e 's,^,  ,'
2137     echo "])"
2138   ) > "$tmpfile"
2139   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
2140     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
2141       rm -f "$tmpfile"
2142     else
2143       if $doit; then
2144         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
2145         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
2146         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
2147       else
2148         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
2149         if false; then
2150           cat "$tmpfile"
2151           echo
2152           echo "# gnulib-comp.m4 ends here"
2153         fi
2154         rm -f "$tmpfile"
2155       fi
2156     fi
2157   else
2158     if $doit; then
2159       echo "Creating $m4base/gnulib-comp.m4"
2160       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
2161     else
2162       echo "Create $m4base/gnulib-comp.m4"
2163       cat "$tmpfile"
2164       rm -f "$tmpfile"
2165     fi
2166   fi
2167
2168   if test -n "$inctests"; then
2169     # Create tests makefile.
2170     func_dest_tmpfilename $testsbase/$makefile_am
2171     func_emit_tests_Makefile_am > "$tmpfile"
2172     if test -f "$destdir"/$testsbase/$makefile_am; then
2173       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
2174         rm -f "$tmpfile"
2175       else
2176         if $doit; then
2177           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
2178           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
2179           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
2180         else
2181           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
2182           rm -f "$tmpfile"
2183         fi
2184       fi
2185     else
2186       if $doit; then
2187         echo "Creating $testsbase/$makefile_am"
2188         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
2189       else
2190         echo "Create $testsbase/$makefile_am"
2191         rm -f "$tmpfile"
2192       fi
2193     fi
2194   fi
2195
2196   echo "Finished."
2197   echo
2198   echo "You may need to add #include directives for the following .h files."
2199   # Intersect $specified_modules and $modules
2200   # (since $specified_modules is not necessarily of subset of $modules - some
2201   # may have been skipped through --avoid, and since the elements of $modules
2202   # but not in $specified_modules can go away without explicit notice - through
2203   # changes in the module dependencies).
2204   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
2205   echo "$modules" > "$tmp"/modules2 # also a sorted list, one module per line
2206   # First the #include <...> directives without #ifs, sorted for convenience,
2207   # then the #include "..." directives without #ifs, sorted for convenience,
2208   # then the #include directives that are surrounded by #ifs. Not sorted.
2209   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
2210     include_directive=`func_get_include_directive "$module"`
2211     case "$nl$include_directive" in
2212       *"$nl#if"*)
2213         echo "$include_directive" 1>&5
2214         ;;
2215       *)
2216         echo "$include_directive" | grep -v 'include "' 1>&6
2217         echo "$include_directive" | grep 'include "' 1>&7
2218         ;;
2219     esac
2220   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
2221   (
2222    LC_ALL=C sort -u "$tmp"/include-angles
2223    LC_ALL=C sort -u "$tmp"/include-quotes
2224    cat "$tmp"/include-if
2225   ) | sed -e '/^$/d' -e 's/^/  /'
2226   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
2227
2228   echo
2229   echo "Don't forget to"
2230   if test "$makefile_am" = Makefile.am; then
2231     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
2232   else
2233     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
2234   fi
2235   if test -n "$inctests"; then
2236     if test "$makefile_am" = Makefile.am; then
2237       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
2238     else
2239       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
2240     fi
2241   fi
2242   if test "$makefile_am" = Makefile.am; then
2243     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
2244     sourcebase_base=`basename "$sourcebase"`
2245     echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
2246   fi
2247   if test -n "$inctests"; then
2248     if test "$makefile_am" = Makefile.am; then
2249       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
2250       testsbase_base=`basename "$testsbase"`
2251       echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
2252     fi
2253   fi
2254   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
2255   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
2256   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
2257 }
2258
2259 # func_create_testdir testdir modules
2260 # Input:
2261 # - local_gnulib_dir  from --local-dir
2262 # - auxdir          directory relative to destdir where to place build aux files
2263 func_create_testdir ()
2264 {
2265   testdir="$1"
2266   modules="$2"
2267   if test -z "$modules"; then
2268     # All modules together.
2269     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
2270     # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
2271     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
2272     modules=`func_all_modules`
2273     modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done`
2274   fi
2275   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
2276
2277   # Check that the license of every module is consistent with the license of
2278   # its dependencies.
2279   saved_modules="$modules"
2280   saved_inctests="$inctests"
2281   # When computing transitive closures, don't consider $module to depend on
2282   # $module-tests. Need this becauses tests are implicitly GPL and may depend
2283   # on GPL modules - therefore we don't want a warning in this case.
2284   inctests=""
2285   for requested_module in $saved_modules; do
2286     requested_license=`func_get_license "$requested_module"`
2287     if test "$requested_license" != GPL; then
2288       # Here we use func_modules_transitive_closure, not just
2289       # func_get_dependencies, so that we also detect weird situations like
2290       # an LGPL module which depends on a GPLed build tool module which depends
2291       # on a GPL module.
2292       modules="$requested_module"
2293       func_modules_transitive_closure
2294       for module in $modules; do
2295         license=`func_get_license "$module"`
2296         case $license in
2297           LGPL | 'GPLed build tool') ;;
2298           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
2299           *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
2300         esac
2301       done
2302     fi
2303   done
2304   modules="$saved_modules"
2305   inctests="$saved_inctests"
2306
2307   # Subdirectory names.
2308   sourcebase=gllib
2309   m4base=glm4
2310   docbase=gldoc
2311   testsbase=gltests
2312   macro_prefix=gl
2313
2314   # Determine final module list.
2315   func_modules_transitive_closure
2316   echo "Module list with included dependencies:"
2317   echo "$modules" | sed -e 's/^/  /'
2318
2319   # Add the dummy module if needed.
2320   func_modules_add_dummy
2321
2322   # Determine final file list.
2323   func_modules_to_filelist
2324   echo "File list:"
2325   echo "$files" | sed -e 's/^/  /'
2326
2327   sed_rewrite_files="\
2328     s,^build-aux/,$auxdir/,
2329     s,^doc/,$docbase/,
2330     s,^lib/,$sourcebase/,
2331     s,^m4/,$m4base/,
2332     s,^tests/,$testsbase/,"
2333
2334   # Create directories.
2335   for f in $files; do echo $f; done \
2336     | sed -e "$sed_rewrite_files" \
2337     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
2338     | LC_ALL=C sort -u \
2339     > "$tmp"/dirs
2340   { # Rearrange file descriptors. Needed because "while ... done < ..."
2341     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2342     exec 5<&0 < "$tmp"/dirs
2343     while read d; do
2344       mkdir -p "$testdir/$d"
2345     done
2346     exec 0<&5 5<&-
2347   }
2348
2349   # Copy files or make symbolic links.
2350   delimiter='   '
2351   for f in $files; do echo $f; done \
2352     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
2353     | LC_ALL=C sort \
2354     > "$tmp"/files
2355   { # Rearrange file descriptors. Needed because "while ... done < ..."
2356     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2357     exec 5<&0 < "$tmp"/files
2358     while read g f; do
2359       func_lookup_file "$f"
2360       if test -n "$lookedup_tmp"; then
2361         cp -p "$lookedup_file" "$testdir/$g"
2362       else
2363         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
2364         if { test -n "$symbolic" \
2365              || { test -n "$lsymbolic" \
2366                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
2367           func_ln "$lookedup_file" "$testdir/$g"
2368         else
2369           cp -p "$lookedup_file" "$testdir/$g"
2370         fi
2371       fi
2372     done
2373     exec 0<&5 5<&-
2374   }
2375
2376   # Create $sourcebase/Makefile.am.
2377   mkdir -p "$testdir/$sourcebase"
2378   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
2379
2380   # Create $m4base/Makefile.am.
2381   mkdir -p "$testdir/$m4base"
2382   (echo "## Process this file with automake to produce Makefile.in."
2383    echo
2384    echo "EXTRA_DIST ="
2385    for f in $files; do
2386      case "$f" in
2387        m4/* )
2388          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
2389      esac
2390    done
2391   ) > "$testdir/$m4base/Makefile.am"
2392
2393   subdirs="$sourcebase $m4base"
2394   subdirs_with_configure_ac=""
2395
2396   if false && test -f "$testdir"/$m4base/gettext.m4; then
2397     # Avoid stupid error message from automake:
2398     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
2399     mkdir -p "$testdir/po"
2400     (echo "## Process this file with automake to produce Makefile.in."
2401     ) > "$testdir/po/Makefile.am"
2402     func_append subdirs " po"
2403   fi
2404
2405   if test -n "$inctests"; then
2406     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
2407     # Create $testsbase/Makefile.am.
2408     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
2409     # Create $testsbase/configure.ac.
2410     (echo "# Process this file with autoconf to produce a configure script."
2411      echo "AC_INIT([dummy], [0])"
2412      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
2413      echo "AM_INIT_AUTOMAKE"
2414      echo
2415      echo "AM_CONFIG_HEADER([config.h])"
2416      echo
2417      echo "AC_PROG_CC"
2418      echo "AC_PROG_INSTALL"
2419      echo "AC_PROG_MAKE_SET"
2420      echo "AC_PROG_RANLIB"
2421      echo
2422      if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2423        echo "AC_GNU_SOURCE"
2424        echo
2425      fi
2426      if grep gl_USE_SYSTEM_EXTENSIONS "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2427        echo "gl_USE_SYSTEM_EXTENSIONS"
2428        echo
2429      fi
2430      if grep gl_LOCK "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2431        echo "gl_LOCK_EARLY"
2432        echo
2433      fi
2434      if test "$libtool" = true; then
2435        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2436        echo "gl_cond_libtool=true"
2437      else
2438        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2439        echo "gl_cond_libtool=false"
2440        echo "gl_libdeps="
2441        echo "gl_ltlibdeps="
2442      fi
2443      # Wrap the set of autoconf snippets into an autoconf macro that is then
2444      # invoked. This is needed because autoconf does not support AC_REQUIRE
2445      # at the top level:
2446      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
2447      # but we want the AC_REQUIRE to have its normal meaning (provide one
2448      # expansion of the required macro before the current point, and only one
2449      # expansion total).
2450      echo "AC_DEFUN([gl_INIT], ["
2451      func_emit_initmacro_start
2452      sed_replace_build_aux='
2453        :a
2454        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2455          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:../'"$auxdir"'/\2)|
2456          ba
2457        }'
2458      sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
2459      # We don't have explicit ordering constraints between the various
2460      # autoconf snippets. It's cleanest to put those of the library before
2461      # those of the tests.
2462      echo "gl_source_base='../$sourcebase'"
2463      for module in $modules; do
2464        func_verify_nontests_module
2465        if test -n "$module"; then
2466          func_get_autoconf_snippet "$module" \
2467            | sed -e "$sed_replace_build_aux"
2468        fi
2469      done
2470      echo "gl_source_base='.'"
2471      for module in $modules; do
2472        func_verify_tests_module
2473        if test -n "$module"; then
2474          func_get_autoconf_snippet "$module" \
2475            | sed -e "$sed_replace_build_aux"
2476        fi
2477      done
2478      # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
2479      # created using libtool, because libtool already handles the dependencies.
2480      if test "$libtool" != true; then
2481        libname_upper=`echo "$libname" | tr 'a-z' 'A-Z'`
2482        echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
2483        echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
2484        echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
2485        echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
2486      fi
2487      func_emit_initmacro_end
2488      echo "])"
2489      func_emit_initmacro_done
2490      echo
2491      echo "gl_INIT"
2492      echo
2493      # Usually $testsbase/config.h will be a superset of config.h. Verify this
2494      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
2495      echo "AH_TOP([#include \"../config.h\"])"
2496      echo
2497      echo "AC_OUTPUT([Makefile])"
2498     ) > "$testdir/$testsbase/configure.ac"
2499     func_append subdirs " $testsbase"
2500     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
2501   fi
2502
2503   # Create Makefile.am.
2504   (echo "## Process this file with automake to produce Makefile.in."
2505    echo
2506    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
2507    echo
2508    echo "SUBDIRS = $subdirs"
2509    echo
2510    echo "ACLOCAL_AMFLAGS = -I $m4base"
2511   ) > "$testdir/Makefile.am"
2512
2513   # Create configure.ac.
2514   (echo "# Process this file with autoconf to produce a configure script."
2515    echo "AC_INIT([dummy], [0])"
2516    if test "$auxdir" != "."; then
2517      echo "AC_CONFIG_AUX_DIR([$auxdir])"
2518    fi
2519    echo "AM_INIT_AUTOMAKE"
2520    echo
2521    echo "AM_CONFIG_HEADER([config.h])"
2522    echo
2523    echo "AC_PROG_CC"
2524    echo "AC_PROG_INSTALL"
2525    echo "AC_PROG_MAKE_SET"
2526    echo
2527    echo "# For autobuild."
2528    echo "AC_CANONICAL_BUILD"
2529    echo "AC_CANONICAL_HOST"
2530    echo
2531    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
2532    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
2533    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
2534    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
2535    echo
2536    echo "AC_PROG_RANLIB"
2537    echo
2538    if test -n "$uses_subdirs"; then
2539      echo "AM_PROG_CC_C_O"
2540      echo
2541    fi
2542    if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2543      echo "AC_GNU_SOURCE"
2544      echo
2545    fi
2546    if grep gl_USE_SYSTEM_EXTENSIONS "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2547      echo "gl_USE_SYSTEM_EXTENSIONS"
2548      echo
2549    fi
2550    if grep gl_LOCK "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
2551      echo "gl_LOCK_EARLY"
2552      echo
2553    fi
2554    if test "$libtool" = true; then
2555      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
2556      echo "gl_cond_libtool=true"
2557    else
2558      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
2559      echo "gl_cond_libtool=false"
2560      echo "gl_libdeps="
2561      echo "gl_ltlibdeps="
2562    fi
2563    echo "gl_source_base='$sourcebase'"
2564    # Wrap the set of autoconf snippets into an autoconf macro that is then
2565    # invoked. This is needed because autoconf does not support AC_REQUIRE
2566    # at the top level:
2567    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
2568    # but we want the AC_REQUIRE to have its normal meaning (provide one
2569    # expansion of the required macro before the current point, and only one
2570    # expansion total).
2571    echo "AC_DEFUN([gl_INIT], ["
2572    func_emit_initmacro_start
2573    if test "$auxdir" != "build-aux"; then
2574      sed_replace_build_aux='
2575        :a
2576        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
2577          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
2578          ba
2579        }'
2580      sed_replace_build_aux=`echo "$sed_replace_build_aux" | sed -e 1d -e 's/^ *//'`
2581    else
2582      sed_replace_build_aux=
2583    fi
2584    for module in $modules; do
2585      func_verify_nontests_module
2586      if test -n "$module"; then
2587        func_get_autoconf_snippet "$module" \
2588          | sed -e "$sed_replace_build_aux"
2589      fi
2590    done
2591    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
2592    # created using libtool, because libtool already handles the dependencies.
2593    if test "$libtool" != true; then
2594      libname_upper=`echo "$libname" | tr 'a-z' 'A-Z'`
2595      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
2596      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
2597      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
2598      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
2599    fi
2600    func_emit_initmacro_end
2601    echo "])"
2602    func_emit_initmacro_done
2603    echo
2604    echo "gl_INIT"
2605    echo
2606    if test -n "$subdirs_with_configure_ac"; then
2607      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
2608    fi
2609    makefiles="Makefile"
2610    for d in $subdirs; do
2611      # For subdirs that have a configure.ac by their own, it's the subdir's
2612      # configure.ac which creates the subdir's Makefile.am, not this one.
2613      case " $subdirs_with_configure_ac " in
2614        *" $d "*) ;;
2615        *) func_append makefiles " $d/Makefile" ;;
2616      esac
2617    done
2618    echo "AC_OUTPUT([$makefiles])"
2619   ) > "$testdir/configure.ac"
2620
2621   # Create autogenerated files.
2622   (cd "$testdir"
2623    # Do not use "${AUTORECONF} --force --install", because it may invoke
2624    # autopoint, which brings in older versions of some of our .m4 files.
2625    if test -f $m4base/gettext.m4; then
2626      echo "executing ${AUTOPOINT} --force"
2627      ${AUTOPOINT} --force || func_exit 1
2628      for f in $m4base/*.m4~; do
2629        mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
2630      done
2631    fi
2632    echo "executing ${ACLOCAL} -I $m4base"
2633    ${ACLOCAL} -I $m4base || func_exit 1
2634    if ! test -d build-aux; then
2635      echo "executing mkdir build-aux"
2636      mkdir build-aux || func_exit 1
2637    fi
2638    echo "executing ${AUTOCONF}"
2639    ${AUTOCONF} || func_exit 1
2640    echo "executing ${AUTOHEADER}"
2641    ${AUTOHEADER} || func_exit 1
2642    echo "executing ${AUTOMAKE} --add-missing --copy"
2643    ${AUTOMAKE} --add-missing --copy || func_exit 1
2644   ) || func_exit 1
2645   if test -n "$inctests"; then
2646     # Create autogenerated files.
2647     (cd "$testdir/$testsbase" || func_exit 1
2648      # Do not use "${AUTORECONF} --force --install", because it may invoke
2649      # autopoint, which brings in older versions of some of our .m4 files.
2650      if test -f ../$m4base/gettext.m4; then
2651        echo "executing ${AUTOPOINT} --force"
2652        ${AUTOPOINT} --force || func_exit 1
2653        for f in ../$m4base/*.m4~; do
2654          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
2655        done
2656      fi
2657      echo "executing ${ACLOCAL} -I ../$m4base"
2658      ${ACLOCAL} -I ../$m4base || func_exit 1
2659      if ! test -d ../build-aux; then
2660        echo "executing mkdir ../build-aux"
2661        mkdir ../build-aux
2662      fi
2663      echo "executing ${AUTOCONF}"
2664      ${AUTOCONF} || func_exit 1
2665      echo "executing ${AUTOHEADER}"
2666      ${AUTOHEADER} || func_exit 1
2667      echo "executing ${AUTOMAKE} --add-missing --copy"
2668      ${AUTOMAKE} --add-missing --copy || func_exit 1
2669     ) || func_exit 1
2670   fi
2671   # Need to run configure and make once, to create built files that are to be
2672   # distributed (such as getdate.c).
2673   # Extract the value of "CLEANFILES += ...".
2674   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
2675                  | sed -n -e 's,^CLEANFILES[    ]*+=\([^#]*\).*$,\1,p'`
2676   cleaned_files=" "`for file in $cleaned_files; do echo "$file"; done`" "
2677   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
2678   # such $(FOO_H) because they don't refer to distributed files.
2679   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
2680   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
2681                  | sed -n -e 's,^BUILT_SOURCES[         ]*+=\([^#]*\).*$,\1,p' \
2682                  | sed -e "$sed_remove_make_variables"`
2683   distributed_built_sources=`for file in $built_sources; do
2684                                case "$cleaned_files" in
2685                                  *" "$file" "*) ;;
2686                                  *) echo $file ;;
2687                                esac;
2688                              done`
2689   if test -n "$distributed_built_sources"; then
2690     (cd "$testdir"
2691      ./configure || func_exit 1
2692        cd "$sourcebase"
2693        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
2694        make built_sources || func_exit 1
2695        cd ..
2696      make distclean || func_exit 1
2697     ) || func_exit 1
2698   fi
2699 }
2700
2701 # func_create_megatestdir megatestdir allmodules
2702 # Input:
2703 # - local_gnulib_dir  from --local-dir
2704 # - auxdir          directory relative to destdir where to place build aux files
2705 func_create_megatestdir ()
2706 {
2707   megatestdir="$1"
2708   allmodules="$2"
2709   if test -z "$allmodules"; then
2710     allmodules=`func_all_modules`
2711   fi
2712
2713   megasubdirs=
2714   # First, all modules one by one.
2715   for onemodule in $allmodules; do
2716     func_create_testdir "$megatestdir/$onemodule" $onemodule
2717     func_append megasubdirs "$onemodule "
2718   done
2719   # Then, all modules all together.
2720   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
2721   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
2722   allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
2723   func_create_testdir "$megatestdir/ALL" "$allmodules"
2724   func_append megasubdirs "ALL"
2725
2726   # Create Makefile.am.
2727   (echo "## Process this file with automake to produce Makefile.in."
2728    echo
2729    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
2730    echo
2731    echo "SUBDIRS = $megasubdirs"
2732   ) > "$megatestdir/Makefile.am"
2733
2734   # Create configure.ac.
2735   (echo "# Process this file with autoconf to produce a configure script."
2736    echo "AC_INIT([dummy], [0])"
2737    if test "$auxdir" != "."; then
2738      echo "AC_CONFIG_AUX_DIR([$auxdir])"
2739    fi
2740    echo "AM_INIT_AUTOMAKE"
2741    echo
2742    echo "AC_PROG_MAKE_SET"
2743    echo
2744    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
2745    echo "AC_OUTPUT([Makefile])"
2746   ) > "$megatestdir/configure.ac"
2747
2748   # Create autogenerated files.
2749   (cd "$megatestdir"
2750    # Do not use "${AUTORECONF} --install", because autoreconf operates
2751    # recursively, but the subdirectories are already finished, therefore
2752    # calling autoreconf here would only waste lots of CPU time.
2753    echo "executing ${ACLOCAL}"
2754    ${ACLOCAL} || func_exit 1
2755    echo "executing mkdir build-aux"
2756    mkdir build-aux
2757    echo "executing ${AUTOCONF}"
2758    ${AUTOCONF} || func_exit 1
2759    echo "executing ${AUTOMAKE} --add-missing --copy"
2760    ${AUTOMAKE} --add-missing --copy || func_exit 1
2761   ) || func_exit 1
2762 }
2763
2764 case $mode in
2765   "" )
2766     func_fatal_error "no mode specified" ;;
2767
2768   list )
2769     func_all_modules
2770     ;;
2771
2772   import | update )
2773
2774     # Where to import.
2775     if test -z "$destdir"; then
2776       destdir=.
2777     fi
2778     test -d "$destdir" \
2779       || func_fatal_error "destination directory does not exist: $destdir"
2780
2781     # Prefer configure.ac to configure.in.
2782     if test -f "$destdir"/configure.ac; then
2783       configure_ac="$destdir/configure.ac"
2784     else
2785       if test -f "$destdir"/configure.in; then
2786         configure_ac="$destdir/configure.in"
2787       else
2788         func_fatal_error "cannot find $destdir/configure.ac"
2789       fi
2790     fi
2791
2792     # Analyze configure.ac.
2793     guessed_auxdir="."
2794     guessed_libtool=false
2795     my_sed_traces='
2796       s,#.*$,,
2797       s,^dnl .*$,,
2798       s, dnl .*$,,
2799       /AC_CONFIG_AUX_DIR/ {
2800         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
2801       }
2802       /A[CM]_PROG_LIBTOOL/ {
2803         s,^.*$,guessed_libtool=true,p
2804       }'
2805     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
2806
2807     if test -z "$auxdir"; then
2808       auxdir="$guessed_auxdir"
2809     fi
2810
2811     # Determine where to apply func_import.
2812     if test -n "$m4base"; then
2813       # Apply func_import to a particular gnulib directory.
2814       # Any number of additional modules can be given.
2815       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
2816         # First use of gnulib in the given m4base.
2817         test -n "$supplied_libname" || supplied_libname=true
2818         test -n "$sourcebase" || sourcebase="lib"
2819         test -n "$docbase" || docbase="doc"
2820         test -n "$testsbase" || testsbase="tests"
2821         test -n "$macro_prefix" || macro_prefix="gl"
2822       fi
2823       func_import "$*"
2824     else
2825       # Apply func_import to all gnulib directories.
2826       # To get this list of directories, look at Makefile.am. (Not at
2827       # configure, because it may be omitted from CVS. Also, don't run
2828       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
2829       m4dirs=
2830       m4dirs_count=0
2831       if test -f "$destdir"/Makefile.am; then
2832         aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[         ]*=' "$destdir"/Makefile.am | sed -e 's/^ACLOCAL_AMFLAGS[       ]*=\(.*\)$/\1/'`
2833         m4dir_is_next=
2834         for arg in $aclocal_amflags; do
2835           if test -n "$m4dir_is_next"; then
2836             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
2837             case "$arg" in
2838               /*) ;;
2839               *)
2840                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
2841                   func_append m4dirs " $arg"
2842                   m4dirs_count=`expr $m4dirs_count + 1`
2843                 fi
2844                 ;;
2845             esac
2846           else
2847             if test "X$arg" = "X-I"; then
2848               m4dir_is_next=yes
2849             else
2850               m4dir_is_next=
2851             fi
2852           fi
2853         done
2854       else
2855         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
2856         if test -f "$destdir"/aclocal.m4; then
2857           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
2858           sedexpr2='s,^[^/]*$,.,'
2859           sedexpr3='s,/[^/]*$,,'
2860           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
2861           m4dirs_count=`echo "$m4dirs" | wc -l`
2862         fi
2863       fi
2864       if test $m4dirs_count = 0; then
2865         # First use of gnulib in a package.
2866         # Any number of additional modules can be given.
2867         test -n "$supplied_libname" || supplied_libname=true
2868         test -n "$sourcebase" || sourcebase="lib"
2869         m4base="m4"
2870         test -n "$docbase" || docbase="doc"
2871         test -n "$testsbase" || testsbase="tests"
2872         test -n "$macro_prefix" || macro_prefix="gl"
2873         func_import "$*"
2874       else
2875         if test $m4dirs_count = 1; then
2876           # There's only one use of gnulib here. Assume the user means it.
2877           # Any number of additional modules can be given.
2878           for m4base in $m4dirs; do
2879             func_import "$*"
2880           done
2881         else
2882           # Ambiguous - guess what the user meant.
2883           if test $# = 0; then
2884             # No further arguments. Guess the user wants to update all of them.
2885             for m4base in $m4dirs; do
2886               # Perform func_import in a subshell, so that variable values
2887               # such as
2888               #   local_gnulib_dir, avoidlist, sourcebase, m4base, docbase,
2889               #   testsbase, libname, lgpl, makefile_name, libtool, macro_prefix
2890               # don't propagate from one directory to another.
2891               (func_import) || func_exit 1
2892             done
2893           else
2894             # Really ambiguous.
2895             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
2896           fi
2897         fi
2898       fi
2899     fi
2900     ;;
2901
2902   create-testdir )
2903     if test -z "$destdir"; then
2904       func_fatal_error "please specify --dir option"
2905     fi
2906     mkdir "$destdir"
2907     test -d "$destdir" \
2908       || func_fatal_error "could not create destination directory"
2909     test -n "$auxdir" || auxdir="build-aux"
2910     func_create_testdir "$destdir" "$*"
2911     ;;
2912
2913   create-megatestdir )
2914     if test -z "$destdir"; then
2915       func_fatal_error "please specify --dir option"
2916     fi
2917     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2918     test -n "$auxdir" || auxdir="build-aux"
2919     func_create_megatestdir "$destdir" "$*"
2920     ;;
2921
2922   test )
2923     test -n "$destdir" || destdir=testdir$$
2924     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2925     test -n "$auxdir" || auxdir="build-aux"
2926     func_create_testdir "$destdir" "$*"
2927     cd "$destdir"
2928       mkdir build
2929       cd build
2930         ../configure || func_exit 1
2931         make || func_exit 1
2932         make check || func_exit 1
2933         make distclean || func_exit 1
2934         remaining=`find . -type f -print`
2935         if test -n "$remaining"; then
2936           echo "Remaining files:" $remaining 1>&2
2937           echo "gnulib-tool: *** Stop." 1>&2
2938           func_exit 1
2939         fi
2940       cd ..
2941     cd ..
2942     rm -rf "$destdir"
2943     ;;
2944
2945   megatest )
2946     test -n "$destdir" || destdir=testdir$$
2947     mkdir "$destdir" || func_fatal_error "could not create destination directory"
2948     test -n "$auxdir" || auxdir="build-aux"
2949     func_create_megatestdir "$destdir" "$*"
2950     cd "$destdir"
2951       mkdir build
2952       cd build
2953         ../configure
2954         make
2955         make check
2956         make distclean
2957         remaining=`find . -type f -print`
2958         if test -n "$remaining"; then
2959           echo "Remaining files:" $remaining 1>&2
2960           echo "gnulib-tool: *** Stop." 1>&2
2961           func_exit 1
2962         fi
2963       cd ..
2964     cd ..
2965     rm -rf "$destdir"
2966     ;;
2967
2968   extract-description )
2969     for module
2970     do
2971       func_verify_module
2972       if test -n "$module"; then
2973         func_get_description "$module"
2974       fi
2975     done
2976     ;;
2977
2978   extract-filelist )
2979     for module
2980     do
2981       func_verify_module
2982       if test -n "$module"; then
2983         func_get_filelist "$module"
2984       fi
2985     done
2986     ;;
2987
2988   extract-dependencies )
2989     for module
2990     do
2991       func_verify_module
2992       if test -n "$module"; then
2993         func_get_dependencies "$module"
2994       fi
2995     done
2996     ;;
2997
2998   extract-autoconf-snippet )
2999     for module
3000     do
3001       func_verify_module
3002       if test -n "$module"; then
3003         func_get_autoconf_snippet "$module"
3004       fi
3005     done
3006     ;;
3007
3008   extract-automake-snippet )
3009     for module
3010     do
3011       func_verify_module
3012       if test -n "$module"; then
3013         func_get_automake_snippet "$module"
3014       fi
3015     done
3016     ;;
3017
3018   extract-include-directive )
3019     for module
3020     do
3021       func_verify_module
3022       if test -n "$module"; then
3023         func_get_include_directive "$module"
3024       fi
3025     done
3026     ;;
3027
3028   extract-license )
3029     for module
3030     do
3031       func_verify_module
3032       if test -n "$module"; then
3033         func_get_license "$module"
3034       fi
3035     done
3036     ;;
3037
3038   extract-maintainer )
3039     for module
3040     do
3041       func_verify_module
3042       if test -n "$module"; then
3043         func_get_maintainer "$module"
3044       fi
3045     done
3046     ;;
3047
3048   extract-tests-module )
3049     for module
3050     do
3051       func_verify_module
3052       if test -n "$module"; then
3053         func_get_tests_module "$module"
3054       fi
3055     done
3056     ;;
3057
3058   * )
3059     func_fatal_error "unknown operation mode --$mode" ;;
3060 esac
3061
3062 rm -rf "$tmp"
3063 # Undo the effect of the previous 'trap' command. Some shellology:
3064 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
3065 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
3066 # exit); for the others we need to call 'exit' explicitly. The value of $? is
3067 # 128 + signal number and is set before the trap-registered command is run.
3068 trap '' 0
3069 trap 'func_exit $?' 1 2 3 13 15
3070
3071 exit 0
3072
3073 # Local Variables:
3074 # indent-tabs-mode: nil
3075 # whitespace-check-buffer-indent: nil
3076 # End: