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