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