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