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