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