Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002-2008 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 3 of the License, or
8 # (at your option) 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, see <http://www.gnu.org/licenses/>.
17 #
18
19 # This program is meant for authors or maintainers which want to import
20 # modules from gnulib into their packages.
21
22 progname=$0
23 package=gnulib
24 nl='
25 '
26 IFS=" ""        $nl"
27
28 # You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
29 AUTOCONFPATH=
30 #case $USER in
31 #  bruno )
32 #    AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
33 #    AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
34 #    ;;
35 #esac
36
37 # You can set AUTOMAKEPATH to empty if automake 1.9.x is already in your PATH.
38 AUTOMAKEPATH=
39
40 # You can set GETTEXTPATH to empty if autopoint 0.15 is already in your PATH.
41 GETTEXTPATH=
42
43 # If you didn't set AUTOCONFPATH and AUTOMAKEPATH, you can also set the
44 # variables AUTOCONF, AUTOHEADER, ACLOCAL, AUTOMAKE, AUTORECONF individually.
45 if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then
46   AUTOCONF="${AUTOCONFPATH}autoconf"
47 fi
48 if test -z "${AUTOHEADER}" || test -n "${AUTOCONFPATH}"; then
49   AUTOHEADER="${AUTOCONFPATH}autoheader"
50 fi
51 if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then
52   ACLOCAL="${AUTOMAKEPATH}aclocal"
53 fi
54 if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then
55   AUTOMAKE="${AUTOMAKEPATH}automake"
56 fi
57 if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then
58   AUTORECONF="${AUTOCONFPATH}autoreconf"
59 fi
60
61 # If you didn't set GETTEXTPATH, you can also set the variable AUTOPOINT.
62 if test -z "${AUTOPOINT}" || test -n "${GETTEXTPATH}"; then
63   AUTOPOINT="${GETTEXTPATH}autopoint"
64 fi
65
66 # When using GNU sed, turn off as many GNU extensions as possible,
67 # to minimize the risk of accidentally using non-portable features.
68 # However, do this only for gnulib-tool itself, not for the code that
69 # gnulib-tool generates, since we don't want "sed --posix" to leak
70 # into makefiles.
71 if (alias) > /dev/null 2>&1 && echo | sed --posix -e d >/dev/null 2>&1; then
72   # Define sed as an alias.
73   # It is not always possible to use aliases. Aliases are guaranteed to work
74   # if the executing shell is bash and either it is invoked as /bin/sh or
75   # is a version >= 2.0, supporting shopt. This is the common case.
76   # Two other approaches (use of a variable $sed or of a function func_sed
77   # instead of an alias) require massive, fragile code changes.
78   # An other approach (use of function sed) requires `which sed` - but 'which'
79   # is hard to emulate, due to missing "test -x" on some platforms.
80   if test -n "$BASH_VERSION"; then
81     shopt -s expand_aliases >/dev/null 2>&1
82   fi
83   alias sed='sed --posix'
84 fi
85
86 # func_usage
87 # outputs to stdout the --help usage message.
88 func_usage ()
89 {
90   echo "\
91 Usage: gnulib-tool --list
92        gnulib-tool --import [module1 ... moduleN]
93        gnulib-tool --update
94        gnulib-tool --create-testdir --dir=directory [module1 ... moduleN]
95        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
96        gnulib-tool --test --dir=directory module1 ... moduleN
97        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
98        gnulib-tool --extract-description module
99        gnulib-tool --extract-notice module
100        gnulib-tool --extract-filelist module
101        gnulib-tool --extract-dependencies module
102        gnulib-tool --extract-autoconf-snippet module
103        gnulib-tool --extract-automake-snippet module
104        gnulib-tool --extract-include-directive module
105        gnulib-tool --extract-link-directive module
106        gnulib-tool --extract-license module
107        gnulib-tool --extract-maintainer module
108        gnulib-tool --extract-tests-module module
109
110 Operation modes:
111       --list                print the available module names
112       --import              import the given modules into the current package;
113                             if no modules are specified, update the current
114                             package from the current gnulib
115       --update              update the current package, restore files omitted
116                             from CVS
117       --create-testdir      create a scratch package with the given modules
118       --create-megatestdir  create a mega scratch package with the given modules
119                             one by one and all together
120       --test                test the combination of the given modules
121                             (recommended to use CC=\"gcc -Wall\" here)
122       --megatest            test the given modules one by one and all together
123                             (recommended to use CC=\"gcc -Wall\" here)
124       --extract-description        extract the description
125       --extract-notice             extract the notice or banner
126       --extract-filelist           extract the list of files
127       --extract-dependencies       extract the dependencies
128       --extract-autoconf-snippet   extract the snippet for configure.ac
129       --extract-automake-snippet   extract the snippet for library makefile
130       --extract-include-directive  extract the #include directive
131       --extract-link-directive     extract the linker directive
132       --extract-license            report the license terms of the source files
133                                    under lib/
134       --extract-maintainer         report the maintainer(s) inside gnulib
135       --extract-tests-module       report the unit test module, if it exists
136
137 General options:
138       --dir=DIRECTORY       Specify the target directory.
139                             For --import, this specifies where your
140                             configure.ac can be found.  Defaults to current
141                             directory.
142       --local-dir=DIRECTORY  Specify a local override directory where to look
143                             up files before looking in gnulib's directory.
144       --verbose             Increase verbosity. May be repeated.
145       --quiet               Decrease verbosity. May be repeated.
146
147 Options for --import:
148       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
149       --source-base=DIRECTORY
150                             Directory relative to --dir where source code is
151                             placed (default \"lib\").
152       --m4-base=DIRECTORY   Directory relative to --dir where *.m4 macros are
153                             placed (default \"m4\").
154       --po-base=DIRECTORY   Directory relative to --dir where *.po files are
155                             placed (default \"po\").
156       --doc-base=DIRECTORY  Directory relative to --dir where doc files are
157                             placed (default \"doc\").
158       --tests-base=DIRECTORY
159                             Directory relative to --dir where unit tests are
160                             placed (default \"tests\").
161       --aux-dir=DIRECTORY   Directory relative to --dir where auxiliary build
162                             tools are placed (default \"build-aux\").
163       --with-tests          Include unit tests for the included modules.
164       --avoid=MODULE        Avoid including the given MODULE. Useful if you
165                             have code that provides equivalent functionality.
166                             This option can be repeated.
167       --lgpl[=2|=3]         Abort if modules aren't available under the LGPL.
168                             Also modify license template from GPL to LGPL.
169                             The version number of the LGPL can be specified;
170                             the default is currently LGPLv3.
171       --makefile-name=NAME  Name of makefile in automake syntax in the
172                             source-base and tests-base directories
173                             (default \"Makefile.am\").
174       --libtool             Use libtool rules.
175       --no-libtool          Don't use libtool rules.
176       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
177                             'gl_INIT'. Default is 'gl'.
178       --po-domain=NAME      Specify the prefix of the i18n domain. Usually use
179                             the package name. A suffix '-gnulib' is appended.
180       --vc-files            Update version control related files.
181       --no-vc-files         Don't update version control related files
182                             (.gitignore and/or .cvsignore).
183       --no-changelog        Don't update or create ChangeLog files.
184
185 Options for --import and --update:
186       --dry-run             For --import, only print what would have been done.
187   -s, --symbolic, --symlink Make symbolic links instead of copying files.
188       --local-symlink       Make symbolic links instead of copying files, only
189                             for files from the local override directory.
190   -S, --more-symlinks       Make symbolic links instead of copying files, and
191                             don't replace copyright notices.
192
193 Report bugs to <bug-gnulib@gnu.org>."
194 }
195
196 # func_version
197 # outputs to stdout the --version message.
198 func_version ()
199 {
200   func_gnulib_dir
201   if test -d "$gnulib_dir"/.git \
202      && (git --version) >/dev/null 2>/dev/null \
203      && (date --version) >/dev/null 2>/dev/null; then
204     # gnulib checked out from git.
205     sed_extract_first_date='/^Date/{
206 s/^Date:[        ]*//p
207 q
208 }'
209     date=`cd "$gnulib_dir" && git log ChangeLog | sed -n -e "$sed_extract_first_date"`
210     # Turn "Fri Mar 21 07:16:51 2008 -0600" into "Mar 21 2008 07:16:51 -0600".
211     sed_year_before_time='s/^[^ ]* \([^ ]*\) \([0-9]*\) \([0-9:]*\) \([0-9]*\) /\1 \2 \4 \3 /'
212     date=`echo "$date" | sed -e "$sed_year_before_time"`
213     # Use GNU date to compute the time in GMT.
214     date=`date -d "$date" -u +"%Y-%m-%d %H:%M:%S"`
215     version=' '`"$gnulib_dir"/build-aux/git-version-gen /dev/null | sed -e 's/-dirty/-modified/'`
216   else
217     if test -d "$gnulib_dir"/CVS \
218        && (cvs --version) >/dev/null 2>/dev/null; then
219       # gnulib checked out from CVS.
220       sed_extract_first_date='/^date: /{
221 s/^date: \([0-9][0-9][0-9][0-9]\).\([0-9][0-9]\).\([0-9][0-9]\) \([0-9][0-9]:[0-9][0-9]:[0-9][0-9]\).*/\1-\2-\3 \4/p
222 q
223 }'
224       date=`cd "$gnulib_dir" && cvs log -N ChangeLog 2>/dev/null | sed -n -e "$sed_extract_first_date"`
225     else
226       # gnulib copy without versioning information.
227       date=`sed -e 's/ .*//;q' "$gnulib_dir"/ChangeLog`
228     fi
229     version=
230   fi
231   year=`"$gnulib_dir"/build-aux/mdate-sh "$self_abspathname" | sed 's,^.* ,,'`
232   echo "\
233 gnulib-tool (GNU $package $date)$version
234 Copyright (C) $year Free Software Foundation, Inc.
235 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
236 This is free software: you are free to change and redistribute it.
237 There is NO WARRANTY, to the extent permitted by law.
238
239 Written by" "Bruno Haible" "and" "Simon Josefsson"
240 }
241
242 # func_emit_copyright_notice
243 # outputs to stdout a header for a generated file.
244 func_emit_copyright_notice ()
245 {
246   sed -n '/Copyright/ {
247             p
248             q
249           }' < "$self_abspathname"
250   echo "#"
251   echo "# This file is free software, distributed under the terms of the GNU"
252   echo "# General Public License.  As a special exception to the GNU General"
253   echo "# Public License, this file may be distributed as part of a program"
254   echo "# that contains a configuration script generated by Autoconf, under"
255   echo "# the same distribution terms as the rest of that program."
256   echo "#"
257   echo "# Generated by gnulib-tool."
258 }
259
260 # func_exit STATUS
261 # exit with status
262 func_exit ()
263 {
264   (exit $1); exit $1
265 }
266
267 # func_gnulib_dir
268 # locates the directory where the gnulib repository lives
269 # Sets variables
270 # - self_abspathname         absolute pathname of gnulib-tool
271 # - gnulib_dir               absolute pathname of gnulib repository
272 func_gnulib_dir ()
273 {
274   case "$0" in
275     /*) self_abspathname="$0" ;;
276     */*) self_abspathname=`pwd`/"$0" ;;
277     *)
278       # Look in $PATH.
279       # Iterate through the elements of $PATH.
280       # We use IFS=: instead of
281       #   for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`
282       # because the latter does not work when some PATH element contains spaces.
283       # We use a canonicalized $pathx instead of $PATH, because empty PATH
284       # elements are by definition equivalent to '.', however field splitting
285       # according to IFS=: loses empty fields in many shells:
286       #   - /bin/sh on OSF/1 and Solaris loses all empty fields (at the
287       #     beginning, at the end, and in the middle),
288       #   - /bin/sh on IRIX and /bin/ksh on IRIX and OSF/1 lose empty fields
289       #     at the beginning and at the end,
290       #   - GNU bash, /bin/sh on AIX and HP-UX, and /bin/ksh on AIX, HP-UX,
291       #     Solaris lose empty fields at the end.
292       # The 'case' statement is an optimization, to avoid evaluating the
293       # explicit canonicalization command when $PATH contains no empty fields.
294       self_abspathname=
295       if test "${PATH_SEPARATOR+set}" != set; then
296         func_tmpdir
297         { echo "#! /bin/sh"; echo "exit 0"; } > "$tmp"/conf.sh
298         chmod +x "$tmp"/conf.sh
299         if (PATH="/nonexistent;$tmp"; conf.sh) >/dev/null 2>&1; then
300           PATH_SEPARATOR=';'
301         else
302           PATH_SEPARATOR=:
303         fi
304         rm -rf "$tmp"
305       fi
306       if test "$PATH_SEPARATOR" = ";"; then
307         # On Windows, programs are searched in "." before $PATH.
308         pathx=".;$PATH"
309       else
310         # On Unix, we have to convert empty PATH elements to ".".
311         pathx="$PATH"
312         case :$PATH: in
313           *::*)
314             pathx=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'`
315             ;;
316         esac
317       fi
318       save_IFS="$IFS"
319       IFS="$PATH_SEPARATOR"
320       for d in $pathx; do
321         IFS="$save_IFS"
322         test -z "$d" && d=.
323         if test -x "$d/$0" && test ! -d "$d/$0"; then
324           self_abspathname="$d/$0"
325           break
326         fi
327       done
328       IFS="$save_IFS"
329       if test -z "$self_abspathname"; then
330         func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
331       fi
332       ;;
333   esac
334   while test -h "$self_abspathname"; do
335     # Resolve symbolic link.
336     linkval=`func_readlink "$self_abspathname"`
337     test -n "$linkval" || break
338     case "$linkval" in
339       /* ) self_abspathname="$linkval" ;;
340       * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
341     esac
342   done
343   gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
344 }
345
346 # func_tmpdir
347 # creates a temporary directory.
348 # Sets variable
349 # - tmp             pathname of freshly created temporary directory
350 func_tmpdir ()
351 {
352   # Use the environment variable TMPDIR, falling back to /tmp. This allows
353   # users to specify a different temporary directory, for example, if their
354   # /tmp is filled up or too small.
355   : ${TMPDIR=/tmp}
356   {
357     # Use the mktemp program if available. If not available, hide the error
358     # message.
359     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
360     test -n "$tmp" && test -d "$tmp"
361   } ||
362   {
363     # Use a simple mkdir command. It is guaranteed to fail if the directory
364     # already exists.  $RANDOM is bash specific and expands to empty in shells
365     # other than bash, ksh and zsh.  Its use does not increase security;
366     # rather, it minimizes the probability of failure in a very cluttered /tmp
367     # directory.
368     tmp=$TMPDIR/gl$$-$RANDOM
369     (umask 077 && mkdir "$tmp")
370   } ||
371   {
372     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
373     func_exit 1
374   }
375 }
376
377 # func_append var value
378 # appends the given value to the shell variable var.
379 if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then
380   # Use bash's += operator. It reduces complexity of appending repeatedly to
381   # a single variable from O(n^2) to O(n).
382   func_append ()
383   {
384     eval "$1+=\"\$2\""
385   }
386 else
387   func_append ()
388   {
389     eval "$1=\"\$$1\$2\""
390   }
391 fi
392
393 # func_fatal_error message
394 # outputs to stderr a fatal error message, and terminates the program.
395 func_fatal_error ()
396 {
397   echo "gnulib-tool: *** $1" 1>&2
398   echo "gnulib-tool: *** Stop." 1>&2
399   func_exit 1
400 }
401
402 # func_readlink SYMLINK
403 # outputs the target of the given symlink.
404 if (type -p readlink) > /dev/null 2>&1; then
405   func_readlink ()
406   {
407     # Use the readlink program from GNU coreutils.
408     readlink "$1"
409   }
410 else
411   func_readlink ()
412   {
413     # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
414     # would do the wrong thing if the link target contains " -> ".
415     LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
416   }
417 fi
418
419 # func_relativize DIR1 DIR2
420 # computes a relative pathname RELDIR such that DIR1/RELDIR = DIR2.
421 # Input:
422 # - DIR1            relative pathname, relative to the current directory
423 # - DIR2            relative pathname, relative to the current directory
424 # Output:
425 # - reldir          relative pathname of DIR2, relative to DIR1
426 func_relativize ()
427 {
428   dir0=`pwd`
429   dir1="$1"
430   dir2="$2"
431   sed_first='s,^\([^/]*\)/.*$,\1,'
432   sed_rest='s,^[^/]*/*,,'
433   sed_last='s,^.*/\([^/]*\)$,\1,'
434   sed_butlast='s,/*[^/]*$,,'
435   while test -n "$dir1"; do
436     first=`echo "$dir1" | sed -e "$sed_first"`
437     if test "$first" != "."; then
438       if test "$first" = ".."; then
439         dir2=`echo "$dir0" | sed -e "$sed_last"`/"$dir2"
440         dir0=`echo "$dir0" | sed -e "$sed_butlast"`
441       else
442         first2=`echo "$dir2" | sed -e "$sed_first"`
443         if test "$first2" = "$first"; then
444           dir2=`echo "$dir2" | sed -e "$sed_rest"`
445         else
446           dir2="../$dir2"
447         fi
448         dir0="$dir0"/"$first"
449       fi
450     fi
451     dir1=`echo "$dir1" | sed -e "$sed_rest"`
452   done
453   reldir="$dir2"
454 }
455
456 # func_relconcat DIR1 DIR2
457 # computes a relative pathname DIR1/DIR2, with obvious simplifications.
458 # Input:
459 # - DIR1            relative pathname, relative to the current directory
460 # - DIR2            relative pathname, relative to DIR1
461 # Output:
462 # - relconcat       DIR1/DIR2, relative to the current directory
463 func_relconcat ()
464 {
465   dir1="$1"
466   dir2="$2"
467   sed_first='s,^\([^/]*\)/.*$,\1,'
468   sed_rest='s,^[^/]*/*,,'
469   sed_last='s,^.*/\([^/]*\)$,\1,'
470   sed_butlast='s,/*[^/]*$,,'
471   while true; do
472     first=`echo "$dir2" | sed -e "$sed_first"`
473     if test "$first" = "."; then
474       dir2=`echo "$dir2" | sed -e "$sed_rest"`
475       if test -z "$dir2"; then
476         relconcat="$dir1"
477         break
478       fi
479     else
480       last=`echo "$dir1" | sed -e "$sed_last"`
481       while test "$last" = "."; do
482         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
483         last=`echo "$dir1" | sed -e "$sed_last"`
484       done
485       if test -z "$dir1"; then
486         relconcat="$dir2"
487         break
488       fi
489       if test "$first" = ".."; then
490         if test "$last" = ".."; then
491           relconcat="$dir1/$dir2"
492           break
493         fi
494         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
495         dir2=`echo "$dir2" | sed -e "$sed_rest"`
496         if test -z "$dir1"; then
497           relconcat="$dir2"
498           break
499         fi
500         if test -z "$dir2"; then
501           relconcat="$dir1"
502           break
503         fi
504       else
505         relconcat="$dir1/$dir2"
506         break
507       fi
508     fi
509   done
510 }
511
512 # func_ln SRC DEST
513 # Like ln -s, except that SRC is given relative to the current directory (or
514 # absolute), not given relative to the directory of DEST.
515 func_ln ()
516 {
517   case "$1" in
518     /*)
519       ln -s "$1" "$2" ;;
520     *) # SRC is relative.
521       case "$2" in
522         /*)
523           ln -s "`pwd`/$1" "$2" ;;
524         *) # DEST is relative too.
525           ln_destdir=`echo "$2" | sed -e 's,[^/]*$,,'`
526           test -n "$ln_destdir" || ln_destdir="."
527           func_relativize "$ln_destdir" "$1"
528           ln -s "$reldir" "$2"
529           ;;
530       esac
531       ;;
532   esac
533 }
534
535 # func_ln_if_changed SRC DEST
536 # Like func_ln, but avoids munging timestamps if the link is correct.
537 func_ln_if_changed ()
538 {
539   if test $# -ne 2; then
540     echo "usage: func_ln_if_changed SRC DEST" >&2
541   fi
542   ln_target=`func_readlink "$2"`
543   if test -h "$2" && test "$1" = "$ln_target"; then
544     :
545   else
546     rm -f "$2"
547     func_ln "$1" "$2"
548   fi
549 }
550
551 # Ensure an 'echo' command that does not interpret backslashes.
552 # Test cases:
553 #   echo '\n' | wc -l                 prints 1 when OK, 2 when KO
554 #   echo '\t' | grep t > /dev/null    has return code 0 when OK, 1 when KO
555 # This problem is a weird heritage from SVR4. BSD got it right (except that
556 # BSD echo interprets '-n' as an option, which is also not desirable).
557 # Nowadays the problem occurs in 4 situations:
558 # - in bash, when the shell option xpg_echo is set (bash >= 2.04)
559 #            or when it was built with --enable-usg-echo-default (bash >= 2.0)
560 #            or when it was built with DEFAULT_ECHO_TO_USG (bash < 2.0),
561 # - in zsh, when sh-emulation is not set,
562 # - in ksh (e.g. AIX /bin/sh and Solaris /usr/xpg4/bin/sh are ksh instances,
563 #           and HP-UX /bin/sh and IRIX /bin/sh behave similarly),
564 # - in Solaris /bin/sh and OSF/1 /bin/sh.
565 # We try the following workarounds:
566 # - for all: respawn using $CONFIG_SHELL if that is set and works.
567 # - for bash >= 2.04: unset the shell option xpg_echo.
568 # - for bash >= 2.0: define echo to a function that uses the printf built-in.
569 # - for bash < 2.0: define echo to a function that uses cat of a here document.
570 # - for zsh: turn sh-emulation on.
571 # - for ksh: alias echo to 'print -r'.
572 # - for ksh: alias echo to a function that uses cat of a here document.
573 # - for Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh and rely on
574 #   the ksh workaround.
575 # - otherwise: respawn using /bin/sh and rely on the workarounds.
576 # When respawning, we pass --no-reexec as first argument, so as to avoid
577 # turning this script into a fork bomb in unlucky situations.
578 have_echo=
579 if echo '\t' | grep t > /dev/null; then
580   have_echo=yes # Lucky!
581 fi
582 # Try the workarounds.
583 # Respawn using $CONFIG_SHELL if that is set and works.
584 if test -z "$have_echo" \
585    && test "X$1" != "X--no-reexec" \
586    && test -n "$CONFIG_SHELL" \
587    && test -f "$CONFIG_SHELL" \
588    && $CONFIG_SHELL -c 'echo '\t' | grep t > /dev/null'; then
589   exec $CONFIG_SHELL "$0" --no-reexec "$@"
590   exit 127
591 fi
592 # For bash >= 2.04: unset the shell option xpg_echo.
593 if test -z "$have_echo" \
594    && test -n "$BASH_VERSION" \
595    && (shopt -o xpg_echo; echo '\t' | grep t > /dev/null) 2>/dev/null; then
596   shopt -o xpg_echo
597   have_echo=yes
598 fi
599 # For bash >= 2.0: define echo to a function that uses the printf built-in.
600 # For bash < 2.0: define echo to a function that uses cat of a here document.
601 # (There is no win in using 'printf' over 'cat' if it is not a shell built-in.)
602 if test -z "$have_echo" \
603    && test -n "$BASH_VERSION"; then \
604   if type printf 2>/dev/null | grep / > /dev/null; then
605     # 'printf' is not a shell built-in.
606 echo ()
607 {
608 cat <<EOF
609 $*
610 EOF
611 }
612   else
613     # 'printf' is a shell built-in.
614 echo ()
615 {
616   printf '%s\n' "$*"
617 }
618   fi
619   if echo '\t' | grep t > /dev/null; then
620     have_echo=yes
621   fi
622 fi
623 # For zsh: turn sh-emulation on.
624 if test -z "$have_echo" \
625    && test -n "$ZSH_VERSION" \
626    && (emulate sh) >/dev/null 2>&1; then
627   emulate sh
628 fi
629 # For ksh: alias echo to 'print -r'.
630 if test -z "$have_echo" \
631    && (type print) >/dev/null 2>&1; then
632   # A 'print' command exists.
633   if type print 2>/dev/null | grep / > /dev/null; then
634     :
635   else
636     # 'print' is a shell built-in.
637     if (print -r '\told' | grep told > /dev/null) 2>/dev/null; then
638       # 'print' is the ksh shell built-in.
639       alias echo='print -r'
640     fi
641   fi
642 fi
643 if test -z "$have_echo" \
644    && echo '\t' | grep t > /dev/null; then
645   have_echo=yes
646 fi
647 # For ksh: alias echo to a function that uses cat of a here document.
648 # The ksh manual page says:
649 #   "Aliasing is performed when scripts are read, not while they are executed.
650 #    Therefore, for an alias to take effect, the alias definition command has
651 #    to be executed before the command which references the alias is read."
652 # Because of this, we have to play strange tricks with have_echo, to ensure
653 # that the top-level statement containing the test starts after the 'alias'
654 # command.
655 if test -z "$have_echo"; then
656 bsd_echo ()
657 {
658 cat <<EOF
659 $*
660 EOF
661 }
662 alias echo=bsd_echo 2>/dev/null
663 fi
664 if test -z "$have_echo" \
665    && echo '\t' | grep t > /dev/null; then
666   have_echo=yes
667 fi
668 if test -z "$have_echo"; then
669   unalias echo 2>/dev/null
670 fi
671 # For Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh.
672 if test -z "$have_echo" \
673    && test "X$1" != "X--no-reexec" \
674    && test -f /bin/ksh; then
675   exec /bin/ksh "$0" --no-reexec "$@"
676   exit 127
677 fi
678 # Otherwise: respawn using /bin/sh.
679 if test -z "$have_echo" \
680    && test "X$1" != "X--no-reexec" \
681    && test -f /bin/sh; then
682   exec /bin/sh "$0" --no-reexec "$@"
683   exit 127
684 fi
685 if test -z "$have_echo"; then
686   func_fatal_error "Shell does not support 'echo' correctly. Please install GNU bash and set the environment variable CONFIG_SHELL to point to it."
687 fi
688 if echo '\t' | grep t > /dev/null; then
689   : # Works fine now.
690 else
691   func_fatal_error "Shell does not support 'echo' correctly. Workaround does not work. Please report this as a bug to bug-gnulib@gnu.org."
692 fi
693 if test "X$1" = "X--no-reexec"; then
694   shift
695 fi
696
697 # Command-line option processing.
698 # Removes the OPTIONS from the arguments. Sets the variables:
699 # - mode            list or import or create-testdir or create-megatestdir
700 # - destdir         from --dir
701 # - local_gnulib_dir  from --local-dir
702 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
703 # - libname, supplied_libname  from --lib
704 # - sourcebase      from --source-base
705 # - m4base          from --m4-base
706 # - pobase          from --po-base
707 # - docbase         from --doc-base
708 # - testsbase       from --tests-base
709 # - auxdir          from --aux-dir
710 # - inctests        true if --with-tests was given, blank otherwise
711 # - avoidlist       list of modules to avoid, from --avoid
712 # - lgpl            yes or a number if --lgpl was given, blank otherwise
713 # - makefile_name   from --makefile-name
714 # - libtool         true if --libtool was given, false if --no-libtool was
715 #                   given, blank otherwise
716 # - macro_prefix    from --macro-prefix
717 # - po_domain       from --po-domain
718 # - vc_files        true if --vc-files was given, false if --no-vc-files was
719 #                   given, blank otherwise
720 # - autoconf_minversion  minimum supported autoconf version
721 # - do_changelog    false if --no-changelog was given, : otherwise
722 # - doit            : if actions shall be executed, false if only to be printed
723 # - symbolic        true if --symlink or --more-symlinks was given, blank
724 #                   otherwise
725 # - lsymbolic       true if --local-symlink was given, blank otherwise
726 # - do_copyrights   blank if --more-symlinks was given, true otherwise
727 {
728   mode=
729   destdir=
730   local_gnulib_dir=
731   verbose=0
732   libname=libgnu
733   supplied_libname=
734   sourcebase=
735   m4base=
736   pobase=
737   docbase=
738   testsbase=
739   auxdir=
740   inctests=
741   avoidlist=
742   lgpl=
743   makefile_name=
744   libtool=
745   macro_prefix=
746   po_domain=
747   vc_files=
748   do_changelog=:
749   doit=:
750   symbolic=
751   lsymbolic=
752   do_copyrights=true
753
754   supplied_opts="$@"
755
756   while test $# -gt 0; do
757     case "$1" in
758       --list | --lis )
759         mode=list
760         shift ;;
761       --import | --impor | --impo | --imp | --im | --i )
762         mode=import
763         shift ;;
764       --update | --updat | --upda | --upd | --up | --u )
765         mode=update
766         shift ;;
767       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
768         mode=create-testdir
769         shift ;;
770       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
771         mode=create-megatestdir
772         shift ;;
773       --test | --tes | --te | --t )
774         mode=test
775         shift ;;
776       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
777         mode=megatest
778         shift ;;
779       --extract-* )
780         mode=`echo "X$1" | sed -e 's/^X--//'`
781         shift ;;
782       --dir )
783         shift
784         if test $# = 0; then
785           func_fatal_error "missing argument for --dir"
786         fi
787         destdir=$1
788         shift ;;
789       --dir=* )
790         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
791         shift ;;
792       --local-dir )
793         shift
794         if test $# = 0; then
795           func_fatal_error "missing argument for --local-dir"
796         fi
797         local_gnulib_dir=$1
798         shift ;;
799       --local-dir=* )
800         local_gnulib_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'`
801         shift ;;
802       --verbose | --verbos | --verbo | --verb )
803         verbose=`expr $verbose + 1`
804         shift ;;
805       --quiet | --quie | --qui | --qu | --q )
806         verbose=`expr $verbose - 1`
807         shift ;;
808       --lib )
809         shift
810         if test $# = 0; then
811           func_fatal_error "missing argument for --lib"
812         fi
813         libname=$1
814         supplied_libname=true
815         shift ;;
816       --lib=* )
817         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
818         supplied_libname=true
819         shift ;;
820       --source-base )
821         shift
822         if test $# = 0; then
823           func_fatal_error "missing argument for --source-base"
824         fi
825         sourcebase=$1
826         shift ;;
827       --source-base=* )
828         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
829         shift ;;
830       --m4-base )
831         shift
832         if test $# = 0; then
833           func_fatal_error "missing argument for --m4-base"
834         fi
835         m4base=$1
836         shift ;;
837       --m4-base=* )
838         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
839         shift ;;
840       --po-base )
841         shift
842         if test $# = 0; then
843           func_fatal_error "missing argument for --po-base"
844         fi
845         pobase=$1
846         shift ;;
847       --po-base=* )
848         pobase=`echo "X$1" | sed -e 's/^X--po-base=//'`
849         shift ;;
850       --doc-base )
851         shift
852         if test $# = 0; then
853           func_fatal_error "missing argument for --doc-base"
854         fi
855         docbase=$1
856         shift ;;
857       --doc-base=* )
858         docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'`
859         shift ;;
860       --tests-base )
861         shift
862         if test $# = 0; then
863           func_fatal_error "missing argument for --tests-base"
864         fi
865         testsbase=$1
866         shift ;;
867       --tests-base=* )
868         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
869         shift ;;
870       --aux-dir )
871         shift
872         if test $# = 0; then
873           func_fatal_error "missing argument for --aux-dir"
874         fi
875         auxdir=$1
876         shift ;;
877       --aux-dir=* )
878         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
879         shift ;;
880       --with-tests )
881         inctests=true
882         shift ;;
883       --avoid )
884         shift
885         if test $# = 0; then
886           func_fatal_error "missing argument for --avoid"
887         fi
888         func_append avoidlist " $1"
889         shift ;;
890       --avoid=* )
891         arg=`echo "X$1" | sed -e 's/^X--avoid=//'`
892         func_append avoidlist " $arg"
893         shift ;;
894       --lgpl )
895         lgpl=yes
896         shift ;;
897       --lgpl=* )
898         arg=`echo "X$1" | sed -e 's/^X--lgpl=//'`
899         case "$arg" in
900           2 | 3) ;;
901           *) func_fatal_error "invalid LGPL version number for --lgpl" ;;
902         esac
903         lgpl=$arg
904         shift ;;
905       --makefile-name )
906         shift
907         if test $# = 0; then
908           func_fatal_error "missing argument for --makefile-name"
909         fi
910         makefile_name="$1"
911         shift ;;
912       --makefile-name=* )
913         makefile_name=`echo "X$1" | sed -e 's/^X--makefile-name=//'`
914         shift ;;
915       --libtool )
916         libtool=true
917         shift ;;
918       --no-libtool )
919         libtool=false
920         shift ;;
921       --macro-prefix )
922         shift
923         if test $# = 0; then
924           func_fatal_error "missing argument for --macro-prefix"
925         fi
926         macro_prefix="$1"
927         shift ;;
928       --macro-prefix=* )
929         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
930         shift ;;
931       --po-domain )
932         shift
933         if test $# = 0; then
934           func_fatal_error "missing argument for --po-domain"
935         fi
936         po_domain="$1"
937         shift ;;
938       --po-domain=* )
939         po_domain=`echo "X$1" | sed -e 's/^X--po-domain=//'`
940         shift ;;
941       --vc-files )
942         vc_files=true
943         shift ;;
944       --no-vc-files )
945         vc_files=false
946         shift ;;
947       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
948         do_changelog=false
949         shift ;;
950       --dry-run )
951         doit=false
952         shift ;;
953       -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy )
954         symbolic=true
955         shift ;;
956       --local-symlink | --local-symlin | --local-symli | --local-syml | --local-sym | --local-sy | --local-s )
957         lsymbolic=true
958         shift ;;
959       -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | --more-syml | --more-sym | --more-sy | --more-s | --more- | --more | --mor | --mo )
960         symbolic=true
961         do_copyrights=
962         shift ;;
963       --help | --hel | --he | --h )
964         func_usage
965         func_exit $? ;;
966       --version | --versio | --versi | --vers )
967         func_version
968         func_exit $? ;;
969       -- )
970         # Stop option processing
971         shift
972         break ;;
973       -* )
974         echo "gnulib-tool: unknown option $1" 1>&2
975         echo "Try 'gnulib-tool --help' for more information." 1>&2
976         func_exit 1 ;;
977       * )
978         break ;;
979     esac
980   done
981
982   if test "$mode" = update; then
983     if test $# != 0; then
984       echo "gnulib-tool: too many arguments in 'update' mode" 1>&2
985       echo "Try 'gnulib-tool --help' for more information." 1>&2
986       echo "If you really want to modify the gnulib configuration of your project," 1>&2
987       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
988       func_exit 1
989     fi
990     if test -n "$local_gnulib_dir" || test -n "$supplied_libname" \
991        || test -n "$sourcebase" || test -n "$m4base" || test -n "$pobase" \
992        || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \
993        || test -n "$inctests" || test -n "$avoidlist" || test -n "$lgpl" \
994        || test -n "$makefile_name" || test -n "$macro_prefix" \
995        || test -n "$po_domain" || test -n "$vc_files"; then
996       echo "gnulib-tool: invalid options for 'update' mode" 1>&2
997       echo "Try 'gnulib-tool --help' for more information." 1>&2
998       echo "If you really want to modify the gnulib configuration of your project," 1>&2
999       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
1000       func_exit 1
1001     fi
1002     do_changelog=false
1003   fi
1004   if test -n "$pobase" && test -z "$po_domain"; then
1005     echo "gnulib-tool: together with --po-base, you need to specify --po-domain" 1>&2
1006     echo "Try 'gnulib-tool --help' for more information." 1>&2
1007     func_exit 1
1008   fi
1009   if test -z "$pobase" && test -n "$po_domain"; then
1010     echo "gnulib-tool: warning: --po-domain has no effect without a --po-base option" 1>&2
1011   fi
1012
1013   # Determine the minimum supported autoconf version from the project's
1014   # configure.ac.
1015   DEFAULT_AUTOCONF_MINVERSION="2.59"
1016   autoconf_minversion=
1017   configure_ac=
1018   if { test "$mode" = import || test "$mode" = update; } && test -n "$destdir"; then
1019     if test -f "$destdir"/configure.ac; then
1020       configure_ac="$destdir/configure.ac"
1021     else
1022       if test -f "$destdir"/configure.in; then
1023         configure_ac="$destdir/configure.in"
1024       fi
1025     fi
1026   else
1027     if test -f configure.ac; then
1028       configure_ac="configure.ac"
1029     else
1030       if test -f configure.in; then
1031         configure_ac="configure.in"
1032       fi
1033     fi
1034   fi
1035   if test -n "$configure_ac"; then
1036     # Use sed, not autoconf --trace, to look for the AC_PREREQ invocation,
1037     # because when some m4 files are omitted from a CVS repository,
1038     # "autoconf --trace=AC_PREREQ" fails with an error message like this:
1039     #   m4: aclocal.m4:851: Cannot open m4/absolute-header.m4: No such file or directory
1040     #   autom4te: m4 failed with exit status: 1
1041     prereqs=
1042     my_sed_traces='
1043       s,#.*$,,
1044       s,^dnl .*$,,
1045       s, dnl .*$,,
1046       /AC_PREREQ/ {
1047         s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,\1,p
1048       }'
1049     prereqs=`sed -n -e "$my_sed_traces" < "$configure_ac"`
1050     if test -n "$prereqs"; then
1051       autoconf_minversion=`
1052         for version in $prereqs; do echo $version; done |
1053         LC_ALL=C sort -nru | sed 1q
1054       `
1055     fi
1056   fi
1057   if test -z "$autoconf_minversion"; then
1058     autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION
1059   fi
1060   case "$autoconf_minversion" in
1061     1.* | 2.[0-4]* | 2.5[0-8]*)
1062       func_fatal_error "minimum supported autoconf version is 2.59. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;;
1063   esac
1064
1065   # Remove trailing slashes from the directory names. This is necessary for
1066   # m4base (to avoid an error in func_import) and optional for the others.
1067   sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
1068   case "$local_gnulib_dir" in
1069     */ ) local_gnulib_dir=`echo "$local_gnulib_dir" | sed -e "$sed_trimtrailingslashes"` ;;
1070   esac
1071   case "$sourcebase" in
1072     */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
1073   esac
1074   case "$m4base" in
1075     */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
1076   esac
1077   case "$pobase" in
1078     */ ) pobase=`echo "$pobase" | sed -e "$sed_trimtrailingslashes"` ;;
1079   esac
1080   case "$docbase" in
1081     */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;;
1082   esac
1083   case "$testsbase" in
1084     */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
1085   esac
1086   case "$auxdir" in
1087     */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
1088   esac
1089 }
1090
1091 func_gnulib_dir
1092 func_tmpdir
1093 trap 'exit_status=$?
1094       if test "$signal" != 0; then
1095         echo "caught signal $signal" >&2
1096       fi
1097       rm -rf "$tmp"
1098       exit $exit_status' 0
1099 for signal in 1 2 3 13 15; do
1100   trap '{ signal='$signal'; func_exit 1; }' $signal
1101 done
1102 signal=0
1103
1104 # func_lookup_file file
1105 # looks up a file in $local_gnulib_dir or $gnulib_dir, or combines it through
1106 # 'patch'.
1107 # Input:
1108 # - local_gnulib_dir  from --local-dir
1109 # Output:
1110 # - lookedup_file   name of the merged (combined) file
1111 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
1112 func_lookup_file ()
1113 {
1114   lkfile="$1"
1115   if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile"; then
1116     lookedup_file="$local_gnulib_dir/$lkfile"
1117     lookedup_tmp=
1118   else
1119     if test -f "$gnulib_dir/$lkfile"; then
1120       if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile.diff"; then
1121         lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'`
1122         rm -f "$tmp/$lkbase"
1123         cp "$gnulib_dir/$lkfile" "$tmp/$lkbase"
1124         patch -s "$tmp/$lkbase" < "$local_gnulib_dir/$lkfile.diff" \
1125           || func_fatal_error "patch file $local_gnulib_dir/$lkfile.diff didn't apply cleanly"
1126         lookedup_file="$tmp/$lkbase"
1127         lookedup_tmp=true
1128       else
1129         lookedup_file="$gnulib_dir/$lkfile"
1130         lookedup_tmp=
1131       fi
1132     else
1133       func_fatal_error "file $gnulib_dir/$lkfile not found"
1134     fi
1135   fi
1136 }
1137
1138 # func_all_modules
1139 # Input:
1140 # - local_gnulib_dir  from --local-dir
1141 func_all_modules ()
1142 {
1143   # Filter out metainformation files like README, which are not modules.
1144   # Filter out unit test modules; they can be retrieved through
1145   # --extract-tests-module if desired.
1146   {
1147     (cd "$gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,')
1148     if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
1149       (cd "$local_gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,' -e 's,\.diff$,,')
1150     fi
1151   } \
1152       | sed -e '/^CVS\//d' -e '/\/CVS\//d' \
1153             -e '/^ChangeLog$/d' -e '/\/ChangeLog$/d' \
1154             -e '/^COPYING$/d' -e '/\/COPYING$/d' \
1155             -e '/^README$/d' -e '/\/README$/d' \
1156             -e '/^TEMPLATE$/d' \
1157             -e '/^TEMPLATE-EXTENDED$/d' \
1158             -e '/^TEMPLATE-TESTS$/d' \
1159             -e '/^\..*/d' \
1160             -e '/~$/d' \
1161       | sed -e '/-tests$/d' \
1162       | LC_ALL=C sort -u
1163 }
1164
1165 # func_verify_module
1166 # verifies a module name
1167 # Input:
1168 # - local_gnulib_dir  from --local-dir
1169 # - module          module name argument
1170 func_verify_module ()
1171 {
1172   if { test -f "$gnulib_dir/modules/$module" \
1173        || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1174             && test -f "$local_gnulib_dir/modules/$module"; }; } \
1175      && test "CVS" != "$module" \
1176      && test "ChangeLog" != "$module" \
1177      && test "COPYING" != "$module" \
1178      && test "README" != "$module" \
1179      && test "TEMPLATE" != "$module" \
1180      && test "TEMPLATE-EXTENDED" != "$module" \
1181      && test "TEMPLATE-TESTS" != "$module"; then
1182     # OK, $module is a correct module name.
1183     # Verify that building the module description with 'patch' succeeds.
1184     func_lookup_file "modules/$module"
1185   else
1186     echo "gnulib-tool: module $module doesn't exist" 1>&2
1187     module=
1188   fi
1189 }
1190
1191 # func_verify_nontests_module
1192 # verifies a module name, excluding tests modules
1193 # Input:
1194 # - local_gnulib_dir  from --local-dir
1195 # - module          module name argument
1196 func_verify_nontests_module ()
1197 {
1198   case "$module" in
1199     *-tests ) module= ;;
1200     * ) func_verify_module ;;
1201   esac
1202 }
1203
1204 # func_verify_tests_module
1205 # verifies a module name, considering only tests modules
1206 # Input:
1207 # - local_gnulib_dir  from --local-dir
1208 # - module          module name argument
1209 func_verify_tests_module ()
1210 {
1211   case "$module" in
1212     *-tests ) func_verify_module ;;
1213     * ) module= ;;
1214   esac
1215 }
1216
1217 sed_extract_prog=':[     ]*$/ {
1218   :a
1219     n
1220     s/^Description:[     ]*$//
1221     s/^Notice:[  ]*$//
1222     s/^Files:[   ]*$//
1223     s/^Depends-on:[      ]*$//
1224     s/^configure\.ac-early:[     ]*$//
1225     s/^configure\.ac:[   ]*$//
1226     s/^Makefile\.am:[    ]*$//
1227     s/^Include:[         ]*$//
1228     s/^Link:[    ]*$//
1229     s/^License:[         ]*$//
1230     s/^Maintainer:[      ]*$//
1231     tb
1232     p
1233     ba
1234   :b
1235 }'
1236
1237 # func_get_description module
1238 # Input:
1239 # - local_gnulib_dir  from --local-dir
1240 func_get_description ()
1241 {
1242   func_lookup_file "modules/$1"
1243   sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file"
1244 }
1245
1246 # func_get_notice module
1247 # Input:
1248 # - local_gnulib_dir  from --local-dir
1249 func_get_notice ()
1250 {
1251   func_lookup_file "modules/$1"
1252   sed -n -e "/^Notice$sed_extract_prog" < "$lookedup_file"
1253 }
1254
1255 # func_get_filelist module
1256 # Input:
1257 # - local_gnulib_dir  from --local-dir
1258 func_get_filelist ()
1259 {
1260   func_lookup_file "modules/$1"
1261   sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file"
1262   echo m4/gnulib-common.m4
1263   case "$autoconf_minversion" in
1264     2.59)
1265       echo m4/onceonly.m4
1266       ;;
1267   esac
1268 }
1269
1270 # func_get_dependencies module
1271 # Input:
1272 # - local_gnulib_dir  from --local-dir
1273 func_get_dependencies ()
1274 {
1275   # ${module}-tests always implicitly depends on ${module}.
1276   echo "$1" | sed -n -e 's/-tests$//p'
1277   # Then the explicit dependencies listed in the module description.
1278   func_lookup_file "modules/$1"
1279   sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file"
1280 }
1281
1282 # func_get_autoconf_early_snippet module
1283 # Input:
1284 # - local_gnulib_dir  from --local-dir
1285 func_get_autoconf_early_snippet ()
1286 {
1287   func_lookup_file "modules/$1"
1288   sed -n -e "/^configure\.ac-early$sed_extract_prog" < "$lookedup_file"
1289 }
1290
1291 # func_get_autoconf_snippet module
1292 # Input:
1293 # - local_gnulib_dir  from --local-dir
1294 func_get_autoconf_snippet ()
1295 {
1296   func_lookup_file "modules/$1"
1297   sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file"
1298 }
1299
1300 # func_get_automake_snippet module
1301 # Input:
1302 # - local_gnulib_dir  from --local-dir
1303 func_get_automake_snippet ()
1304 {
1305   func_lookup_file "modules/$1"
1306   sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
1307   case "$1" in
1308     *-tests)
1309       # *-tests module live in tests/, not lib/.
1310       # Synthesize an EXTRA_DIST augmentation.
1311       all_files=`func_get_filelist $1`
1312       tests_files=`for f in $all_files; do \
1313                      case $f in \
1314                        tests/*) echo $f ;; \
1315                      esac; \
1316                    done | sed -e 's,^tests/,,'`
1317       extra_files="$tests_files"
1318       if test -n "$extra_files"; then
1319         echo "EXTRA_DIST +=" $extra_files
1320         echo
1321       fi
1322       ;;
1323     *)
1324       # Synthesize an EXTRA_DIST augmentation.
1325       sed_combine_lines='/\\$/{
1326         :a
1327         N
1328         s/\\\n/ /
1329         s/\\$/\\/
1330         ta
1331       }'
1332       sed_extract_mentioned_files='s/^lib_SOURCES[       ]*+=[   ]*//p'
1333       already_mentioned_files=` \
1334         sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file" \
1335         | sed -e "$sed_combine_lines" \
1336         | sed -n -e "$sed_extract_mentioned_files" | sed -e 's/#.*//'`
1337       all_files=`func_get_filelist $1`
1338       lib_files=`for f in $all_files; do \
1339                    case $f in \
1340                      lib/*) echo $f ;; \
1341                    esac; \
1342                  done | sed -e 's,^lib/,,'`
1343       # Remove $already_mentioned_files from $lib_files.
1344       echo "$lib_files" | LC_ALL=C sort -u > "$tmp"/lib-files
1345       extra_files=`for f in $already_mentioned_files; do echo $f; done \
1346                    | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/lib-files`
1347       if test -n "$extra_files"; then
1348         echo "EXTRA_DIST +=" $extra_files
1349         echo
1350       fi
1351       # Synthesize also an EXTRA_lib_SOURCES augmentation.
1352       # This is necessary so that automake can generate the right list of
1353       # dependency rules.
1354       # A possible approach would be to use autom4te --trace of the redefined
1355       # AC_LIBOBJ and AC_REPLACE_FUNCS macros when creating the Makefile.am
1356       # (use autom4te --trace, not just grep, so that AC_LIBOBJ invocations
1357       # inside autoconf's built-in macros are not missed).
1358       # But it's simpler and more robust to do it here, based on the file list.
1359       # If some .c file exists and is not used with AC_LIBOBJ - for example,
1360       # a .c file is preprocessed into another .c file for BUILT_SOURCES -,
1361       # automake will generate a useless dependency; this is harmless.
1362       case "$1" in
1363         relocatable-prog-wrapper) ;;
1364         *)
1365           sed_extract_c_files='/\.c$/p'
1366           extra_files=`echo "$extra_files" | sed -n -e "$sed_extract_c_files"`
1367           if test -n "$extra_files"; then
1368             echo "EXTRA_lib_SOURCES +=" $extra_files
1369             echo
1370           fi
1371           ;;
1372       esac
1373       # Synthesize an EXTRA_DIST augmentation also for the files in build-aux/.
1374       buildaux_files=`for f in $all_files; do \
1375                         case $f in \
1376                           build-aux/*) echo $f ;; \
1377                         esac; \
1378                       done | sed -e 's,^build-aux/,,'`
1379       if test -n "$buildaux_files"; then
1380         sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
1381         echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"`
1382         echo
1383       fi
1384       # Synthesize an EXTRA_DIST augmentation also for the files from top/.
1385       top_files=`for f in $all_files; do \
1386                    case $f in \
1387                      top/*) echo $f ;; \
1388                    esac; \
1389                  done | sed -e 's,^top/,,'`
1390       if test -n "$top_files"; then
1391         sed_prepend_topdir='s,^,$(top_srcdir)/,'
1392         echo "EXTRA_DIST += "`echo "$top_files" | sed -e "$sed_prepend_topdir"`
1393         echo
1394       fi
1395       ;;
1396   esac
1397 }
1398
1399 # func_get_include_directive module
1400 # Input:
1401 # - local_gnulib_dir  from --local-dir
1402 func_get_include_directive ()
1403 {
1404   func_lookup_file "modules/$1"
1405   sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file" | \
1406   sed -e 's/^\(["<]\)/#include \1/'
1407 }
1408
1409 # func_get_link_directive module
1410 # Input:
1411 # - local_gnulib_dir  from --local-dir
1412 func_get_link_directive ()
1413 {
1414   func_lookup_file "modules/$1"
1415   sed -n -e "/^Link$sed_extract_prog" < "$lookedup_file"
1416 }
1417
1418 # func_get_license module
1419 # Input:
1420 # - local_gnulib_dir  from --local-dir
1421 func_get_license ()
1422 {
1423   func_lookup_file "modules/$1"
1424   { sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
1425     # The default is GPL.
1426     echo "GPL"
1427   } | sed -e 's,^ *$,,' | sed -e 1q
1428 }
1429
1430 # func_get_maintainer module
1431 # Input:
1432 # - local_gnulib_dir  from --local-dir
1433 func_get_maintainer ()
1434 {
1435   func_lookup_file "modules/$1"
1436   sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
1437 }
1438
1439 # func_get_tests_module module
1440 # Input:
1441 # - local_gnulib_dir  from --local-dir
1442 func_get_tests_module ()
1443 {
1444   # The naming convention for tests modules is hardwired: ${module}-tests.
1445   if test -f "$gnulib_dir/modules/$1"-tests \
1446      || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1447           && test -f "$local_gnulib_dir/modules/$1"-tests; }; then
1448     echo "$1"-tests
1449   fi
1450 }
1451
1452 # func_acceptable module
1453 # tests whether a module is acceptable.
1454 # Input:
1455 # - avoidlist       list of modules to avoid
1456 func_acceptable ()
1457 {
1458   for avoid in $avoidlist; do
1459     if test "$avoid" = "$1"; then
1460       return 1
1461     fi
1462   done
1463   return 0
1464 }
1465
1466 # func_modules_transitive_closure
1467 # Input:
1468 # - local_gnulib_dir  from --local-dir
1469 # - modules         list of specified modules
1470 # - inctests        true if tests should be included, blank otherwise
1471 # - avoidlist       list of modules to avoid
1472 # - tmp             pathname of a temporary directory
1473 # Output:
1474 # - modules         list of modules, including dependencies
1475 func_modules_transitive_closure ()
1476 {
1477   # In order to process every module only once (for speed), process an "input
1478   # list" of modules, producing an "output list" of modules. During each round,
1479   # more modules can be queued in the input list. Once a module on the input
1480   # list has been processed, it is added to the "handled list", so we can avoid
1481   # to process it again.
1482   handledmodules=
1483   inmodules="$modules"
1484   outmodules=
1485   while test -n "$inmodules"; do
1486     inmodules_this_round="$inmodules"
1487     inmodules=                    # Accumulator, queue for next round
1488     for module in $inmodules_this_round; do
1489       func_verify_module
1490       if test -n "$module"; then
1491         if func_acceptable $module; then
1492           func_append outmodules " $module"
1493           deps=`func_get_dependencies $module`
1494           # Duplicate dependencies are harmless, but Jim wants a warning.
1495           duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d`
1496           if test -n "$duplicated_deps"; then
1497             echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
1498           fi
1499           func_append inmodules " $deps"
1500           if test -n "$inctests"; then
1501             testsmodule=`func_get_tests_module $module`
1502             if test -n "$testsmodule"; then
1503               func_append inmodules " $testsmodule"
1504             fi
1505           fi
1506         fi
1507       fi
1508     done
1509     handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
1510     # Remove $handledmodules from $inmodules.
1511     for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
1512     inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
1513   done
1514   modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u`
1515   rm -f "$tmp"/queued-modules
1516 }
1517
1518 # func_modules_add_dummy
1519 # Input:
1520 # - local_gnulib_dir  from --local-dir
1521 # - modules         list of modules, including dependencies
1522 # Output:
1523 # - modules         list of modules, including 'dummy' if needed
1524 func_modules_add_dummy ()
1525 {
1526   have_lib_SOURCES=
1527   sed_remove_backslash_newline=':a
1528 /\\$/{
1529 s/\\$//
1530 N
1531 s/\n//
1532 ba
1533 }'
1534   for module in $modules; do
1535     func_verify_nontests_module
1536     if test -n "$module"; then
1537       # Extract the value of "lib_SOURCES += ...".
1538       for file in `func_get_automake_snippet "$module" | sed -e "$sed_remove_backslash_newline" | sed -n -e 's,^lib_SOURCES[     ]*+=\([^#]*\).*$,\1,p'`; do
1539         # Ignore .h files since they are not compiled.
1540         case "$file" in
1541           *.h) ;;
1542           *) have_lib_SOURCES=yes ;;
1543         esac
1544       done
1545     fi
1546   done
1547   # Add the dummy module, to make sure the library will be non-empty.
1548   if test -z "$have_lib_SOURCES"; then
1549     if func_acceptable "dummy"; then
1550       func_append modules " dummy"
1551     fi
1552   fi
1553 }
1554
1555 # func_modules_notice
1556 # Input:
1557 # - local_gnulib_dir  from --local-dir
1558 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
1559 # - modules         list of modules, including dependencies
1560 func_modules_notice ()
1561 {
1562   if test $verbose -ge -1; then
1563     for module in $modules; do
1564       func_verify_module
1565       if test -n "$module"; then
1566         msg=`func_get_notice $module`
1567         if test -n "$msg"; then
1568           echo "Notice from module $module:"
1569           echo "$msg" | sed -e 's/^/  /'
1570         fi
1571       fi
1572     done
1573   fi
1574 }
1575
1576 # func_modules_to_filelist
1577 # Input:
1578 # - local_gnulib_dir  from --local-dir
1579 # - modules         list of modules, including dependencies
1580 # Output:
1581 # - files           list of files
1582 func_modules_to_filelist ()
1583 {
1584   files=
1585   for module in $modules; do
1586     func_verify_module
1587     if test -n "$module"; then
1588       fs=`func_get_filelist $module`
1589       func_append files " $fs"
1590     fi
1591   done
1592   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
1593 }
1594
1595 # func_execute_command command [args...]
1596 # Executes a command.
1597 # Uses also the variables
1598 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
1599 func_execute_command ()
1600 {
1601   if test $verbose -ge 0; then
1602     echo "executing $*"
1603     "$@"
1604   else
1605     # Commands like automake produce output to stderr even when the succeed.
1606     # Turn this output off if the command succeeds.
1607     "$@" > "$tmp"/cmdout 2>&1
1608     cmdret=$?
1609     if test $cmdret = 0; then
1610       rm -f "$tmp"/cmdout
1611     else
1612       echo "executing $*"
1613       cat "$tmp"/cmdout 1>&2
1614       rm -f "$tmp"/cmdout
1615       (exit $cmdret)
1616     fi
1617   fi
1618 }
1619
1620 # func_emit_lib_Makefile_am
1621 # emits the contents of library makefile to standard output.
1622 # Input:
1623 # - local_gnulib_dir  from --local-dir
1624 # - modules         list of modules, including dependencies
1625 # - libname         library name
1626 # - pobase          directory relative to destdir where to place *.po files
1627 # - auxdir          directory relative to destdir where to place build aux files
1628 # - makefile_name   from --makefile-name
1629 # - libtool         true if libtool will be used, false or blank otherwise
1630 # - macro_prefix    prefix of gl_LIBOBJS macros to use
1631 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
1632 # - actioncmd       (optional) command that will reproduce this invocation
1633 # - for_test        true if creating a package for testing, false otherwise
1634 # Output:
1635 # - uses_subdirs    nonempty if object files in subdirs exist
1636 func_emit_lib_Makefile_am ()
1637 {
1638   # When creating an includable Makefile.am snippet, augment variables with
1639   # += instead of assigning them.
1640   if test -n "$makefile_name"; then
1641     assign='+='
1642   else
1643     assign='='
1644   fi
1645   if test "$libtool" = true; then
1646     libext=la
1647     perhapsLT=LT
1648     sed_eliminate_LDFLAGS=
1649   else
1650     libext=a
1651     perhapsLT=
1652     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1653   fi
1654   if $for_test; then
1655     # When creating a package for testing: Attempt to provoke failures,
1656     # especially link errors, already during "make" rather than during
1657     # "make check", because "make check" is not possible in a cross-compiling
1658     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
1659     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
1660   else
1661     sed_transform_check_PROGRAMS=
1662   fi
1663   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1664   echo "## Process this file with automake to produce Makefile.in."
1665   func_emit_copyright_notice
1666   if test -n "$actioncmd"; then
1667     echo "# Reproduce by: $actioncmd"
1668   fi
1669   echo
1670   uses_subdirs=
1671   {
1672     for module in $modules; do
1673       func_verify_nontests_module
1674       if test -n "$module"; then
1675         {
1676           func_get_automake_snippet "$module" |
1677             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1678                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
1679                 -e "$sed_eliminate_LDFLAGS" \
1680                 -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \
1681                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1682                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
1683                 -e "$sed_transform_check_PROGRAMS"
1684           if test "$module" = 'alloca'; then
1685             echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
1686             echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@"
1687           fi
1688         } > amsnippet.tmp
1689         # Skip the contents if its entirely empty.
1690         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1691           echo "## begin gnulib module $module"
1692           echo
1693           cat amsnippet.tmp
1694           echo "## end   gnulib module $module"
1695           echo
1696         fi
1697         rm -f amsnippet.tmp
1698         # Test whether there are some source files in subdirectories.
1699         for f in `func_get_filelist "$module"`; do
1700           case $f in
1701             lib/*/*.c) uses_subdirs=yes ;;
1702           esac
1703         done
1704       fi
1705     done
1706   } > allsnippets.tmp
1707   if test -z "$makefile_name"; then
1708     # If there are source files in subdirectories, prevent collision of the
1709     # object files (example: hash.c and libxml/hash.c).
1710     subdir_options=
1711     if test -n "$uses_subdirs"; then
1712       subdir_options=' subdir-objects'
1713     fi
1714     echo "AUTOMAKE_OPTIONS = 1.5 gnits${subdir_options}"
1715   fi
1716   echo
1717   if test -z "$makefile_name"; then
1718     echo "noinst_HEADERS ="
1719     echo "noinst_LIBRARIES ="
1720     echo "noinst_LTLIBRARIES ="
1721     # Automake versions < 1.9b create an empty pkgdatadir at installation time
1722     # if you specify pkgdata_DATA to empty. This is a workaround.
1723     if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1724       echo "pkgdata_DATA ="
1725     fi
1726     echo "EXTRA_DIST ="
1727     echo "BUILT_SOURCES ="
1728     echo "SUFFIXES ="
1729   fi
1730   echo "MOSTLYCLEANFILES $assign core *.stackdump"
1731   if test -z "$makefile_name"; then
1732     echo "MOSTLYCLEANDIRS ="
1733     echo "CLEANFILES ="
1734     echo "DISTCLEANFILES ="
1735     echo "MAINTAINERCLEANFILES ="
1736     echo
1737     echo "AM_CPPFLAGS ="
1738   fi
1739   echo
1740   if LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *= *$libname\\.$libext\$" allsnippets.tmp > /dev/null; then
1741     # One of the snippets already specifies an installation location for the
1742     # library. Don't confuse automake by saying it should not be installed.
1743     :
1744   else
1745     # By default, the generated library should not be installed.
1746     echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext"
1747   fi
1748   echo
1749   echo "${libname}_${libext}_SOURCES ="
1750   # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
1751   # automake during its analyses looks for $(LIBOBJS), not for @LIBOBJS@.
1752   echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1753   echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
1754   echo "EXTRA_${libname}_${libext}_SOURCES ="
1755   if test "$libtool" = true; then
1756     echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)"
1757   fi
1758   echo
1759   if test -n "$pobase"; then
1760     echo "AM_CPPFLAGS += -DDEFAULT_TEXT_DOMAIN=\\\"${po_domain}-gnulib\\\""
1761     echo
1762   fi
1763   cat allsnippets.tmp \
1764     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
1765   echo
1766   echo "mostlyclean-local: mostlyclean-generic"
1767   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1768   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1769   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
1770   echo "          fi; \\"
1771   echo "        done; \\"
1772   echo "        :"
1773   rm -f allsnippets.tmp
1774 }
1775
1776 # func_emit_po_Makevars
1777 # emits the contents of po/ makefile parametrization to standard output.
1778 # Input:
1779 # - local_gnulib_dir  from --local-dir
1780 # - sourcebase      directory relative to destdir where to place source code
1781 # - pobase          directory relative to destdir where to place *.po files
1782 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
1783 func_emit_po_Makevars ()
1784 {
1785   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1786   func_emit_copyright_notice
1787   echo
1788   echo "# Usually the message domain is the same as the package name."
1789   echo "# But here it has a '-gnulib' suffix."
1790   echo "DOMAIN = ${po_domain}-gnulib"
1791   echo
1792   echo "# These two variables depend on the location of this directory."
1793   echo "subdir = ${pobase}"
1794   echo "top_builddir = "`echo "$pobase" | sed -e 's,//*,/,g' -e 's,[^/][^/]*,..,g'`
1795   echo
1796   cat <<\EOF
1797 # These options get passed to xgettext.
1798 XGETTEXT_OPTIONS = \
1799   --keyword=_ --flag=_:1:pass-c-format \
1800   --keyword=N_ --flag=N_:1:pass-c-format \
1801   --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."' \
1802   --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."' \
1803   --flag=error:3:c-format --flag=error_at_line:5:c-format
1804
1805 # This is the copyright holder that gets inserted into the header of the
1806 # $(DOMAIN).pot file.  gnulib is copyrighted by the FSF.
1807 COPYRIGHT_HOLDER = Free Software Foundation, Inc.
1808
1809 # This is the email address or URL to which the translators shall report
1810 # bugs in the untranslated strings:
1811 # - Strings which are not entire sentences, see the maintainer guidelines
1812 #   in the GNU gettext documentation, section 'Preparing Strings'.
1813 # - Strings which use unclear terms or require additional context to be
1814 #   understood.
1815 # - Strings which make invalid assumptions about notation of date, time or
1816 #   money.
1817 # - Pluralisation problems.
1818 # - Incorrect English spelling.
1819 # - Incorrect formatting.
1820 # It can be your email address, or a mailing list address where translators
1821 # can write to without being subscribed, or the URL of a web page through
1822 # which the translators can contact you.
1823 MSGID_BUGS_ADDRESS = bug-gnulib@gnu.org
1824
1825 # This is the list of locale categories, beyond LC_MESSAGES, for which the
1826 # message catalogs shall be used.  It is usually empty.
1827 EXTRA_LOCALE_CATEGORIES =
1828
1829 # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
1830 # context.  Possible values are "yes" and "no".  Set this to yes if the
1831 # package uses functions taking also a message context, like pgettext(), or
1832 # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
1833 USE_MSGCTXT = no
1834 EOF
1835 }
1836
1837 # func_emit_po_POTFILES_in
1838 # emits the file list to be passed to xgettext to standard output.
1839 # Input:
1840 # - local_gnulib_dir  from --local-dir
1841 # - sourcebase      directory relative to destdir where to place source code
1842 # - files           list of new files
1843 func_emit_po_POTFILES_in ()
1844 {
1845   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1846   func_emit_copyright_notice
1847   echo
1848   echo "# List of files which contain translatable strings."
1849   echo "$files" | sed -n -e "s,^lib/,$sourcebase/,p"
1850 }
1851
1852 # func_emit_tests_Makefile_am
1853 # emits the contents of tests makefile to standard output.
1854 # Input:
1855 # - local_gnulib_dir  from --local-dir
1856 # - modules         list of modules, including dependencies
1857 # - libname         library name
1858 # - auxdir          directory relative to destdir where to place build aux files
1859 # - makefile_name   from --makefile-name
1860 # - libtool         true if libtool will be used, false or blank otherwise
1861 # - sourcebase      relative directory containing lib source code
1862 # - m4base          relative directory containing autoconf macros
1863 # - testsbase       relative directory containing unit test code
1864 # - macro_prefix    prefix of gl_LIBOBJS macros to use
1865 # - for_test        true if creating a package for testing, false otherwise
1866 # - use_libtests    true if a libtests.a should be built, false otherwise
1867 # Output:
1868 # - uses_subdirs    nonempty if object files in subdirs exist
1869 func_emit_tests_Makefile_am ()
1870 {
1871   if test "$libtool" = true; then
1872     libext=la
1873     sed_eliminate_LDFLAGS=
1874   else
1875     libext=a
1876     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
1877   fi
1878   if $for_test; then
1879     # When creating a package for testing: Attempt to provoke failures,
1880     # especially link errors, already during "make" rather than during
1881     # "make check", because "make check" is not possible in a cross-compiling
1882     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
1883     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
1884   else
1885     sed_transform_check_PROGRAMS=
1886   fi
1887   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
1888   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
1889   echo "## Process this file with automake to produce Makefile.in."
1890   func_emit_copyright_notice
1891   echo
1892   uses_subdirs=
1893   (
1894     for module in $modules; do
1895       if $for_test; then
1896         func_verify_tests_module
1897       else
1898         func_verify_module
1899       fi
1900       if test -n "$module"; then
1901         {
1902           func_get_automake_snippet "$module" |
1903             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
1904                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
1905                 -e "$sed_eliminate_LDFLAGS" \
1906                 -e 's,lib_\([A-Z][A-Z]*\),libtests_a_\1,g' \
1907                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
1908                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
1909                 -e "$sed_transform_check_PROGRAMS"
1910           if $use_libtests && test "$module" = 'alloca'; then
1911             echo "libtests_a_LIBADD += @${perhapsLT}ALLOCA@"
1912             echo "libtests_a_DEPENDENCIES += @${perhapsLT}ALLOCA@"
1913           fi
1914         } > amsnippet.tmp
1915         # Skip the contents if its entirely empty.
1916         if grep '[^      ]' amsnippet.tmp > /dev/null ; then
1917           echo "## begin gnulib module $module"
1918           echo
1919           cat amsnippet.tmp
1920           echo "## end   gnulib module $module"
1921           echo
1922         fi
1923         rm -f amsnippet.tmp
1924         # Test whether there are some source files in subdirectories.
1925         for f in `func_get_filelist "$module"`; do
1926           case $f in
1927             lib/*/*.c | tests/*/*.c) uses_subdirs=yes ;;
1928           esac
1929         done
1930       fi
1931     done
1932   ) > allsnippets.tmp
1933   # Generate dependencies here, since it eases the debugging of test failures.
1934   # If there are source files in subdirectories, prevent collision of the
1935   # object files (example: hash.c and libxml/hash.c).
1936   subdir_options=
1937   if test -n "$uses_subdirs"; then
1938     subdir_options=' subdir-objects'
1939   fi
1940   echo "AUTOMAKE_OPTIONS = 1.5 foreign${subdir_options}"
1941   echo
1942   if $for_test; then
1943     echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
1944     echo
1945   fi
1946   # Nothing is being added to SUBDIRS; nevertheless the existence of this
1947   # variable is needed to avoid an error from automake:
1948   #   "AM_GNU_GETTEXT used but SUBDIRS not defined"
1949   echo "SUBDIRS ="
1950   echo "TESTS ="
1951   echo "TESTS_ENVIRONMENT ="
1952   echo "noinst_PROGRAMS ="
1953   if ! $for_test; then
1954     echo "check_PROGRAMS ="
1955   fi
1956   echo "noinst_HEADERS ="
1957   echo "noinst_LIBRARIES ="
1958   if $use_libtests; then
1959     if $for_test; then
1960       echo "noinst_LIBRARIES += libtests.a"
1961     else
1962       echo "check_LIBRARIES = libtests.a"
1963     fi
1964   fi
1965   # Automake versions < 1.9b create an empty pkgdatadir at installation time
1966   # if you specify pkgdata_DATA to empty. This is a workaround.
1967   if grep '^pkgdata_DATA *+=' allsnippets.tmp > /dev/null; then
1968     echo "pkgdata_DATA ="
1969   fi
1970   echo "EXTRA_DIST ="
1971   echo "BUILT_SOURCES ="
1972   echo "SUFFIXES ="
1973   echo "MOSTLYCLEANFILES = core *.stackdump"
1974   echo "MOSTLYCLEANDIRS ="
1975   echo "CLEANFILES ="
1976   echo "DISTCLEANFILES ="
1977   echo "MAINTAINERCLEANFILES ="
1978   echo
1979   echo "AM_CPPFLAGS = \\"
1980   echo "  -I. -I\$(srcdir) \\"
1981   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
1982   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
1983   echo
1984   local_ldadd_before=''
1985   local_ldadd_after=''
1986   if $use_libtests; then
1987     # All test programs need to be linked with libtests.a.
1988     # It needs to be passed to the linker before ${libname}.${libext}, since
1989     # the tests-related modules depend on the main modules.
1990     # It also needs to be passed to the linker after ${libname}.${libext}
1991     # because the latter might contain incomplete modules (such as the 'error'
1992     # module whose dependency to 'progname' is voluntarily omitted).
1993     # The LIBTESTS_LIBDEPS can be passed to the linker once or twice, it does
1994     # not matter.
1995     local_ldadd_before=' libtests.a'
1996     local_ldadd_after=' libtests.a $(LIBTESTS_LIBDEPS)'
1997   fi
1998   echo "LDADD =${local_ldadd_before} ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}${local_ldadd_after}"
1999   echo
2000   if $use_libtests; then
2001     echo "libtests_a_SOURCES ="
2002     # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
2003     # automake during its analyses looks for $(LIBOBJS), not for @LIBOBJS@.
2004     echo "libtests_a_LIBADD = \$(${macro_prefix}tests_LIBOBJS)"
2005     echo "libtests_a_DEPENDENCIES = \$(${macro_prefix}tests_LIBOBJS)"
2006     echo "EXTRA_libtests_a_SOURCES ="
2007     # The circular dependency in LDADD requires this.
2008     echo "AM_LIBTOOLFLAGS = --preserve-dup-deps"
2009     echo
2010   fi
2011   cat allsnippets.tmp \
2012     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
2013   echo "# Clean up after Solaris cc."
2014   echo "clean-local:"
2015   echo "        rm -rf SunWS_cache"
2016   echo
2017   echo "mostlyclean-local: mostlyclean-generic"
2018   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
2019   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
2020   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
2021   echo "          fi; \\"
2022   echo "        done; \\"
2023   echo "        :"
2024   rm -f allsnippets.tmp
2025 }
2026
2027 # func_emit_initmacro_start macro_prefix
2028 # emits the first few statements of the gl_INIT macro to standard output.
2029 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2030 func_emit_initmacro_start ()
2031 {
2032   macro_prefix_arg="$1"
2033   # Overriding AC_LIBOBJ and AC_REPLACE_FUNCS has the effect of storing
2034   # platform-dependent object files in ${macro_prefix_arg}_LIBOBJS instead of
2035   # LIBOBJS.  The purpose is to allow several gnulib instantiations under
2036   # a single configure.ac file.  (AC_CONFIG_LIBOBJ_DIR does not allow this
2037   # flexibility.)
2038   # Furthermore it avoids an automake error like this when a Makefile.am
2039   # that uses pieces of gnulib also uses $(LIBOBJ):
2040   #   automatically discovered file `error.c' should not be explicitly mentioned
2041   echo "  m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix_arg}_LIBOBJ]))"
2042   echo "  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix_arg}_REPLACE_FUNCS]))"
2043   # Overriding AC_LIBSOURCES has the same purpose of avoiding the automake
2044   # error when a Makefile.am that uses pieces of gnulib also uses $(LIBOBJ):
2045   #   automatically discovered file `error.c' should not be explicitly mentioned
2046   # We let automake know about the files to be distributed through the
2047   # EXTRA_lib_SOURCES variable.
2048   echo "  m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix_arg}_LIBSOURCES]))"
2049   echo "  gl_COMMON"
2050 }
2051
2052 # func_emit_initmacro_end macro_prefix
2053 # emits the last few statements of the gl_INIT macro to standard output.
2054 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2055 func_emit_initmacro_end ()
2056 {
2057   macro_prefix_arg="$1"
2058   echo "  m4_popdef([AC_LIBSOURCES])"
2059   echo "  m4_popdef([AC_REPLACE_FUNCS])"
2060   echo "  m4_popdef([AC_LIBOBJ])"
2061   echo "  AC_CONFIG_COMMANDS_PRE(["
2062   echo "    ${macro_prefix_arg}_libobjs="
2063   echo "    ${macro_prefix_arg}_ltlibobjs="
2064   echo "    if test -n \"\$${macro_prefix_arg}_LIBOBJS\"; then"
2065   echo "      # Remove the extension."
2066   echo "      sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
2067   echo "      for i in \`for i in \$${macro_prefix_arg}_LIBOBJS; do echo \"\$i\"; done | sed \"\$sed_drop_objext\" | sort | uniq\`; do"
2068   echo "        ${macro_prefix_arg}_libobjs=\"\$${macro_prefix_arg}_libobjs \$i.\$ac_objext\""
2069   echo "        ${macro_prefix_arg}_ltlibobjs=\"\$${macro_prefix_arg}_ltlibobjs \$i.lo\""
2070   echo "      done"
2071   echo "    fi"
2072   echo "    AC_SUBST([${macro_prefix_arg}_LIBOBJS], [\$${macro_prefix_arg}_libobjs])"
2073   echo "    AC_SUBST([${macro_prefix_arg}_LTLIBOBJS], [\$${macro_prefix_arg}_ltlibobjs])"
2074   echo "  ])"
2075 }
2076
2077 # func_emit_initmacro_done macro_prefix sourcebase
2078 # emits a few statements after the gl_INIT macro to standard output.
2079 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2080 # - sourcebase      directory relative to destdir where to place source code
2081 func_emit_initmacro_done ()
2082 {
2083   macro_prefix_arg="$1"
2084   sourcebase_arg="$2"
2085   echo
2086   echo "# Like AC_LIBOBJ, except that the module name goes"
2087   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
2088   echo "AC_DEFUN([${macro_prefix_arg}_LIBOBJ], ["
2089   echo "  AS_LITERAL_IF([\$1], [${macro_prefix_arg}_LIBSOURCES([\$1.c])])dnl"
2090   echo "  ${macro_prefix_arg}_LIBOBJS=\"\$${macro_prefix_arg}_LIBOBJS \$1.\$ac_objext\""
2091   echo "])"
2092   echo
2093   echo "# m4_foreach_w is provided by autoconf-2.59c and later."
2094   echo "# This definition is to accommodate developers using versions"
2095   echo "# of autoconf older than that."
2096   echo "m4_ifndef([m4_foreach_w],"
2097   echo "  [m4_define([m4_foreach_w],"
2098   echo "    [m4_foreach([\$1], m4_split(m4_normalize([\$2]), [ ]), [\$3])])])"
2099   echo
2100   echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
2101   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
2102   echo "AC_DEFUN([${macro_prefix_arg}_REPLACE_FUNCS], ["
2103   echo "  m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl"
2104   echo "  AC_CHECK_FUNCS([\$1], , [${macro_prefix_arg}_LIBOBJ(\$ac_func)])"
2105   echo "])"
2106   echo
2107   echo "# Like AC_LIBSOURCES, except the directory where the source file is"
2108   echo "# expected is derived from the gnulib-tool parametrization,"
2109   echo "# and alloca is special cased (for the alloca-opt module)."
2110   echo "# We could also entirely rely on EXTRA_lib..._SOURCES."
2111   echo "AC_DEFUN([${macro_prefix_arg}_LIBSOURCES], ["
2112   echo "  m4_foreach([_gl_NAME], [\$1], ["
2113   echo "    m4_if(_gl_NAME, [alloca.c], [], ["
2114   echo "      m4_syscmd([test -r $sourcebase_arg/]_gl_NAME[ || test ! -d $sourcebase_arg])dnl"
2115   echo "      m4_if(m4_sysval, [0], [],"
2116   echo "        [AC_FATAL([missing $sourcebase_arg/]_gl_NAME)])"
2117   echo "    ])"
2118   echo "  ])"
2119   echo "])"
2120 }
2121
2122 # func_import modules
2123 # Uses also the variables
2124 # - destdir         target directory
2125 # - local_gnulib_dir  from --local-dir
2126 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
2127 # - libname         library name
2128 # - sourcebase      directory relative to destdir where to place source code
2129 # - m4base          directory relative to destdir where to place *.m4 macros
2130 # - pobase          directory relative to destdir where to place *.po files
2131 # - docbase         directory relative to destdir where to place doc files
2132 # - testsbase       directory relative to destdir where to place unit test code
2133 # - auxdir          directory relative to destdir where to place build aux files
2134 # - inctests        true if --with-tests was given, blank otherwise
2135 # - avoidlist       list of modules to avoid, from --avoid
2136 # - lgpl            yes or a number if library's license shall be LGPL,
2137 #                   blank otherwise
2138 # - makefile_name   from --makefile-name
2139 # - libtool         true if --libtool was given, false if --no-libtool was
2140 #                   given, blank otherwise
2141 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
2142 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2143 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
2144 # - vc_files        true if --vc-files was given, false if --no-vc-files was
2145 #                   given, blank otherwise
2146 # - autoconf_minversion  minimum supported autoconf version
2147 # - doit            : if actions shall be executed, false if only to be printed
2148 # - symbolic        true if files should be symlinked, copied otherwise
2149 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
2150 #                   copied otherwise
2151 # - do_copyrights   true if copyright notices in files should be replaced,
2152 #                   blank otherwise
2153 func_import ()
2154 {
2155   # Get the cached settings.
2156   cached_local_gnulib_dir=
2157   cached_specified_modules=
2158   cached_avoidlist=
2159   cached_sourcebase=
2160   cached_m4base=
2161   cached_pobase=
2162   cached_docbase=
2163   cached_testsbase=
2164   cached_inctests=
2165   cached_libname=
2166   cached_lgpl=
2167   cached_makefile_name=
2168   cached_libtool=
2169   cached_macro_prefix=
2170   cached_po_domain=
2171   cached_vc_files=
2172   cached_files=
2173   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
2174     cached_libtool=false
2175     my_sed_traces='
2176       s,#.*$,,
2177       s,^dnl .*$,,
2178       s, dnl .*$,,
2179       /gl_LOCAL_DIR(/ {
2180         s,^.*gl_LOCAL_DIR([[ ]*\([^])]*\).*$,cached_local_gnulib_dir="\1",p
2181       }
2182       /gl_MODULES(/ {
2183         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
2184       }
2185       /gl_AVOID(/ {
2186         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
2187       }
2188       /gl_SOURCE_BASE(/ {
2189         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
2190       }
2191       /gl_M4_BASE(/ {
2192         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
2193       }
2194       /gl_PO_BASE(/ {
2195         s,^.*gl_PO_BASE([[ ]*\([^])]*\).*$,cached_pobase="\1",p
2196       }
2197       /gl_DOC_BASE(/ {
2198         s,^.*gl_DOC_BASE([[ ]*\([^])]*\).*$,cached_docbase="\1",p
2199       }
2200       /gl_TESTS_BASE(/ {
2201         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
2202       }
2203       /gl_WITH_TESTS/ {
2204         s,^.*$,cached_inctests=true,p
2205       }
2206       /gl_LIB(/ {
2207         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
2208       }
2209       /gl_LGPL(/ {
2210         s,^.*gl_LGPL([[ ]*\([^])]*\).*$,cached_lgpl="\1",p
2211       }
2212       /gl_LGPL/ {
2213         s,^.*$,cached_lgpl=yes,p
2214       }
2215       /gl_MAKEFILE_NAME(/ {
2216         s,^.*gl_MAKEFILE_NAME([[ ]*\([^])]*\).*$,cached_makefile_name="\1",p
2217       }
2218       /gl_LIBTOOL/ {
2219         s,^.*$,cached_libtool=true,p
2220       }
2221       /gl_MACRO_PREFIX(/ {
2222         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
2223       }
2224       /gl_PO_DOMAIN(/ {
2225         s,^.*gl_PO_DOMAIN([[ ]*\([^])]*\).*$,cached_po_domain="\1",p
2226       }
2227       /gl_VC_FILES(/ {
2228         s,^.*gl_VC_FILES([[ ]*\([^])]*\).*$,cached_vc_files="\1",p
2229       }'
2230     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
2231     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
2232       my_sed_traces='
2233         s,#.*$,,
2234         s,^dnl .*$,,
2235         s, dnl .*$,,
2236         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
2237           s,^.*$,cached_files=",p
2238           n
2239           ta
2240           :a
2241           s,^\]).*$,",
2242           tb
2243           p
2244           n
2245           ba
2246           :b
2247           p
2248         }'
2249       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
2250     fi
2251   fi
2252
2253   # Merge the cached settings with the specified ones.
2254   # The m4base must be the same as expected from the pathname.
2255   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
2256     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
2257   fi
2258   # The local_gnulib_dir defaults to the cached one. Recall that the cached one
2259   # is relative to $destdir, whereas the one we use is relative to . or absolute.
2260   if test -z "$local_gnulib_dir"; then
2261     if test -n "$cached_local_gnulib_dir"; then
2262       case "$destdir" in
2263         /*)
2264           local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2265         *)
2266           case "$cached_local_gnulib_dir" in
2267             /*)
2268               local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2269             *)
2270               func_relconcat "$destdir" "$cached_local_gnulib_dir"
2271               local_gnulib_dir="$relconcat" ;;
2272           esac ;;
2273       esac
2274     fi
2275   fi
2276   # Append the cached and the specified module names. So that
2277   # "gnulib-tool --import foo" means to add the module foo.
2278   specified_modules="$cached_specified_modules $1"
2279   # Append the cached and the specified avoidlist. This is probably better
2280   # than dropping the cached one when --avoid is specified at least once.
2281   avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
2282   avoidlist=`echo $avoidlist`
2283
2284   # The sourcebase defaults to the cached one.
2285   if test -z "$sourcebase"; then
2286     sourcebase="$cached_sourcebase"
2287     if test -z "$sourcebase"; then
2288       func_fatal_error "missing --source-base option"
2289     fi
2290   fi
2291   # The pobase defaults to the cached one.
2292   if test -z "$pobase"; then
2293     pobase="$cached_pobase"
2294   fi
2295   # The docbase defaults to the cached one.
2296   if test -z "$docbase"; then
2297     docbase="$cached_docbase"
2298     if test -z "$docbase"; then
2299       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."
2300     fi
2301   fi
2302   # The testsbase defaults to the cached one.
2303   if test -z "$testsbase"; then
2304     testsbase="$cached_testsbase"
2305     if test -z "$testsbase"; then
2306       func_fatal_error "missing --tests-base option"
2307     fi
2308   fi
2309   # Require the tests if specified either way.
2310   if test -z "$inctests"; then
2311     inctests="$cached_inctests"
2312   fi
2313   # The libname defaults to the cached one.
2314   if test -z "$supplied_libname"; then
2315     libname="$cached_libname"
2316     if test -z "$libname"; then
2317       func_fatal_error "missing --lib option"
2318     fi
2319   fi
2320   # Require LGPL if specified either way.
2321   if test -z "$lgpl"; then
2322     lgpl="$cached_lgpl"
2323   fi
2324   # The makefile_name defaults to the cached one.
2325   if test -z "$makefile_name"; then
2326     makefile_name="$cached_makefile_name"
2327   fi
2328   # Use libtool if specified either way, or if guessed.
2329   if test -z "$libtool"; then
2330     if test -n "$cached_m4base"; then
2331       libtool="$cached_libtool"
2332     else
2333       libtool="$guessed_libtool"
2334     fi
2335   fi
2336   # The macro_prefix defaults to the cached one.
2337   if test -z "$macro_prefix"; then
2338     macro_prefix="$cached_macro_prefix"
2339     if test -z "$macro_prefix"; then
2340       func_fatal_error "missing --macro-prefix option"
2341     fi
2342   fi
2343   # The po_domain defaults to the cached one.
2344   if test -z "$po_domain"; then
2345     po_domain="$cached_po_domain"
2346   fi
2347   # The vc_files defaults to the cached one.
2348   if test -z "$vc_files"; then
2349     vc_files="$cached_vc_files"
2350   fi
2351
2352   # Canonicalize the list of specified modules.
2353   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
2354
2355   # Determine final module list.
2356   modules="$specified_modules"
2357   func_modules_transitive_closure
2358   if test $verbose -ge 0; then
2359     echo "Module list with included dependencies:"
2360     echo "$modules" | sed -e 's/^/  /'
2361   fi
2362   final_modules="$modules"
2363
2364   # Determine main module list and tests-related module list separately.
2365   # The main module list is the transitive closure of the specified modules,
2366   # ignoring tests modules. Its lib/* sources go into $sourcebase/. If --lgpl
2367   # is specified, it will consist only of LGPLed source.
2368   # The tests-related module list is the transitive closure of the specified
2369   # modules, including tests modules, minus the main module list. Its lib/*
2370   # sources (brought in through dependencies of *-tests modules) go into
2371   # $testsbase/. It may contain GPLed source, even if --lgpl is specified.
2372   # Determine main module list.
2373   saved_inctests="$inctests"
2374   inctests=""
2375   modules="$specified_modules"
2376   func_modules_transitive_closure
2377   main_modules="$modules"
2378   inctests="$saved_inctests"
2379   if test $verbose -ge 1; then
2380     echo "Main module list:"
2381     echo "$main_modules" | sed -e 's/^/  /'
2382   fi
2383   # Determine tests-related module list.
2384   echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules
2385   testsrelated_modules=`echo "$main_modules" | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/final-modules`
2386   if test $verbose -ge 1; then
2387     echo "Tests-related module list:"
2388     echo "$testsrelated_modules" | sed -e 's/^/  /'
2389   fi
2390
2391   # Add the dummy module to the main module list if needed.
2392   modules="$main_modules"
2393   func_modules_add_dummy
2394   main_modules="$modules"
2395
2396   # Determine whether a $testsbase/libtests.a is needed.
2397   use_libtests=false
2398   for module in $testsrelated_modules; do
2399     func_verify_nontests_module
2400     if test -n "$module"; then
2401       all_files=`func_get_filelist $module`
2402       lib_files=`for f in $all_files; do \
2403                    case $f in \
2404                      lib/*) echo $f ;; \
2405                    esac; \
2406                  done | sed -e 's,^lib/,,'`
2407       if test -n "$lib_files"; then
2408         use_libtests=true
2409         break
2410       fi
2411     fi
2412   done
2413
2414   # Add the dummy module to the tests-related module list if needed.
2415   if $use_libtests; then
2416     modules="$testsrelated_modules"
2417     func_modules_add_dummy
2418     testsrelated_modules="$modules"
2419   fi
2420
2421   # If --lgpl, verify that the licenses of modules are compatible.
2422   if test -n "$lgpl"; then
2423     for module in $main_modules; do
2424       license=`func_get_license $module`
2425       case $license in
2426         'GPLed build tool') ;;
2427         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
2428         *)
2429           case "$lgpl" in
2430             yes | 3)
2431               case $license in
2432                 LGPL | LGPLv2+) ;;
2433                 *) func_fatal_error "incompatible license on module $module: $license" ;;
2434               esac
2435               ;;
2436             2)
2437               case $license in
2438                 LGPLv2+) ;;
2439                 *) func_fatal_error "incompatible license on module $module: $license" ;;
2440               esac
2441               ;;
2442             *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2443           esac
2444           ;;
2445       esac
2446     done
2447   fi
2448
2449   # Show banner notice of every module.
2450   modules="$main_modules"
2451   func_modules_notice
2452
2453   # Determine script to apply to imported library files.
2454   sed_transform_lib_file=
2455   for module in $main_modules; do
2456     if test $module = config-h; then
2457       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
2458       sed_transform_lib_file=$sed_transform_lib_file'
2459         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
2460       '
2461       break
2462     fi
2463   done
2464   sed_transform_main_lib_file="$sed_transform_lib_file"
2465   if test -n "$do_copyrights"; then
2466     if test -n "$lgpl"; then
2467       # Update license.
2468       case "$lgpl" in
2469         yes | 3)
2470           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2471             s/GNU General/GNU Lesser General/g
2472           '
2473           ;;
2474         2)
2475           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2476             s/GNU General/GNU Lesser General/g
2477             s/version [23]\([ ,]\)/version 2.1\1/g
2478           '
2479           ;;
2480         *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2481       esac
2482     else
2483       # Update license.
2484       sed_transform_main_lib_file=$sed_transform_main_lib_file'
2485         s/GNU Lesser General/GNU General/g
2486         s/GNU Library General/GNU General/g
2487         s/version \(2\|2\.1\)\([ ,]\)/version 3\2/g
2488       '
2489     fi
2490   fi
2491
2492   # Determine script to apply to library files that go into $testsbase/.
2493   sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
2494   if test -n "$do_copyrights"; then
2495     # Update license.
2496     sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
2497       s/GNU Lesser General/GNU General/g
2498       s/GNU Library General/GNU General/g
2499       s/version \(2\|2\.1\)\([ ,]\)/version 3\2/g
2500     '
2501   fi
2502
2503   # Determine the final file lists.
2504   # They must be computed separately, because files in lib/* go into
2505   # $sourcebase/ if they are in the main file list but into $testsbase/
2506   # if they are in the tests-related file list. Furthermore lib/dummy.c
2507   # can be in both.
2508   # Determine final main file list.
2509   modules="$main_modules"
2510   func_modules_to_filelist
2511   main_files="$files"
2512   # Determine final tests-related file list.
2513   modules="$testsrelated_modules"
2514   func_modules_to_filelist
2515   testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'`
2516   # Merge both file lists.
2517   sed_remove_empty_lines='/^$/d'
2518   files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u`
2519   if test $verbose -ge 0; then
2520     echo "File list:"
2521     sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,'
2522     echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/  /'
2523   fi
2524
2525   test -n "$files" \
2526     || func_fatal_error "refusing to do nothing"
2527
2528   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
2529   new_files="$files m4/gnulib-tool.m4"
2530   old_files="$cached_files"
2531   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
2532     func_append old_files " m4/gnulib-tool.m4"
2533   fi
2534
2535   sed_rewrite_old_files="\
2536     s,^build-aux/,$auxdir/,
2537     s,^doc/,$cached_docbase/,
2538     s,^lib/,$cached_sourcebase/,
2539     s,^m4/,$cached_m4base/,
2540     s,^tests/,$cached_testsbase/,
2541     s,^tests=lib/,$cached_testsbase/,
2542     s,^top/,,"
2543   sed_rewrite_new_files="\
2544     s,^build-aux/,$auxdir/,
2545     s,^doc/,$docbase/,
2546     s,^lib/,$sourcebase/,
2547     s,^m4/,$m4base/,
2548     s,^tests/,$testsbase/,
2549     s,^tests=lib/,$testsbase/,
2550     s,^top/,,"
2551
2552   # Create directories.
2553   { echo "$sourcebase"
2554     echo "$m4base"
2555     if test -n "$pobase"; then
2556       echo "$pobase"
2557     fi
2558     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
2559     if test -n "$docfiles"; then
2560       echo "$docbase"
2561     fi
2562     if test -n "$inctests"; then
2563       echo "$testsbase"
2564     fi
2565     echo "$auxdir"
2566     for f in $files; do echo $f; done \
2567       | sed -e "$sed_rewrite_new_files" \
2568       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
2569       | LC_ALL=C sort -u
2570   } > "$tmp"/dirs
2571   { # Rearrange file descriptors. Needed because "while ... done < ..."
2572     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2573     exec 5<&0 < "$tmp"/dirs
2574     while read d; do
2575       if test ! -d "$destdir/$d"; then
2576         if $doit; then
2577           echo "Creating directory $destdir/$d"
2578           mkdir -p "$destdir/$d" || func_fatal_error "failed"
2579         else
2580           echo "Create directory $destdir/$d"
2581         fi
2582       fi
2583     done
2584     exec 0<&5 5<&-
2585   }
2586
2587   # func_dest_tmpfilename file
2588   # determines the name of a temporary file (file is relative to destdir).
2589   # Sets variable:
2590   #   - tmpfile       absolute filename of the temporary file
2591   func_dest_tmpfilename ()
2592   {
2593     if $doit; then
2594       # Put the new contents of $file in a file in the same directory (needed
2595       # to guarantee that an 'mv' to "$destdir/$file" works).
2596       tmpfile="$destdir/$1.tmp"
2597     else
2598       # Put the new contents of $file in a file in a temporary directory
2599       # (because the directory of "$file" might not exist).
2600       tmpfile="$tmp"/`basename "$1"`.tmp
2601     fi
2602   }
2603
2604   # Copy files or make symbolic links. Remove obsolete files.
2605   added_files=''
2606   removed_files=''
2607   delimiter='   '
2608   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2609   # representing the files according to the last gnulib-tool invocation.
2610   for f in $old_files; do echo $f; done \
2611     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
2612     | LC_ALL=C sort \
2613     > "$tmp"/old-files
2614   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2615   # representing the files after this gnulib-tool invocation.
2616   for f in $new_files; do echo $f; done \
2617     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
2618     | LC_ALL=C sort \
2619     > "$tmp"/new-files
2620   # First the files that are in old-files, but not in new-files:
2621   sed_take_first_column='s,'"$delimiter"'.*,,'
2622   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
2623     # Remove the file. Do nothing if the user already removed it.
2624     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
2625       if $doit; then
2626         echo "Removing file $g (backup in ${g}~)"
2627         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2628       else
2629         echo "Remove file $g (backup in ${g}~)"
2630       fi
2631       func_append removed_files "$g$nl"
2632     fi
2633   done
2634   # func_add_or_update handles a file that ought to be present afterwards.
2635   # Uses parameters
2636   # - f             the original file name
2637   # - g             the rewritten file name
2638   # - already_present  nonempty if the file already exists, empty otherwise
2639   func_add_or_update ()
2640   {
2641     of="$f"
2642     case "$f" in
2643       tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
2644     esac
2645     func_dest_tmpfilename "$g"
2646     func_lookup_file "$f"
2647     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
2648     if test -n "$sed_transform_main_lib_file"; then
2649       case "$of" in
2650         lib/*)
2651           sed -e "$sed_transform_main_lib_file" \
2652             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
2653           ;;
2654       esac
2655     fi
2656     if test -n "$sed_transform_testsrelated_lib_file"; then
2657       case "$of" in
2658         tests=lib/*)
2659           sed -e "$sed_transform_testsrelated_lib_file" \
2660             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
2661           ;;
2662       esac
2663     fi
2664     if test -f "$destdir/$g"; then
2665       # The file already exists.
2666       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
2667         : # The file has not changed.
2668       else
2669         # Replace the file.
2670         if $doit; then
2671           if test -n "$already_present"; then
2672             echo "Updating file $g (backup in ${g}~)"
2673           else
2674             echo "Replacing file $g (non-gnulib code backed up in ${g}~) !!"
2675           fi
2676           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2677           if { test -n "$symbolic" \
2678                || { test -n "$lsymbolic" \
2679                     && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2680              && test -z "$lookedup_tmp" \
2681              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2682             func_ln_if_changed "$lookedup_file" "$destdir/$g"
2683           else
2684             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2685           fi
2686         else
2687           if test -n "$already_present"; then
2688             echo "Update file $g (backup in ${g}~)"
2689           else
2690             echo "Replace file $g (non-gnulib code backed up in ${g}~) !!"
2691           fi
2692         fi
2693       fi
2694     else
2695       # Install the file.
2696       # Don't protest if the file should be there but isn't: it happens
2697       # frequently that developers don't put autogenerated files into CVS.
2698       if $doit; then
2699         echo "Copying file $g"
2700         if { test -n "$symbolic" \
2701              || { test -n "$lsymbolic" \
2702                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2703            && test -z "$lookedup_tmp" \
2704            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2705           func_ln_if_changed "$lookedup_file" "$destdir/$g"
2706         else
2707           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2708         fi
2709       else
2710         echo "Copy file $g"
2711       fi
2712       func_append added_files "$g$nl"
2713     fi
2714     rm -f "$tmpfile"
2715   }
2716   # Then the files that are in new-files, but not in old-files:
2717   sed_take_last_column='s,^.*'"$delimiter"',,'
2718   already_present=
2719   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
2720     | sed -e "$sed_take_last_column" \
2721     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
2722   { # Rearrange file descriptors. Needed because "while ... done < ..."
2723     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2724     exec 5<&0 < "$tmp"/added-files
2725     while read g f; do
2726       func_add_or_update
2727     done
2728     exec 0<&5 5<&-
2729   }
2730   # Then the files that are in new-files and in old-files:
2731   already_present=true
2732   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
2733     | sed -e "$sed_take_last_column" \
2734     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
2735   { # Rearrange file descriptors. Needed because "while ... done < ..."
2736     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2737     exec 5<&0 < "$tmp"/kept-files
2738     while read g f; do
2739       func_add_or_update
2740     done
2741     exec 0<&5 5<&-
2742   }
2743
2744   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
2745   actioncmd="gnulib-tool --import"
2746   func_append actioncmd " --dir=$destdir"
2747   if test -n "$local_gnulib_dir"; then
2748     func_append actioncmd " --local-dir=$local_gnulib_dir"
2749   fi
2750   func_append actioncmd " --lib=$libname"
2751   func_append actioncmd " --source-base=$sourcebase"
2752   func_append actioncmd " --m4-base=$m4base"
2753   if test -n "$pobase"; then
2754     func_append actioncmd " --po-base=$pobase"
2755   fi
2756   func_append actioncmd " --doc-base=$docbase"
2757   func_append actioncmd " --aux-dir=$auxdir"
2758   if test -n "$inctests"; then
2759     func_append actioncmd " --with-tests"
2760   fi
2761   for module in $avoidlist; do
2762     func_append actioncmd " --avoid=$module"
2763   done
2764   if test -n "$lgpl"; then
2765     if test "$lgpl" = yes; then
2766       func_append actioncmd " --lgpl"
2767     else
2768       func_append actioncmd " --lgpl=$lgpl"
2769     fi
2770   fi
2771   if test -n "$makefile_name"; then
2772     func_append actioncmd " --makefile-name=$makefile_name"
2773   fi
2774   if test "$libtool" = true; then
2775     func_append actioncmd " --libtool"
2776   else
2777     func_append actioncmd " --no-libtool"
2778   fi
2779   func_append actioncmd " --macro-prefix=$macro_prefix"
2780   if test -n "$po_domain"; then
2781     func_append actioncmd " --po-domain=$po_domain"
2782   fi
2783   if test -n "$vc_files"; then
2784     if test "$vc_files" = true; then
2785       func_append actioncmd " --vc-files"
2786     else
2787       func_append actioncmd " --no-vc-files"
2788     fi
2789   fi
2790   func_append actioncmd " `echo $specified_modules`"
2791
2792   # Default the makefile name to Makefile.am.
2793   if test -n "$makefile_name"; then
2794     makefile_am=$makefile_name
2795   else
2796     makefile_am=Makefile.am
2797   fi
2798
2799   # Create normal Makefile.ams.
2800   for_test=false
2801
2802   # Create library makefile.
2803   func_dest_tmpfilename $sourcebase/$makefile_am
2804   modules="$main_modules"
2805   func_emit_lib_Makefile_am > "$tmpfile"
2806   if test -f "$destdir"/$sourcebase/$makefile_am; then
2807     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
2808       rm -f "$tmpfile"
2809     else
2810       if $doit; then
2811         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2812         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
2813         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2814       else
2815         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2816         rm -f "$tmpfile"
2817       fi
2818     fi
2819   else
2820     if $doit; then
2821       echo "Creating $sourcebase/$makefile_am"
2822       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2823     else
2824       echo "Create $sourcebase/$makefile_am"
2825       rm -f "$tmpfile"
2826     fi
2827     func_append added_files "$sourcebase/$makefile_am$nl"
2828   fi
2829
2830   # Create po/ directory.
2831   if test -n "$pobase"; then
2832     # Create po makefile and auxiliary files.
2833     for file in Makefile.in.in remove-potcdate.sin; do
2834       func_dest_tmpfilename $pobase/$file
2835       func_lookup_file build-aux/po/$file
2836       cat "$lookedup_file" > "$tmpfile"
2837       if test -f "$destdir"/$pobase/$file; then
2838         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
2839           rm -f "$tmpfile"
2840         else
2841           if $doit; then
2842             echo "Updating $pobase/$file (backup in $pobase/$file~)"
2843             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
2844             mv -f "$tmpfile" "$destdir"/$pobase/$file
2845           else
2846             echo "Update $pobase/$file (backup in $pobase/$file~)"
2847             rm -f "$tmpfile"
2848           fi
2849         fi
2850       else
2851         if $doit; then
2852           echo "Creating $pobase/$file"
2853           mv -f "$tmpfile" "$destdir"/$pobase/$file
2854         else
2855           echo "Create $pobase/$file"
2856           rm -f "$tmpfile"
2857         fi
2858         func_append added_files "$pobase/$file$nl"
2859       fi
2860     done
2861     # Create po makefile parametrization, part 1.
2862     func_dest_tmpfilename $pobase/Makevars
2863     func_emit_po_Makevars > "$tmpfile"
2864     if test -f "$destdir"/$pobase/Makevars; then
2865       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
2866         rm -f "$tmpfile"
2867       else
2868         if $doit; then
2869           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
2870           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
2871           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2872         else
2873           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
2874           rm -f "$tmpfile"
2875         fi
2876       fi
2877     else
2878       if $doit; then
2879         echo "Creating $pobase/Makevars"
2880         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2881       else
2882         echo "Create $pobase/Makevars"
2883         rm -f "$tmpfile"
2884       fi
2885       func_append added_files "$pobase/Makevars$nl"
2886     fi
2887     # Create po makefile parametrization, part 2.
2888     func_dest_tmpfilename $pobase/POTFILES.in
2889     func_emit_po_POTFILES_in > "$tmpfile"
2890     if test -f "$destdir"/$pobase/POTFILES.in; then
2891       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
2892         rm -f "$tmpfile"
2893       else
2894         if $doit; then
2895           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2896           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
2897           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2898         else
2899           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2900           rm -f "$tmpfile"
2901         fi
2902       fi
2903     else
2904       if $doit; then
2905         echo "Creating $pobase/POTFILES.in"
2906         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2907       else
2908         echo "Create $pobase/POTFILES.in"
2909         rm -f "$tmpfile"
2910       fi
2911       func_append added_files "$pobase/POTFILES.in$nl"
2912     fi
2913     # Fetch PO files.
2914     TP_URL="http://translationproject.org/latest/"
2915     TP_RSYNC_URI="translationproject.org::tp/latest/"
2916     if $doit; then
2917       echo "Fetching gnulib PO files from $TP_URL"
2918       (cd "$destdir"/$pobase \
2919        && { # Prefer rsync over wget if it is available, since it consumes
2920             # less network bandwidth, due to compression.
2921             if type rsync 2>/dev/null | grep / > /dev/null; then
2922               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
2923             else
2924               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
2925             fi
2926           }
2927       )
2928     else
2929       echo "Fetch gnulib PO files from $TP_URL"
2930     fi
2931     # Create po/LINGUAS.
2932     if $doit; then
2933       func_dest_tmpfilename $pobase/LINGUAS
2934       (cd "$destdir"/$pobase \
2935        && { echo '# Set of available languages.'
2936             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
2937           }
2938       ) > "$tmpfile"
2939       if test -f "$destdir"/$pobase/LINGUAS; then
2940         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
2941           rm -f "$tmpfile"
2942         else
2943           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2944           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
2945           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2946         fi
2947       else
2948         echo "Creating $pobase/LINGUAS"
2949         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2950         func_append added_files "$pobase/LINGUAS$nl"
2951       fi
2952     else
2953       if test -f "$destdir"/$pobase/LINGUAS; then
2954         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2955       else
2956         echo "Create $pobase/LINGUAS"
2957       fi
2958     fi
2959   fi
2960
2961   # Create m4/gnulib-cache.m4.
2962   func_dest_tmpfilename $m4base/gnulib-cache.m4
2963   (
2964     func_emit_copyright_notice
2965     echo "#"
2966     echo "# This file represents the specification of how gnulib-tool is used."
2967     echo "# It acts as a cache: It is written and read by gnulib-tool."
2968     echo "# In projects using CVS, this file is meant to be stored in CVS,"
2969     echo "# like the configure.ac and various Makefile.am files."
2970     echo
2971     echo
2972     echo "# Specification in the form of a command-line invocation:"
2973     echo "#   $actioncmd"
2974     echo
2975     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
2976     # Store the local_gnulib_dir relative to destdir.
2977     case "$local_gnulib_dir" in
2978       "" | /*)
2979         relative_local_gnulib_dir="$local_gnulib_dir" ;;
2980       * )
2981         case "$destdir" in
2982           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
2983           *)
2984             # destdir, local_gnulib_dir are both relative.
2985             func_relativize "$destdir" "$local_gnulib_dir"
2986             relative_local_gnulib_dir="$reldir" ;;
2987         esac ;;
2988     esac
2989     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
2990     echo "gl_MODULES(["`echo $specified_modules`"])"
2991     echo "gl_AVOID([$avoidlist])"
2992     echo "gl_SOURCE_BASE([$sourcebase])"
2993     echo "gl_M4_BASE([$m4base])"
2994     echo "gl_PO_BASE([$pobase])"
2995     echo "gl_DOC_BASE([$docbase])"
2996     echo "gl_TESTS_BASE([$testsbase])"
2997     test -z "$inctests" || echo "gl_WITH_TESTS"
2998     echo "gl_LIB([$libname])"
2999     if test -n "$lgpl"; then
3000       if test "$lgpl" = yes; then
3001         echo "gl_LGPL"
3002       else
3003         echo "gl_LGPL([$lgpl])"
3004       fi
3005     fi
3006     echo "gl_MAKEFILE_NAME([$makefile_name])"
3007     if test "$libtool" = true; then
3008       echo "gl_LIBTOOL"
3009     fi
3010     echo "gl_MACRO_PREFIX([$macro_prefix])"
3011     echo "gl_PO_DOMAIN([$po_domain])"
3012     if test -n "$vc_files"; then
3013       echo "gl_VC_FILES([$vc_files])"
3014     fi
3015   ) > "$tmpfile"
3016   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
3017     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
3018       rm -f "$tmpfile"
3019     else
3020       if $doit; then
3021         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3022         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
3023         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3024       else
3025         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3026         if false; then
3027           cat "$tmpfile"
3028           echo
3029           echo "# gnulib-cache.m4 ends here"
3030         fi
3031         rm -f "$tmpfile"
3032       fi
3033     fi
3034   else
3035     if $doit; then
3036       echo "Creating $m4base/gnulib-cache.m4"
3037       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3038     else
3039       echo "Create $m4base/gnulib-cache.m4"
3040       cat "$tmpfile"
3041       rm -f "$tmpfile"
3042     fi
3043   fi
3044
3045   # Create m4/gnulib-comp.m4.
3046   func_dest_tmpfilename $m4base/gnulib-comp.m4
3047   (
3048     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
3049     func_emit_copyright_notice
3050     echo "#"
3051     echo "# This file represents the compiled summary of the specification in"
3052     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
3053     echo "# to be invoked from configure.ac."
3054     echo "# In projects using CVS, this file can be treated like other built files."
3055     echo
3056     echo
3057     echo "# This macro should be invoked from $configure_ac, in the section"
3058     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
3059     echo "# any checks for libraries, header files, types and library functions."
3060     echo "AC_DEFUN([${macro_prefix}_EARLY],"
3061     echo "["
3062     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3063     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3064     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3065     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3066     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
3067     if test -n "$uses_subdirs"; then
3068       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
3069     fi
3070     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
3071       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
3072     fi
3073     for module in $final_modules; do
3074       func_verify_module
3075       if test -n "$module"; then
3076         func_get_autoconf_early_snippet "$module"
3077       fi
3078     done \
3079       | sed -e '/^$/d;' -e 's/^/  /'
3080     echo "])"
3081     echo
3082     echo "# This macro should be invoked from $configure_ac, in the section"
3083     echo "# \"Check for header files, types and library functions\"."
3084     echo "AC_DEFUN([${macro_prefix}_INIT],"
3085     echo "["
3086     if test "$libtool" = true; then
3087       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3088       echo "  gl_cond_libtool=true"
3089     else
3090       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3091       echo "  gl_cond_libtool=false"
3092       echo "  gl_libdeps="
3093       echo "  gl_ltlibdeps="
3094     fi
3095     if test "$auxdir" != "build-aux"; then
3096       sed_replace_build_aux='
3097         :a
3098         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3099           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3100           ba
3101         }'
3102     else
3103       sed_replace_build_aux=
3104     fi
3105     func_emit_initmacro_start $macro_prefix
3106     echo "  gl_source_base='$sourcebase'"
3107     for module in $main_modules; do
3108       func_verify_module
3109       if test -n "$module"; then
3110         func_get_autoconf_snippet "$module" \
3111           | sed -e '/^$/d;' -e 's/^/  /' \
3112                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3113                 -e "$sed_replace_build_aux"
3114         if test "$module" = 'alloca' && test "$libtool" = true; then
3115           echo 'changequote(,)dnl'
3116           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
3117           echo 'changequote([, ])dnl'
3118           echo 'AC_SUBST([LTALLOCA])'
3119         fi
3120       fi
3121     done
3122     func_emit_initmacro_end $macro_prefix
3123     echo "  gltests_libdeps="
3124     echo "  gltests_ltlibdeps="
3125     func_emit_initmacro_start ${macro_prefix}tests
3126     echo "  gl_source_base='$testsbase'"
3127     for module in $testsrelated_modules; do
3128       func_verify_module
3129       if test -n "$module"; then
3130         func_get_autoconf_snippet "$module" \
3131           | sed -e '/^$/d;' -e 's/^/  /' \
3132                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3133                 -e "$sed_replace_build_aux" \
3134                 -e 's/\$gl_cond_libtool/false/g' \
3135                 -e 's/gl_libdeps/gltests_libdeps/g' \
3136                 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
3137       fi
3138     done
3139     func_emit_initmacro_end ${macro_prefix}tests
3140     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3141     # created using libtool, because libtool already handles the dependencies.
3142     if test "$libtool" != true; then
3143       libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3144       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3145       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3146       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3147       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3148     fi
3149     if $use_libtests; then
3150       echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
3151       echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
3152     fi
3153     echo "])"
3154     func_emit_initmacro_done $macro_prefix $sourcebase
3155     func_emit_initmacro_done ${macro_prefix}tests $testsbase
3156     echo
3157     echo "# This macro records the list of files which have been installed by"
3158     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
3159     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
3160     echo "$files" | sed -e 's,^,  ,'
3161     echo "])"
3162   ) > "$tmpfile"
3163   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
3164     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
3165       rm -f "$tmpfile"
3166     else
3167       if $doit; then
3168         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3169         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
3170         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3171       else
3172         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3173         if false; then
3174           cat "$tmpfile"
3175           echo
3176           echo "# gnulib-comp.m4 ends here"
3177         fi
3178         rm -f "$tmpfile"
3179       fi
3180     fi
3181   else
3182     if $doit; then
3183       echo "Creating $m4base/gnulib-comp.m4"
3184       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3185     else
3186       echo "Create $m4base/gnulib-comp.m4"
3187       cat "$tmpfile"
3188       rm -f "$tmpfile"
3189     fi
3190   fi
3191
3192   if test -n "$inctests"; then
3193     # Create tests makefile.
3194     func_dest_tmpfilename $testsbase/$makefile_am
3195     modules="$testsrelated_modules"
3196     func_emit_tests_Makefile_am > "$tmpfile"
3197     if test -f "$destdir"/$testsbase/$makefile_am; then
3198       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
3199         rm -f "$tmpfile"
3200       else
3201         if $doit; then
3202           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3203           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
3204           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3205         else
3206           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3207           rm -f "$tmpfile"
3208         fi
3209       fi
3210     else
3211       if $doit; then
3212         echo "Creating $testsbase/$makefile_am"
3213         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3214       else
3215         echo "Create $testsbase/$makefile_am"
3216         rm -f "$tmpfile"
3217       fi
3218     func_append added_files "$testsbase/$makefile_am$nl"
3219     fi
3220   fi
3221
3222   if test "$vc_files" != false; then
3223     # Update the .cvsignore and .gitignore files.
3224     { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
3225       echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
3226     } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
3227     { # Rearrange file descriptors. Needed because "while ... done < ..."
3228       # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3229       exec 5<&0 < "$tmp"/fileset-changes
3230       func_update_ignorelist ()
3231       {
3232         ignore="$1"
3233         if test -f "$destdir/$dir$ignore"; then
3234           if test -n "$dir_added" || test -n "$dir_removed"; then
3235             LC_ALL=C sort "$destdir/$dir$ignore" > "$tmp"/ignore
3236             echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
3237               | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-added
3238             echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
3239               | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-removed
3240             if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
3241               if $doit; then
3242                 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3243                 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
3244                 sed -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed > "$tmp"/sed-ignore-removed
3245                 cat "$destdir/$dir$ignore"~ "$tmp"/ignore-added \
3246                   | sed -f "$tmp"/sed-ignore-removed \
3247                   > "$destdir/$dir$ignore"
3248               else
3249                 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3250               fi
3251             fi
3252           fi
3253         else
3254           if test -n "$dir_added"; then
3255             if $doit; then
3256               echo "Creating $destdir/$dir$ignore"
3257               {
3258                 if test "$ignore" = .cvsignore; then
3259                   echo ".deps"
3260                   # Automake generates Makefile rules that create .dirstamp files.
3261                   echo ".dirstamp"
3262                 fi
3263                 echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u
3264               } > "$destdir/$dir$ignore"
3265             else
3266               echo "Create $destdir/$dir$ignore"
3267             fi
3268           fi
3269         fi
3270       }
3271       func_done_dir ()
3272       {
3273         dir="$1"
3274         dir_added="$2"
3275         dir_removed="$3"
3276         if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
3277           func_update_ignorelist .cvsignore
3278         fi
3279         if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
3280           func_update_ignorelist .gitignore
3281         fi
3282       }
3283       last_dir=
3284       last_dir_added=
3285       last_dir_removed=
3286       while read line; do
3287         # Why not ''read next_dir op file'' ? Because the dir column can be empty.
3288         next_dir=`echo "$line" | sed -e 's,|.*,,'`
3289         op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
3290         file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
3291         if test "$next_dir" != "$last_dir"; then
3292           func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3293           last_dir="$next_dir"
3294           last_dir_added=
3295           last_dir_removed=
3296         fi
3297         case $op in
3298           A) func_append last_dir_added "$file$nl";;
3299           R) func_append last_dir_removed "$file$nl";;
3300         esac
3301       done
3302       func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3303       exec 0<&5 5<&-
3304     }
3305   fi
3306
3307   echo "Finished."
3308   echo
3309   echo "You may need to add #include directives for the following .h files."
3310   # Intersect $specified_modules and $main_modules
3311   # (since $specified_modules is not necessarily of subset of $main_modules
3312   # - some may have been skipped through --avoid, and since the elements of
3313   # $main_modules but not in $specified_modules can go away without explicit
3314   # notice - through changes in the module dependencies).
3315   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
3316   echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
3317   # First the #include <...> directives without #ifs, sorted for convenience,
3318   # then the #include "..." directives without #ifs, sorted for convenience,
3319   # then the #include directives that are surrounded by #ifs. Not sorted.
3320   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
3321     include_directive=`func_get_include_directive "$module"`
3322     case "$nl$include_directive" in
3323       *"$nl#if"*)
3324         echo "$include_directive" 1>&5
3325         ;;
3326       *)
3327         echo "$include_directive" | grep -v 'include "' 1>&6
3328         echo "$include_directive" | grep 'include "' 1>&7
3329         ;;
3330     esac
3331   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
3332   (
3333    LC_ALL=C sort -u "$tmp"/include-angles
3334    LC_ALL=C sort -u "$tmp"/include-quotes
3335    cat "$tmp"/include-if
3336   ) | sed -e '/^$/d' -e 's/^/  /'
3337   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
3338
3339   for module in $main_modules; do
3340     func_get_link_directive "$module"
3341   done \
3342     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
3343   if test `wc -l < "$tmp"/link` != 0; then
3344     echo
3345     echo "You may need to use the following Makefile variables when linking."
3346     echo "Use them in <program>_LDADD when linking a program, or"
3347     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
3348     cat "$tmp"/link
3349   fi
3350   rm -f "$tmp"/link
3351
3352   echo
3353   echo "Don't forget to"
3354   if test "$makefile_am" = Makefile.am; then
3355     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3356   else
3357     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
3358   fi
3359   if test -n "$pobase"; then
3360     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
3361   fi
3362   if test -n "$inctests"; then
3363     if test "$makefile_am" = Makefile.am; then
3364       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3365     else
3366       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
3367     fi
3368   fi
3369   if test "$makefile_am" = Makefile.am; then
3370     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
3371     sourcebase_base=`basename "$sourcebase"`
3372     echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
3373   fi
3374   if test -n "$pobase"; then
3375     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
3376     pobase_base=`basename "$pobase"`
3377     echo "  - mention \"${pobase_base}\" in SUBDIRS in ${pobase_dir}Makefile.am,"
3378   fi
3379   if test -n "$inctests"; then
3380     if test "$makefile_am" = Makefile.am; then
3381       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
3382       testsbase_base=`basename "$testsbase"`
3383       echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
3384     fi
3385   fi
3386   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
3387   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
3388   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
3389 }
3390
3391 # func_create_testdir testdir modules
3392 # Input:
3393 # - local_gnulib_dir  from --local-dir
3394 # - auxdir          directory relative to destdir where to place build aux files
3395 func_create_testdir ()
3396 {
3397   testdir="$1"
3398   modules="$2"
3399   if test -z "$modules"; then
3400     # All modules together.
3401     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3402     # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3403     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
3404     modules=`func_all_modules`
3405     modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done`
3406   fi
3407   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
3408
3409   # Check that the license of every module is consistent with the license of
3410   # its dependencies.
3411   saved_modules="$modules"
3412   saved_inctests="$inctests"
3413   # When computing transitive closures, don't consider $module to depend on
3414   # $module-tests. Need this becauses tests are implicitly GPL and may depend
3415   # on GPL modules - therefore we don't want a warning in this case.
3416   inctests=""
3417   for requested_module in $saved_modules; do
3418     requested_license=`func_get_license "$requested_module"`
3419     if test "$requested_license" != GPL; then
3420       # Here we use func_modules_transitive_closure, not just
3421       # func_get_dependencies, so that we also detect weird situations like
3422       # an LGPL module which depends on a GPLed build tool module which depends
3423       # on a GPL module.
3424       modules="$requested_module"
3425       func_modules_transitive_closure
3426       for module in $modules; do
3427         license=`func_get_license "$module"`
3428         case "$license" in
3429           'GPLed build tool') ;;
3430           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
3431           *)
3432             case "$requested_license" in
3433               GPLv2+)
3434                 case "$license" in
3435                   GPLv2+ | LGPLv2+) ;;
3436                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3437                 esac
3438                 ;;
3439               LGPL)
3440                 case "$license" in
3441                   LGPL | LGPLv2+) ;;
3442                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3443                 esac
3444                 ;;
3445               LGPLv2+)
3446                 case "$license" in
3447                   LGPLv2+) ;;
3448                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3449                 esac
3450                 ;;
3451             esac
3452             ;;
3453         esac
3454       done
3455     fi
3456   done
3457   modules="$saved_modules"
3458   inctests="$saved_inctests"
3459
3460   # Subdirectory names.
3461   sourcebase=gllib
3462   m4base=glm4
3463   pobase=
3464   docbase=gldoc
3465   testsbase=gltests
3466   macro_prefix=gl
3467   po_domain=
3468   vc_files=
3469
3470   # Determine final module list.
3471   func_modules_transitive_closure
3472   if test $verbose -ge 0; then
3473     echo "Module list with included dependencies:"
3474     echo "$modules" | sed -e 's/^/  /'
3475   fi
3476
3477   # Add the dummy module if needed.
3478   func_modules_add_dummy
3479
3480   # Show banner notice of every module.
3481   func_modules_notice
3482
3483   # Determine final file list.
3484   func_modules_to_filelist
3485   if test $verbose -ge 0; then
3486     echo "File list:"
3487     echo "$files" | sed -e 's/^/  /'
3488   fi
3489
3490   sed_rewrite_files="\
3491     s,^build-aux/,$auxdir/,
3492     s,^doc/,$docbase/,
3493     s,^lib/,$sourcebase/,
3494     s,^m4/,$m4base/,
3495     s,^tests/,$testsbase/,
3496     s,^top/,,"
3497
3498   # Create directories.
3499   for f in $files; do echo $f; done \
3500     | sed -e "$sed_rewrite_files" \
3501     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
3502     | LC_ALL=C sort -u \
3503     > "$tmp"/dirs
3504   { # Rearrange file descriptors. Needed because "while ... done < ..."
3505     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3506     exec 5<&0 < "$tmp"/dirs
3507     while read d; do
3508       mkdir -p "$testdir/$d"
3509     done
3510     exec 0<&5 5<&-
3511   }
3512
3513   # Copy files or make symbolic links.
3514   delimiter='   '
3515   for f in $files; do echo $f; done \
3516     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
3517     | LC_ALL=C sort \
3518     > "$tmp"/files
3519   { # Rearrange file descriptors. Needed because "while ... done < ..."
3520     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3521     exec 5<&0 < "$tmp"/files
3522     while read g f; do
3523       func_lookup_file "$f"
3524       if test -n "$lookedup_tmp"; then
3525         cp -p "$lookedup_file" "$testdir/$g"
3526       else
3527         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
3528         if { test -n "$symbolic" \
3529              || { test -n "$lsymbolic" \
3530                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
3531           func_ln "$lookedup_file" "$testdir/$g"
3532         else
3533           cp -p "$lookedup_file" "$testdir/$g"
3534         fi
3535       fi
3536     done
3537     exec 0<&5 5<&-
3538   }
3539
3540   # Create Makefile.ams that are for testing.
3541   for_test=true
3542
3543   # Create $sourcebase/Makefile.am.
3544   mkdir -p "$testdir/$sourcebase"
3545   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
3546   any_uses_subdirs="$uses_subdirs"
3547
3548   # Create $m4base/Makefile.am.
3549   mkdir -p "$testdir/$m4base"
3550   (echo "## Process this file with automake to produce Makefile.in."
3551    echo
3552    echo "EXTRA_DIST ="
3553    for f in $files; do
3554      case "$f" in
3555        m4/* )
3556          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
3557      esac
3558    done
3559   ) > "$testdir/$m4base/Makefile.am"
3560
3561   subdirs="$sourcebase $m4base"
3562   subdirs_with_configure_ac=""
3563
3564   if false && test -f "$testdir"/$m4base/gettext.m4; then
3565     # Avoid stupid error message from automake:
3566     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
3567     mkdir -p "$testdir/po"
3568     (echo "## Process this file with automake to produce Makefile.in."
3569     ) > "$testdir/po/Makefile.am"
3570     func_append subdirs " po"
3571   fi
3572
3573   if test -n "$inctests"; then
3574     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
3575     # Viewed from the $testsbase subdirectory, $auxdir is different.
3576     saved_auxdir="$auxdir"
3577     auxdir=`echo "$testsbase/"|sed 's%[^/][^/]*//*%../%g'`"$auxdir"
3578     # Create $testsbase/Makefile.am.
3579     use_libtests=false
3580     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
3581     any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
3582     # Create $testsbase/configure.ac.
3583     (echo "# Process this file with autoconf to produce a configure script."
3584      echo "AC_INIT([dummy], [0])"
3585      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3586      echo "AM_INIT_AUTOMAKE"
3587      echo
3588      echo "AM_CONFIG_HEADER([config.h])"
3589      echo
3590      echo "AC_PROG_CC"
3591      echo "AC_PROG_INSTALL"
3592      echo "AC_PROG_MAKE_SET"
3593      echo "AC_PROG_RANLIB"
3594      echo
3595      if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3596        echo "AC_GNU_SOURCE"
3597        echo
3598      fi
3599      for module in $modules; do
3600        func_verify_module
3601        if test -n "$module"; then
3602          func_get_autoconf_early_snippet "$module"
3603        fi
3604      done \
3605        | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3606      if test "$libtool" = true; then
3607        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3608        echo "gl_cond_libtool=true"
3609      else
3610        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3611        echo "gl_cond_libtool=false"
3612        echo "gl_libdeps="
3613        echo "gl_ltlibdeps="
3614      fi
3615      # Wrap the set of autoconf snippets into an autoconf macro that is then
3616      # invoked. This is needed because autoconf does not support AC_REQUIRE
3617      # at the top level:
3618      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3619      # but we want the AC_REQUIRE to have its normal meaning (provide one
3620      # expansion of the required macro before the current point, and only one
3621      # expansion total).
3622      echo "AC_DEFUN([gl_INIT], ["
3623      sed_replace_build_aux='
3624        :a
3625        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3626          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3627          ba
3628        }'
3629      func_emit_initmacro_start $macro_prefix
3630      # We don't have explicit ordering constraints between the various
3631      # autoconf snippets. It's cleanest to put those of the library before
3632      # those of the tests.
3633      echo "gl_source_base='../$sourcebase'"
3634      for module in $modules; do
3635        func_verify_nontests_module
3636        if test -n "$module"; then
3637          func_get_autoconf_snippet "$module" \
3638            | sed -e "$sed_replace_build_aux"
3639        fi
3640      done
3641      echo "gl_source_base='.'"
3642      for module in $modules; do
3643        func_verify_tests_module
3644        if test -n "$module"; then
3645          func_get_autoconf_snippet "$module" \
3646            | sed -e "$sed_replace_build_aux"
3647        fi
3648      done
3649      func_emit_initmacro_end $macro_prefix
3650      # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3651      # created using libtool, because libtool already handles the dependencies.
3652      if test "$libtool" != true; then
3653        libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3654        echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3655        echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3656        echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3657        echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3658      fi
3659      echo "])"
3660      func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
3661      echo
3662      echo "gl_INIT"
3663      echo
3664      # Usually $testsbase/config.h will be a superset of config.h. Verify this
3665      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
3666      echo "AH_TOP([#include \"../config.h\"])"
3667      echo
3668      echo "AC_OUTPUT([Makefile])"
3669     ) > "$testdir/$testsbase/configure.ac"
3670     auxdir="$saved_auxdir"
3671     func_append subdirs " $testsbase"
3672     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
3673   fi
3674
3675   # Create Makefile.am.
3676   (echo "## Process this file with automake to produce Makefile.in."
3677    echo
3678    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3679    echo
3680    echo "SUBDIRS = $subdirs"
3681    echo
3682    echo "ACLOCAL_AMFLAGS = -I $m4base"
3683   ) > "$testdir/Makefile.am"
3684
3685   # Create configure.ac.
3686   (echo "# Process this file with autoconf to produce a configure script."
3687    echo "AC_INIT([dummy], [0])"
3688    if test "$auxdir" != "."; then
3689      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3690    fi
3691    echo "AM_INIT_AUTOMAKE"
3692    echo
3693    echo "AM_CONFIG_HEADER([config.h])"
3694    echo
3695    echo "AC_PROG_CC"
3696    echo "AC_PROG_INSTALL"
3697    echo "AC_PROG_MAKE_SET"
3698    echo
3699    echo "# For autobuild."
3700    echo "AC_CANONICAL_BUILD"
3701    echo "AC_CANONICAL_HOST"
3702    echo
3703    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3704    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3705    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3706    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3707    echo
3708    echo "AC_PROG_RANLIB"
3709    echo
3710    if test -n "$any_uses_subdirs"; then
3711      echo "AM_PROG_CC_C_O"
3712      echo
3713    fi
3714    if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3715      echo "AC_GNU_SOURCE"
3716      echo
3717    fi
3718    for module in $modules; do
3719      func_verify_nontests_module
3720      if test -n "$module"; then
3721        func_get_autoconf_early_snippet "$module"
3722      fi
3723    done \
3724      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3725    if test "$libtool" = true; then
3726      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3727      echo "gl_cond_libtool=true"
3728    else
3729      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3730      echo "gl_cond_libtool=false"
3731      echo "gl_libdeps="
3732      echo "gl_ltlibdeps="
3733    fi
3734    # Wrap the set of autoconf snippets into an autoconf macro that is then
3735    # invoked. This is needed because autoconf does not support AC_REQUIRE
3736    # at the top level:
3737    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3738    # but we want the AC_REQUIRE to have its normal meaning (provide one
3739    # expansion of the required macro before the current point, and only one
3740    # expansion total).
3741    echo "AC_DEFUN([gl_INIT], ["
3742    if test "$auxdir" != "build-aux"; then
3743      sed_replace_build_aux='
3744        :a
3745        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3746          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3747          ba
3748        }'
3749    else
3750      sed_replace_build_aux=
3751    fi
3752    func_emit_initmacro_start $macro_prefix
3753    echo "gl_source_base='$sourcebase'"
3754    for module in $modules; do
3755      func_verify_nontests_module
3756      if test -n "$module"; then
3757        func_get_autoconf_snippet "$module" \
3758          | sed -e "$sed_replace_build_aux"
3759      fi
3760    done
3761    func_emit_initmacro_end $macro_prefix
3762    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3763    # created using libtool, because libtool already handles the dependencies.
3764    if test "$libtool" != true; then
3765      libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3766      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3767      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3768      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3769      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3770    fi
3771    echo "])"
3772    func_emit_initmacro_done $macro_prefix $sourcebase
3773    echo
3774    echo "gl_INIT"
3775    echo
3776    if test -n "$subdirs_with_configure_ac"; then
3777      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
3778    fi
3779    makefiles="Makefile"
3780    for d in $subdirs; do
3781      # For subdirs that have a configure.ac by their own, it's the subdir's
3782      # configure.ac which creates the subdir's Makefile.am, not this one.
3783      case " $subdirs_with_configure_ac " in
3784        *" $d "*) ;;
3785        *) func_append makefiles " $d/Makefile" ;;
3786      esac
3787    done
3788    echo "AC_OUTPUT([$makefiles])"
3789   ) > "$testdir/configure.ac"
3790
3791   # Create autogenerated files.
3792   (cd "$testdir"
3793    # Do not use "${AUTORECONF} --force --install", because it may invoke
3794    # autopoint, which brings in older versions of some of our .m4 files.
3795    if test -f $m4base/gettext.m4; then
3796      func_execute_command ${AUTOPOINT} --force || func_exit 1
3797      for f in $m4base/*.m4~; do
3798        mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3799      done
3800    fi
3801    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
3802    if ! test -d build-aux; then
3803      func_execute_command mkdir build-aux || func_exit 1
3804    fi
3805    func_execute_command ${AUTOCONF} || func_exit 1
3806    func_execute_command ${AUTOHEADER} || func_exit 1
3807    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3808   ) || func_exit 1
3809   if test -n "$inctests"; then
3810     # Create autogenerated files.
3811     (cd "$testdir/$testsbase" || func_exit 1
3812      # Do not use "${AUTORECONF} --force --install", because it may invoke
3813      # autopoint, which brings in older versions of some of our .m4 files.
3814      if test -f ../$m4base/gettext.m4; then
3815        func_execute_command ${AUTOPOINT} --force || func_exit 1
3816        for f in ../$m4base/*.m4~; do
3817          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3818        done
3819      fi
3820      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
3821      if ! test -d ../build-aux; then
3822        func_execute_command mkdir ../build-aux
3823      fi
3824      func_execute_command ${AUTOCONF} || func_exit 1
3825      func_execute_command ${AUTOHEADER} || func_exit 1
3826      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3827     ) || func_exit 1
3828   fi
3829   # Need to run configure and make once, to create built files that are to be
3830   # distributed (such as getdate.c).
3831   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
3832   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3833                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
3834   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
3835   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
3836   # such $(FOO_H) because they don't refer to distributed files.
3837   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
3838   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3839                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
3840                  | sed -e "$sed_remove_make_variables"`
3841   distributed_built_sources=`for file in $built_sources; do
3842                                case "$cleaned_files" in
3843                                  *" "$file" "*) ;;
3844                                  *) echo $file ;;
3845                                esac;
3846                              done`
3847   if test -n "$distributed_built_sources"; then
3848     (cd "$testdir"
3849      ./configure || func_exit 1
3850        cd "$sourcebase"
3851        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
3852        make built_sources || func_exit 1
3853        cd ..
3854      make distclean || func_exit 1
3855     ) || func_exit 1
3856   fi
3857 }
3858
3859 # func_create_megatestdir megatestdir allmodules
3860 # Input:
3861 # - local_gnulib_dir  from --local-dir
3862 # - auxdir          directory relative to destdir where to place build aux files
3863 func_create_megatestdir ()
3864 {
3865   megatestdir="$1"
3866   allmodules="$2"
3867   if test -z "$allmodules"; then
3868     allmodules=`func_all_modules`
3869   fi
3870
3871   megasubdirs=
3872   # First, all modules one by one.
3873   for onemodule in $allmodules; do
3874     func_create_testdir "$megatestdir/$onemodule" $onemodule
3875     func_append megasubdirs "$onemodule "
3876   done
3877   # Then, all modules all together.
3878   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3879   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3880   allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
3881   func_create_testdir "$megatestdir/ALL" "$allmodules"
3882   func_append megasubdirs "ALL"
3883
3884   # Create autobuild.
3885   cvsdate=`if test -f "$gnulib_dir/CVS/Entries"; then \
3886              vc_witness="$gnulib_dir/CVS/Entries"; \
3887            else \
3888              vc_witness="$gnulib_dir/.git/refs/heads/master"; \
3889            fi; \
3890            sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
3891              | sed -e 's,January,01,'   -e 's,Jan,01,' \
3892                    -e 's,February,02,'  -e 's,Feb,02,' \
3893                    -e 's,March,03,'     -e 's,Mar,03,' \
3894                    -e 's,April,04,'     -e 's,Apr,04,' \
3895                    -e 's,May,05,'                      \
3896                    -e 's,June,06,'      -e 's,Jun,06,' \
3897                    -e 's,July,07,'      -e 's,Jul,07,' \
3898                    -e 's,August,08,'    -e 's,Aug,08,' \
3899                    -e 's,September,09,' -e 's,Sep,09,' \
3900                    -e 's,October,10,'   -e 's,Oct,10,' \
3901                    -e 's,November,11,'  -e 's,Nov,11,' \
3902                    -e 's,December,12,'  -e 's,Dec,12,' \
3903                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
3904                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
3905   (echo '#!/bin/sh'
3906    echo "CVSDATE=$cvsdate"
3907    echo "test -d logs || mkdir logs"
3908    echo "for module in $megasubdirs; do"
3909    echo "  echo \"Working on module \$module...\""
3910    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
3911    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
3912    echo "   echo"
3913    echo "   set -x"
3914    echo "   : autobuild project... \$module"
3915    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
3916    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
3917    echo "   : autobuild hostname... \`hostname\`"
3918    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && make && make check && make distclean"
3919    echo "   echo rc=\$?"
3920    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
3921    echo "done"
3922   ) > "$megatestdir/do-autobuild"
3923   chmod a+x "$megatestdir/do-autobuild"
3924
3925   # Create Makefile.am.
3926   (echo "## Process this file with automake to produce Makefile.in."
3927    echo
3928    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3929    echo
3930    echo "SUBDIRS = $megasubdirs"
3931    echo
3932    echo "EXTRA_DIST = do-autobuild"
3933   ) > "$megatestdir/Makefile.am"
3934
3935   # Create configure.ac.
3936   (echo "# Process this file with autoconf to produce a configure script."
3937    echo "AC_INIT([dummy], [0])"
3938    if test "$auxdir" != "."; then
3939      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3940    fi
3941    echo "AM_INIT_AUTOMAKE"
3942    echo
3943    echo "AC_PROG_MAKE_SET"
3944    echo
3945    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
3946    echo "AC_OUTPUT([Makefile])"
3947   ) > "$megatestdir/configure.ac"
3948
3949   # Create autogenerated files.
3950   (cd "$megatestdir"
3951    # Do not use "${AUTORECONF} --install", because autoreconf operates
3952    # recursively, but the subdirectories are already finished, therefore
3953    # calling autoreconf here would only waste lots of CPU time.
3954    func_execute_command ${ACLOCAL} || func_exit 1
3955    func_execute_command mkdir build-aux
3956    func_execute_command ${AUTOCONF} || func_exit 1
3957    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3958   ) || func_exit 1
3959 }
3960
3961 case $mode in
3962   "" )
3963     func_fatal_error "no mode specified" ;;
3964
3965   list )
3966     func_all_modules
3967     ;;
3968
3969   import | update )
3970
3971     # Where to import.
3972     if test -z "$destdir"; then
3973       destdir=.
3974     fi
3975     test -d "$destdir" \
3976       || func_fatal_error "destination directory does not exist: $destdir"
3977
3978     # Prefer configure.ac to configure.in.
3979     if test -f "$destdir"/configure.ac; then
3980       configure_ac="$destdir/configure.ac"
3981     else
3982       if test -f "$destdir"/configure.in; then
3983         configure_ac="$destdir/configure.in"
3984       else
3985         func_fatal_error "cannot find $destdir/configure.ac"
3986       fi
3987     fi
3988
3989     # Analyze configure.ac.
3990     guessed_auxdir="."
3991     guessed_libtool=false
3992     my_sed_traces='
3993       s,#.*$,,
3994       s,^dnl .*$,,
3995       s, dnl .*$,,
3996       /AC_CONFIG_AUX_DIR/ {
3997         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
3998       }
3999       /A[CM]_PROG_LIBTOOL/ {
4000         s,^.*$,guessed_libtool=true,p
4001       }'
4002     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
4003
4004     if test -z "$auxdir"; then
4005       auxdir="$guessed_auxdir"
4006     fi
4007
4008     # Determine where to apply func_import.
4009     if test -n "$m4base"; then
4010       # Apply func_import to a particular gnulib directory.
4011       # Any number of additional modules can be given.
4012       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
4013         # First use of gnulib in the given m4base.
4014         test -n "$supplied_libname" || supplied_libname=true
4015         test -n "$sourcebase" || sourcebase="lib"
4016         test -n "$docbase" || docbase="doc"
4017         test -n "$testsbase" || testsbase="tests"
4018         test -n "$macro_prefix" || macro_prefix="gl"
4019       fi
4020       func_import "$*"
4021     else
4022       # Apply func_import to all gnulib directories.
4023       # To get this list of directories, look at Makefile.am. (Not at
4024       # configure, because it may be omitted from CVS. Also, don't run
4025       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
4026       m4dirs=
4027       m4dirs_count=0
4028       if test -f "$destdir"/Makefile.am; then
4029         aclocal_amflags=`sed -n 's/^ACLOCAL_AMFLAGS[     ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
4030         m4dir_is_next=
4031         for arg in $aclocal_amflags; do
4032           if test -n "$m4dir_is_next"; then
4033             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
4034             case "$arg" in
4035               /*) ;;
4036               *)
4037                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
4038                   func_append m4dirs " $arg"
4039                   m4dirs_count=`expr $m4dirs_count + 1`
4040                 fi
4041                 ;;
4042             esac
4043             m4dir_is_next=
4044           else
4045             if test "X$arg" = "X-I"; then
4046               m4dir_is_next=yes
4047             else
4048               m4dir_is_next=
4049             fi
4050           fi
4051         done
4052       else
4053         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
4054         if test -f "$destdir"/aclocal.m4; then
4055           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
4056           sedexpr2='s,^[^/]*$,.,'
4057           sedexpr3='s,/[^/]*$,,'
4058           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
4059           m4dirs_count=`echo "$m4dirs" | wc -l`
4060         fi
4061       fi
4062       if test $m4dirs_count = 0; then
4063         # First use of gnulib in a package.
4064         # Any number of additional modules can be given.
4065         test -n "$supplied_libname" || supplied_libname=true
4066         test -n "$sourcebase" || sourcebase="lib"
4067         m4base="m4"
4068         test -n "$docbase" || docbase="doc"
4069         test -n "$testsbase" || testsbase="tests"
4070         test -n "$macro_prefix" || macro_prefix="gl"
4071         func_import "$*"
4072       else
4073         if test $m4dirs_count = 1; then
4074           # There's only one use of gnulib here. Assume the user means it.
4075           # Any number of additional modules can be given.
4076           for m4base in $m4dirs; do
4077             func_import "$*"
4078           done
4079         else
4080           # Ambiguous - guess what the user meant.
4081           if test $# = 0; then
4082             # No further arguments. Guess the user wants to update all of them.
4083             for m4base in $m4dirs; do
4084               # Perform func_import in a subshell, so that variable values
4085               # such as
4086               #   local_gnulib_dir, avoidlist, sourcebase, m4base, pobase,
4087               #   docbase, testsbase, inctests, libname, lgpl, makefile_name,
4088               #   libtool, macro_prefix, po_domain, vc_files
4089               # don't propagate from one directory to another.
4090               (func_import) || func_exit 1
4091             done
4092           else
4093             # Really ambiguous.
4094             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
4095           fi
4096         fi
4097       fi
4098     fi
4099     ;;
4100
4101   create-testdir )
4102     if test -z "$destdir"; then
4103       func_fatal_error "please specify --dir option"
4104     fi
4105     mkdir "$destdir"
4106     test -d "$destdir" \
4107       || func_fatal_error "could not create destination directory"
4108     test -n "$auxdir" || auxdir="build-aux"
4109     func_create_testdir "$destdir" "$*"
4110     ;;
4111
4112   create-megatestdir )
4113     if test -z "$destdir"; then
4114       func_fatal_error "please specify --dir option"
4115     fi
4116     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4117     test -n "$auxdir" || auxdir="build-aux"
4118     func_create_megatestdir "$destdir" "$*"
4119     ;;
4120
4121   test )
4122     test -n "$destdir" || destdir=testdir$$
4123     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4124     test -n "$auxdir" || auxdir="build-aux"
4125     func_create_testdir "$destdir" "$*"
4126     cd "$destdir"
4127       mkdir build
4128       cd build
4129         ../configure || func_exit 1
4130         make || func_exit 1
4131         make check || func_exit 1
4132         make distclean || func_exit 1
4133         remaining=`find . -type f -print`
4134         if test -n "$remaining"; then
4135           echo "Remaining files:" $remaining 1>&2
4136           echo "gnulib-tool: *** Stop." 1>&2
4137           func_exit 1
4138         fi
4139       cd ..
4140     cd ..
4141     rm -rf "$destdir"
4142     ;;
4143
4144   megatest )
4145     test -n "$destdir" || destdir=testdir$$
4146     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4147     test -n "$auxdir" || auxdir="build-aux"
4148     func_create_megatestdir "$destdir" "$*"
4149     cd "$destdir"
4150       mkdir build
4151       cd build
4152         ../configure
4153         make
4154         make check
4155         make distclean
4156         remaining=`find . -type f -print`
4157         if test -n "$remaining"; then
4158           echo "Remaining files:" $remaining 1>&2
4159           echo "gnulib-tool: *** Stop." 1>&2
4160           func_exit 1
4161         fi
4162       cd ..
4163     cd ..
4164     rm -rf "$destdir"
4165     ;;
4166
4167   extract-description )
4168     for module
4169     do
4170       func_verify_module
4171       if test -n "$module"; then
4172         func_get_description "$module"
4173       fi
4174     done
4175     ;;
4176
4177   extract-notice )
4178     for module
4179     do
4180       func_verify_module
4181       if test -n "$module"; then
4182         func_get_notice "$module"
4183       fi
4184     done
4185     ;;
4186
4187   extract-filelist )
4188     for module
4189     do
4190       func_verify_module
4191       if test -n "$module"; then
4192         func_get_filelist "$module"
4193       fi
4194     done
4195     ;;
4196
4197   extract-dependencies )
4198     for module
4199     do
4200       func_verify_module
4201       if test -n "$module"; then
4202         func_get_dependencies "$module"
4203       fi
4204     done
4205     ;;
4206
4207   extract-autoconf-snippet )
4208     for module
4209     do
4210       func_verify_module
4211       if test -n "$module"; then
4212         func_get_autoconf_snippet "$module"
4213       fi
4214     done
4215     ;;
4216
4217   extract-automake-snippet )
4218     for module
4219     do
4220       func_verify_module
4221       if test -n "$module"; then
4222         func_get_automake_snippet "$module"
4223       fi
4224     done
4225     ;;
4226
4227   extract-include-directive )
4228     for module
4229     do
4230       func_verify_module
4231       if test -n "$module"; then
4232         func_get_include_directive "$module"
4233       fi
4234     done
4235     ;;
4236
4237   extract-link-directive )
4238     for module
4239     do
4240       func_verify_module
4241       if test -n "$module"; then
4242         func_get_link_directive "$module"
4243       fi
4244     done
4245     ;;
4246
4247   extract-license )
4248     for module
4249     do
4250       func_verify_module
4251       if test -n "$module"; then
4252         func_get_license "$module"
4253       fi
4254     done
4255     ;;
4256
4257   extract-maintainer )
4258     for module
4259     do
4260       func_verify_module
4261       if test -n "$module"; then
4262         func_get_maintainer "$module"
4263       fi
4264     done
4265     ;;
4266
4267   extract-tests-module )
4268     for module
4269     do
4270       func_verify_module
4271       if test -n "$module"; then
4272         func_get_tests_module "$module"
4273       fi
4274     done
4275     ;;
4276
4277   * )
4278     func_fatal_error "unknown operation mode --$mode" ;;
4279 esac
4280
4281 rm -rf "$tmp"
4282 # Undo the effect of the previous 'trap' command. Some shellology:
4283 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
4284 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
4285 # exit); for the others we need to call 'exit' explicitly. The value of $? is
4286 # 128 + signal number and is set before the trap-registered command is run.
4287 trap '' 0
4288 trap 'func_exit $?' 1 2 3 13 15
4289
4290 exit 0
4291
4292 # Local Variables:
4293 # indent-tabs-mode: nil
4294 # whitespace-check-buffer-indent: nil
4295 # End: