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