21a08b2490a6cc50cfe73f519c5b987266d1c70b
[pspp] / 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 }
2050
2051 # func_emit_initmacro_end macro_prefix
2052 # emits the last few statements of the gl_INIT macro to standard output.
2053 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2054 func_emit_initmacro_end ()
2055 {
2056   macro_prefix_arg="$1"
2057   echo "  m4_popdef([AC_LIBSOURCES])"
2058   echo "  m4_popdef([AC_REPLACE_FUNCS])"
2059   echo "  m4_popdef([AC_LIBOBJ])"
2060   echo "  AC_CONFIG_COMMANDS_PRE(["
2061   echo "    ${macro_prefix_arg}_libobjs="
2062   echo "    ${macro_prefix_arg}_ltlibobjs="
2063   echo "    if test -n \"\$${macro_prefix_arg}_LIBOBJS\"; then"
2064   echo "      # Remove the extension."
2065   echo "      sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
2066   echo "      for i in \`for i in \$${macro_prefix_arg}_LIBOBJS; do echo \"\$i\"; done | sed \"\$sed_drop_objext\" | sort | uniq\`; do"
2067   echo "        ${macro_prefix_arg}_libobjs=\"\$${macro_prefix_arg}_libobjs \$i.\$ac_objext\""
2068   echo "        ${macro_prefix_arg}_ltlibobjs=\"\$${macro_prefix_arg}_ltlibobjs \$i.lo\""
2069   echo "      done"
2070   echo "    fi"
2071   echo "    AC_SUBST([${macro_prefix_arg}_LIBOBJS], [\$${macro_prefix_arg}_libobjs])"
2072   echo "    AC_SUBST([${macro_prefix_arg}_LTLIBOBJS], [\$${macro_prefix_arg}_ltlibobjs])"
2073   echo "  ])"
2074 }
2075
2076 # func_emit_initmacro_done macro_prefix sourcebase
2077 # emits a few statements after the gl_INIT macro to standard output.
2078 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2079 # - sourcebase      directory relative to destdir where to place source code
2080 func_emit_initmacro_done ()
2081 {
2082   macro_prefix_arg="$1"
2083   sourcebase_arg="$2"
2084   echo
2085   echo "# Like AC_LIBOBJ, except that the module name goes"
2086   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
2087   echo "AC_DEFUN([${macro_prefix_arg}_LIBOBJ], ["
2088   echo "  AS_LITERAL_IF([\$1], [${macro_prefix_arg}_LIBSOURCES([\$1.c])])dnl"
2089   echo "  ${macro_prefix_arg}_LIBOBJS=\"\$${macro_prefix_arg}_LIBOBJS \$1.\$ac_objext\""
2090   echo "])"
2091   echo
2092   echo "# m4_foreach_w is provided by autoconf-2.59c and later."
2093   echo "# This definition is to accommodate developers using versions"
2094   echo "# of autoconf older than that."
2095   echo "m4_ifndef([m4_foreach_w],"
2096   echo "  [m4_define([m4_foreach_w],"
2097   echo "    [m4_foreach([\$1], m4_split(m4_normalize([\$2]), [ ]), [\$3])])])"
2098   echo
2099   echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
2100   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
2101   echo "AC_DEFUN([${macro_prefix_arg}_REPLACE_FUNCS], ["
2102   echo "  m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl"
2103   echo "  AC_CHECK_FUNCS([\$1], , [${macro_prefix_arg}_LIBOBJ(\$ac_func)])"
2104   echo "])"
2105   echo
2106   echo "# Like AC_LIBSOURCES, except the directory where the source file is"
2107   echo "# expected is derived from the gnulib-tool parametrization,"
2108   echo "# and alloca is special cased (for the alloca-opt module)."
2109   echo "# We could also entirely rely on EXTRA_lib..._SOURCES."
2110   echo "AC_DEFUN([${macro_prefix_arg}_LIBSOURCES], ["
2111   echo "  m4_foreach([_gl_NAME], [\$1], ["
2112   echo "    m4_if(_gl_NAME, [alloca.c], [], ["
2113   echo "      m4_syscmd([test -r $sourcebase_arg/]_gl_NAME[ || test ! -d $sourcebase_arg])dnl"
2114   echo "      m4_if(m4_sysval, [0], [],"
2115   echo "        [AC_FATAL([missing $sourcebase_arg/]_gl_NAME)])"
2116   echo "    ])"
2117   echo "  ])"
2118   echo "])"
2119 }
2120
2121 # func_import modules
2122 # Uses also the variables
2123 # - destdir         target directory
2124 # - local_gnulib_dir  from --local-dir
2125 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
2126 # - libname         library name
2127 # - sourcebase      directory relative to destdir where to place source code
2128 # - m4base          directory relative to destdir where to place *.m4 macros
2129 # - pobase          directory relative to destdir where to place *.po files
2130 # - docbase         directory relative to destdir where to place doc files
2131 # - testsbase       directory relative to destdir where to place unit test code
2132 # - auxdir          directory relative to destdir where to place build aux files
2133 # - inctests        true if --with-tests was given, blank otherwise
2134 # - avoidlist       list of modules to avoid, from --avoid
2135 # - lgpl            yes or a number if library's license shall be LGPL,
2136 #                   blank otherwise
2137 # - makefile_name   from --makefile-name
2138 # - libtool         true if --libtool was given, false if --no-libtool was
2139 #                   given, blank otherwise
2140 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
2141 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
2142 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
2143 # - vc_files        true if --vc-files was given, false if --no-vc-files was
2144 #                   given, blank otherwise
2145 # - autoconf_minversion  minimum supported autoconf version
2146 # - doit            : if actions shall be executed, false if only to be printed
2147 # - symbolic        true if files should be symlinked, copied otherwise
2148 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
2149 #                   copied otherwise
2150 # - do_copyrights   true if copyright notices in files should be replaced,
2151 #                   blank otherwise
2152 func_import ()
2153 {
2154   # Get the cached settings.
2155   cached_local_gnulib_dir=
2156   cached_specified_modules=
2157   cached_avoidlist=
2158   cached_sourcebase=
2159   cached_m4base=
2160   cached_pobase=
2161   cached_docbase=
2162   cached_testsbase=
2163   cached_inctests=
2164   cached_libname=
2165   cached_lgpl=
2166   cached_makefile_name=
2167   cached_libtool=
2168   cached_macro_prefix=
2169   cached_po_domain=
2170   cached_vc_files=
2171   cached_files=
2172   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
2173     cached_libtool=false
2174     my_sed_traces='
2175       s,#.*$,,
2176       s,^dnl .*$,,
2177       s, dnl .*$,,
2178       /gl_LOCAL_DIR(/ {
2179         s,^.*gl_LOCAL_DIR([[ ]*\([^])]*\).*$,cached_local_gnulib_dir="\1",p
2180       }
2181       /gl_MODULES(/ {
2182         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
2183       }
2184       /gl_AVOID(/ {
2185         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
2186       }
2187       /gl_SOURCE_BASE(/ {
2188         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
2189       }
2190       /gl_M4_BASE(/ {
2191         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
2192       }
2193       /gl_PO_BASE(/ {
2194         s,^.*gl_PO_BASE([[ ]*\([^])]*\).*$,cached_pobase="\1",p
2195       }
2196       /gl_DOC_BASE(/ {
2197         s,^.*gl_DOC_BASE([[ ]*\([^])]*\).*$,cached_docbase="\1",p
2198       }
2199       /gl_TESTS_BASE(/ {
2200         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
2201       }
2202       /gl_WITH_TESTS/ {
2203         s,^.*$,cached_inctests=true,p
2204       }
2205       /gl_LIB(/ {
2206         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
2207       }
2208       /gl_LGPL(/ {
2209         s,^.*gl_LGPL([[ ]*\([^])]*\).*$,cached_lgpl="\1",p
2210       }
2211       /gl_LGPL/ {
2212         s,^.*$,cached_lgpl=yes,p
2213       }
2214       /gl_MAKEFILE_NAME(/ {
2215         s,^.*gl_MAKEFILE_NAME([[ ]*\([^])]*\).*$,cached_makefile_name="\1",p
2216       }
2217       /gl_LIBTOOL/ {
2218         s,^.*$,cached_libtool=true,p
2219       }
2220       /gl_MACRO_PREFIX(/ {
2221         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
2222       }
2223       /gl_PO_DOMAIN(/ {
2224         s,^.*gl_PO_DOMAIN([[ ]*\([^])]*\).*$,cached_po_domain="\1",p
2225       }
2226       /gl_VC_FILES(/ {
2227         s,^.*gl_VC_FILES([[ ]*\([^])]*\).*$,cached_vc_files="\1",p
2228       }'
2229     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
2230     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
2231       my_sed_traces='
2232         s,#.*$,,
2233         s,^dnl .*$,,
2234         s, dnl .*$,,
2235         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
2236           s,^.*$,cached_files=",p
2237           n
2238           ta
2239           :a
2240           s,^\]).*$,",
2241           tb
2242           p
2243           n
2244           ba
2245           :b
2246           p
2247         }'
2248       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
2249     fi
2250   fi
2251
2252   # Merge the cached settings with the specified ones.
2253   # The m4base must be the same as expected from the pathname.
2254   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
2255     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
2256   fi
2257   # The local_gnulib_dir defaults to the cached one. Recall that the cached one
2258   # is relative to $destdir, whereas the one we use is relative to . or absolute.
2259   if test -z "$local_gnulib_dir"; then
2260     if test -n "$cached_local_gnulib_dir"; then
2261       case "$destdir" in
2262         /*)
2263           local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2264         *)
2265           case "$cached_local_gnulib_dir" in
2266             /*)
2267               local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
2268             *)
2269               func_relconcat "$destdir" "$cached_local_gnulib_dir"
2270               local_gnulib_dir="$relconcat" ;;
2271           esac ;;
2272       esac
2273     fi
2274   fi
2275   # Append the cached and the specified module names. So that
2276   # "gnulib-tool --import foo" means to add the module foo.
2277   specified_modules="$cached_specified_modules $1"
2278   # Append the cached and the specified avoidlist. This is probably better
2279   # than dropping the cached one when --avoid is specified at least once.
2280   avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
2281   avoidlist=`echo $avoidlist`
2282
2283   # The sourcebase defaults to the cached one.
2284   if test -z "$sourcebase"; then
2285     sourcebase="$cached_sourcebase"
2286     if test -z "$sourcebase"; then
2287       func_fatal_error "missing --source-base option"
2288     fi
2289   fi
2290   # The pobase defaults to the cached one.
2291   if test -z "$pobase"; then
2292     pobase="$cached_pobase"
2293   fi
2294   # The docbase defaults to the cached one.
2295   if test -z "$docbase"; then
2296     docbase="$cached_docbase"
2297     if test -z "$docbase"; then
2298       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."
2299     fi
2300   fi
2301   # The testsbase defaults to the cached one.
2302   if test -z "$testsbase"; then
2303     testsbase="$cached_testsbase"
2304     if test -z "$testsbase"; then
2305       func_fatal_error "missing --tests-base option"
2306     fi
2307   fi
2308   # Require the tests if specified either way.
2309   if test -z "$inctests"; then
2310     inctests="$cached_inctests"
2311   fi
2312   # The libname defaults to the cached one.
2313   if test -z "$supplied_libname"; then
2314     libname="$cached_libname"
2315     if test -z "$libname"; then
2316       func_fatal_error "missing --lib option"
2317     fi
2318   fi
2319   # Require LGPL if specified either way.
2320   if test -z "$lgpl"; then
2321     lgpl="$cached_lgpl"
2322   fi
2323   # The makefile_name defaults to the cached one.
2324   if test -z "$makefile_name"; then
2325     makefile_name="$cached_makefile_name"
2326   fi
2327   # Use libtool if specified either way, or if guessed.
2328   if test -z "$libtool"; then
2329     if test -n "$cached_m4base"; then
2330       libtool="$cached_libtool"
2331     else
2332       libtool="$guessed_libtool"
2333     fi
2334   fi
2335   # The macro_prefix defaults to the cached one.
2336   if test -z "$macro_prefix"; then
2337     macro_prefix="$cached_macro_prefix"
2338     if test -z "$macro_prefix"; then
2339       func_fatal_error "missing --macro-prefix option"
2340     fi
2341   fi
2342   # The po_domain defaults to the cached one.
2343   if test -z "$po_domain"; then
2344     po_domain="$cached_po_domain"
2345   fi
2346   # The vc_files defaults to the cached one.
2347   if test -z "$vc_files"; then
2348     vc_files="$cached_vc_files"
2349   fi
2350
2351   # Canonicalize the list of specified modules.
2352   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
2353
2354   # Determine final module list.
2355   modules="$specified_modules"
2356   func_modules_transitive_closure
2357   if test $verbose -ge 0; then
2358     echo "Module list with included dependencies:"
2359     echo "$modules" | sed -e 's/^/  /'
2360   fi
2361   final_modules="$modules"
2362
2363   # Determine main module list and tests-related module list separately.
2364   # The main module list is the transitive closure of the specified modules,
2365   # ignoring tests modules. Its lib/* sources go into $sourcebase/. If --lgpl
2366   # is specified, it will consist only of LGPLed source.
2367   # The tests-related module list is the transitive closure of the specified
2368   # modules, including tests modules, minus the main module list. Its lib/*
2369   # sources (brought in through dependencies of *-tests modules) go into
2370   # $testsbase/. It may contain GPLed source, even if --lgpl is specified.
2371   # Determine main module list.
2372   saved_inctests="$inctests"
2373   inctests=""
2374   modules="$specified_modules"
2375   func_modules_transitive_closure
2376   main_modules="$modules"
2377   inctests="$saved_inctests"
2378   if test $verbose -ge 1; then
2379     echo "Main module list:"
2380     echo "$main_modules" | sed -e 's/^/  /'
2381   fi
2382   # Determine tests-related module list.
2383   echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules
2384   testsrelated_modules=`echo "$main_modules" | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/final-modules`
2385   if test $verbose -ge 1; then
2386     echo "Tests-related module list:"
2387     echo "$testsrelated_modules" | sed -e 's/^/  /'
2388   fi
2389
2390   # Add the dummy module to the main module list if needed.
2391   modules="$main_modules"
2392   func_modules_add_dummy
2393   main_modules="$modules"
2394
2395   # Determine whether a $testsbase/libtests.a is needed.
2396   use_libtests=false
2397   for module in $testsrelated_modules; do
2398     func_verify_nontests_module
2399     if test -n "$module"; then
2400       all_files=`func_get_filelist $module`
2401       lib_files=`for f in $all_files; do \
2402                    case $f in \
2403                      lib/*) echo $f ;; \
2404                    esac; \
2405                  done | sed -e 's,^lib/,,'`
2406       if test -n "$lib_files"; then
2407         use_libtests=true
2408         break
2409       fi
2410     fi
2411   done
2412
2413   # Add the dummy module to the tests-related module list if needed.
2414   if $use_libtests; then
2415     modules="$testsrelated_modules"
2416     func_modules_add_dummy
2417     testsrelated_modules="$modules"
2418   fi
2419
2420   # If --lgpl, verify that the licenses of modules are compatible.
2421   if test -n "$lgpl"; then
2422     for module in $main_modules; do
2423       license=`func_get_license $module`
2424       case $license in
2425         'GPLed build tool') ;;
2426         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
2427         *)
2428           case "$lgpl" in
2429             yes | 3)
2430               case $license in
2431                 LGPL | LGPLv2+) ;;
2432                 *) func_fatal_error "incompatible license on module $module: $license" ;;
2433               esac
2434               ;;
2435             2)
2436               case $license in
2437                 LGPLv2+) ;;
2438                 *) func_fatal_error "incompatible license on module $module: $license" ;;
2439               esac
2440               ;;
2441             *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2442           esac
2443           ;;
2444       esac
2445     done
2446   fi
2447
2448   # Show banner notice of every module.
2449   modules="$main_modules"
2450   func_modules_notice
2451
2452   # Determine script to apply to imported library files.
2453   sed_transform_lib_file=
2454   for module in $main_modules; do
2455     if test $module = config-h; then
2456       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
2457       sed_transform_lib_file=$sed_transform_lib_file'
2458         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
2459       '
2460       break
2461     fi
2462   done
2463   sed_transform_main_lib_file="$sed_transform_lib_file"
2464   if test -n "$do_copyrights"; then
2465     if test -n "$lgpl"; then
2466       # Update license.
2467       case "$lgpl" in
2468         yes | 3)
2469           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2470             s/GNU General/GNU Lesser General/g
2471           '
2472           ;;
2473         2)
2474           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2475             s/GNU General/GNU Lesser General/g
2476             s/version [23]\([ ,]\)/version 2.1\1/g
2477           '
2478           ;;
2479         *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2480       esac
2481     else
2482       # Update license.
2483       sed_transform_main_lib_file=$sed_transform_main_lib_file'
2484         s/GNU Lesser General/GNU General/g
2485         s/GNU Library General/GNU General/g
2486         s/version \(2\|2\.1\)\([ ,]\)/version 3\2/g
2487       '
2488     fi
2489   fi
2490
2491   # Determine script to apply to library files that go into $testsbase/.
2492   sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
2493   if test -n "$do_copyrights"; then
2494     # Update license.
2495     sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
2496       s/GNU Lesser General/GNU General/g
2497       s/GNU Library General/GNU General/g
2498       s/version \(2\|2\.1\)\([ ,]\)/version 3\2/g
2499     '
2500   fi
2501
2502   # Determine the final file lists.
2503   # They must be computed separately, because files in lib/* go into
2504   # $sourcebase/ if they are in the main file list but into $testsbase/
2505   # if they are in the tests-related file list. Furthermore lib/dummy.c
2506   # can be in both.
2507   # Determine final main file list.
2508   modules="$main_modules"
2509   func_modules_to_filelist
2510   main_files="$files"
2511   # Determine final tests-related file list.
2512   modules="$testsrelated_modules"
2513   func_modules_to_filelist
2514   testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'`
2515   # Merge both file lists.
2516   sed_remove_empty_lines='/^$/d'
2517   files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u`
2518   if test $verbose -ge 0; then
2519     echo "File list:"
2520     sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,'
2521     echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/  /'
2522   fi
2523
2524   test -n "$files" \
2525     || func_fatal_error "refusing to do nothing"
2526
2527   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
2528   new_files="$files m4/gnulib-tool.m4"
2529   old_files="$cached_files"
2530   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
2531     func_append old_files " m4/gnulib-tool.m4"
2532   fi
2533
2534   sed_rewrite_old_files="\
2535     s,^build-aux/,$auxdir/,
2536     s,^doc/,$cached_docbase/,
2537     s,^lib/,$cached_sourcebase/,
2538     s,^m4/,$cached_m4base/,
2539     s,^tests/,$cached_testsbase/,
2540     s,^tests=lib/,$cached_testsbase/,
2541     s,^top/,,"
2542   sed_rewrite_new_files="\
2543     s,^build-aux/,$auxdir/,
2544     s,^doc/,$docbase/,
2545     s,^lib/,$sourcebase/,
2546     s,^m4/,$m4base/,
2547     s,^tests/,$testsbase/,
2548     s,^tests=lib/,$testsbase/,
2549     s,^top/,,"
2550
2551   # Create directories.
2552   { echo "$sourcebase"
2553     echo "$m4base"
2554     if test -n "$pobase"; then
2555       echo "$pobase"
2556     fi
2557     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
2558     if test -n "$docfiles"; then
2559       echo "$docbase"
2560     fi
2561     if test -n "$inctests"; then
2562       echo "$testsbase"
2563     fi
2564     echo "$auxdir"
2565     for f in $files; do echo $f; done \
2566       | sed -e "$sed_rewrite_new_files" \
2567       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
2568       | LC_ALL=C sort -u
2569   } > "$tmp"/dirs
2570   { # Rearrange file descriptors. Needed because "while ... done < ..."
2571     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2572     exec 5<&0 < "$tmp"/dirs
2573     while read d; do
2574       if test ! -d "$destdir/$d"; then
2575         if $doit; then
2576           echo "Creating directory $destdir/$d"
2577           mkdir -p "$destdir/$d" || func_fatal_error "failed"
2578         else
2579           echo "Create directory $destdir/$d"
2580         fi
2581       fi
2582     done
2583     exec 0<&5 5<&-
2584   }
2585
2586   # func_dest_tmpfilename file
2587   # determines the name of a temporary file (file is relative to destdir).
2588   # Sets variable:
2589   #   - tmpfile       absolute filename of the temporary file
2590   func_dest_tmpfilename ()
2591   {
2592     if $doit; then
2593       # Put the new contents of $file in a file in the same directory (needed
2594       # to guarantee that an 'mv' to "$destdir/$file" works).
2595       tmpfile="$destdir/$1.tmp"
2596     else
2597       # Put the new contents of $file in a file in a temporary directory
2598       # (because the directory of "$file" might not exist).
2599       tmpfile="$tmp"/`basename "$1"`.tmp
2600     fi
2601   }
2602
2603   # Copy files or make symbolic links. Remove obsolete files.
2604   added_files=''
2605   removed_files=''
2606   delimiter='   '
2607   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2608   # representing the files according to the last gnulib-tool invocation.
2609   for f in $old_files; do echo $f; done \
2610     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
2611     | LC_ALL=C sort \
2612     > "$tmp"/old-files
2613   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2614   # representing the files after this gnulib-tool invocation.
2615   for f in $new_files; do echo $f; done \
2616     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
2617     | LC_ALL=C sort \
2618     > "$tmp"/new-files
2619   # First the files that are in old-files, but not in new-files:
2620   sed_take_first_column='s,'"$delimiter"'.*,,'
2621   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
2622     # Remove the file. Do nothing if the user already removed it.
2623     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
2624       if $doit; then
2625         echo "Removing file $g (backup in ${g}~)"
2626         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2627       else
2628         echo "Remove file $g (backup in ${g}~)"
2629       fi
2630       func_append removed_files "$g$nl"
2631     fi
2632   done
2633   # func_add_or_update handles a file that ought to be present afterwards.
2634   # Uses parameters
2635   # - f             the original file name
2636   # - g             the rewritten file name
2637   # - already_present  nonempty if the file already exists, empty otherwise
2638   func_add_or_update ()
2639   {
2640     of="$f"
2641     case "$f" in
2642       tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
2643     esac
2644     func_dest_tmpfilename "$g"
2645     func_lookup_file "$f"
2646     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
2647     if test -n "$sed_transform_main_lib_file"; then
2648       case "$of" in
2649         lib/*)
2650           sed -e "$sed_transform_main_lib_file" \
2651             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
2652           ;;
2653       esac
2654     fi
2655     if test -n "$sed_transform_testsrelated_lib_file"; then
2656       case "$of" in
2657         tests=lib/*)
2658           sed -e "$sed_transform_testsrelated_lib_file" \
2659             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
2660           ;;
2661       esac
2662     fi
2663     if test -f "$destdir/$g"; then
2664       # The file already exists.
2665       if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
2666         : # The file has not changed.
2667       else
2668         # Replace the file.
2669         if $doit; then
2670           if test -n "$already_present"; then
2671             echo "Updating file $g (backup in ${g}~)"
2672           else
2673             echo "Replacing file $g (non-gnulib code backed up in ${g}~) !!"
2674           fi
2675           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
2676           if { test -n "$symbolic" \
2677                || { test -n "$lsymbolic" \
2678                     && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2679              && test -z "$lookedup_tmp" \
2680              && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2681             func_ln_if_changed "$lookedup_file" "$destdir/$g"
2682           else
2683             mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2684           fi
2685         else
2686           if test -n "$already_present"; then
2687             echo "Update file $g (backup in ${g}~)"
2688           else
2689             echo "Replace file $g (non-gnulib code backed up in ${g}~) !!"
2690           fi
2691         fi
2692       fi
2693     else
2694       # Install the file.
2695       # Don't protest if the file should be there but isn't: it happens
2696       # frequently that developers don't put autogenerated files into CVS.
2697       if $doit; then
2698         echo "Copying file $g"
2699         if { test -n "$symbolic" \
2700              || { test -n "$lsymbolic" \
2701                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
2702            && test -z "$lookedup_tmp" \
2703            && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
2704           func_ln_if_changed "$lookedup_file" "$destdir/$g"
2705         else
2706           mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
2707         fi
2708       else
2709         echo "Copy file $g"
2710       fi
2711       func_append added_files "$g$nl"
2712     fi
2713     rm -f "$tmpfile"
2714   }
2715   # Then the files that are in new-files, but not in old-files:
2716   sed_take_last_column='s,^.*'"$delimiter"',,'
2717   already_present=
2718   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
2719     | sed -e "$sed_take_last_column" \
2720     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
2721   { # Rearrange file descriptors. Needed because "while ... done < ..."
2722     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2723     exec 5<&0 < "$tmp"/added-files
2724     while read g f; do
2725       func_add_or_update
2726     done
2727     exec 0<&5 5<&-
2728   }
2729   # Then the files that are in new-files and in old-files:
2730   already_present=true
2731   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
2732     | sed -e "$sed_take_last_column" \
2733     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
2734   { # Rearrange file descriptors. Needed because "while ... done < ..."
2735     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2736     exec 5<&0 < "$tmp"/kept-files
2737     while read g f; do
2738       func_add_or_update
2739     done
2740     exec 0<&5 5<&-
2741   }
2742
2743   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
2744   actioncmd="gnulib-tool --import"
2745   func_append actioncmd " --dir=$destdir"
2746   if test -n "$local_gnulib_dir"; then
2747     func_append actioncmd " --local-dir=$local_gnulib_dir"
2748   fi
2749   func_append actioncmd " --lib=$libname"
2750   func_append actioncmd " --source-base=$sourcebase"
2751   func_append actioncmd " --m4-base=$m4base"
2752   if test -n "$pobase"; then
2753     func_append actioncmd " --po-base=$pobase"
2754   fi
2755   func_append actioncmd " --doc-base=$docbase"
2756   func_append actioncmd " --aux-dir=$auxdir"
2757   if test -n "$inctests"; then
2758     func_append actioncmd " --with-tests"
2759   fi
2760   for module in $avoidlist; do
2761     func_append actioncmd " --avoid=$module"
2762   done
2763   if test -n "$lgpl"; then
2764     if test "$lgpl" = yes; then
2765       func_append actioncmd " --lgpl"
2766     else
2767       func_append actioncmd " --lgpl=$lgpl"
2768     fi
2769   fi
2770   if test -n "$makefile_name"; then
2771     func_append actioncmd " --makefile-name=$makefile_name"
2772   fi
2773   if test "$libtool" = true; then
2774     func_append actioncmd " --libtool"
2775   else
2776     func_append actioncmd " --no-libtool"
2777   fi
2778   func_append actioncmd " --macro-prefix=$macro_prefix"
2779   if test -n "$po_domain"; then
2780     func_append actioncmd " --po-domain=$po_domain"
2781   fi
2782   if test -n "$vc_files"; then
2783     if test "$vc_files" = true; then
2784       func_append actioncmd " --vc-files"
2785     else
2786       func_append actioncmd " --no-vc-files"
2787     fi
2788   fi
2789   func_append actioncmd " `echo $specified_modules`"
2790
2791   # Default the makefile name to Makefile.am.
2792   if test -n "$makefile_name"; then
2793     makefile_am=$makefile_name
2794   else
2795     makefile_am=Makefile.am
2796   fi
2797
2798   # Create normal Makefile.ams.
2799   for_test=false
2800
2801   # Create library makefile.
2802   func_dest_tmpfilename $sourcebase/$makefile_am
2803   modules="$main_modules"
2804   func_emit_lib_Makefile_am > "$tmpfile"
2805   if test -f "$destdir"/$sourcebase/$makefile_am; then
2806     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
2807       rm -f "$tmpfile"
2808     else
2809       if $doit; then
2810         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2811         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
2812         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2813       else
2814         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
2815         rm -f "$tmpfile"
2816       fi
2817     fi
2818   else
2819     if $doit; then
2820       echo "Creating $sourcebase/$makefile_am"
2821       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
2822     else
2823       echo "Create $sourcebase/$makefile_am"
2824       rm -f "$tmpfile"
2825     fi
2826     func_append added_files "$sourcebase/$makefile_am$nl"
2827   fi
2828
2829   # Create po/ directory.
2830   if test -n "$pobase"; then
2831     # Create po makefile and auxiliary files.
2832     for file in Makefile.in.in remove-potcdate.sin; do
2833       func_dest_tmpfilename $pobase/$file
2834       func_lookup_file build-aux/po/$file
2835       cat "$lookedup_file" > "$tmpfile"
2836       if test -f "$destdir"/$pobase/$file; then
2837         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
2838           rm -f "$tmpfile"
2839         else
2840           if $doit; then
2841             echo "Updating $pobase/$file (backup in $pobase/$file~)"
2842             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
2843             mv -f "$tmpfile" "$destdir"/$pobase/$file
2844           else
2845             echo "Update $pobase/$file (backup in $pobase/$file~)"
2846             rm -f "$tmpfile"
2847           fi
2848         fi
2849       else
2850         if $doit; then
2851           echo "Creating $pobase/$file"
2852           mv -f "$tmpfile" "$destdir"/$pobase/$file
2853         else
2854           echo "Create $pobase/$file"
2855           rm -f "$tmpfile"
2856         fi
2857         func_append added_files "$pobase/$file$nl"
2858       fi
2859     done
2860     # Create po makefile parametrization, part 1.
2861     func_dest_tmpfilename $pobase/Makevars
2862     func_emit_po_Makevars > "$tmpfile"
2863     if test -f "$destdir"/$pobase/Makevars; then
2864       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
2865         rm -f "$tmpfile"
2866       else
2867         if $doit; then
2868           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
2869           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
2870           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2871         else
2872           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
2873           rm -f "$tmpfile"
2874         fi
2875       fi
2876     else
2877       if $doit; then
2878         echo "Creating $pobase/Makevars"
2879         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
2880       else
2881         echo "Create $pobase/Makevars"
2882         rm -f "$tmpfile"
2883       fi
2884       func_append added_files "$pobase/Makevars$nl"
2885     fi
2886     # Create po makefile parametrization, part 2.
2887     func_dest_tmpfilename $pobase/POTFILES.in
2888     func_emit_po_POTFILES_in > "$tmpfile"
2889     if test -f "$destdir"/$pobase/POTFILES.in; then
2890       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
2891         rm -f "$tmpfile"
2892       else
2893         if $doit; then
2894           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2895           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
2896           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2897         else
2898           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
2899           rm -f "$tmpfile"
2900         fi
2901       fi
2902     else
2903       if $doit; then
2904         echo "Creating $pobase/POTFILES.in"
2905         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
2906       else
2907         echo "Create $pobase/POTFILES.in"
2908         rm -f "$tmpfile"
2909       fi
2910       func_append added_files "$pobase/POTFILES.in$nl"
2911     fi
2912     # Fetch PO files.
2913     TP_URL="http://translationproject.org/latest/"
2914     TP_RSYNC_URI="translationproject.org::tp/latest/"
2915     if $doit; then
2916       echo "Fetching gnulib PO files from $TP_URL"
2917       (cd "$destdir"/$pobase \
2918        && { # Prefer rsync over wget if it is available, since it consumes
2919             # less network bandwidth, due to compression.
2920             if type rsync 2>/dev/null | grep / > /dev/null; then
2921               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
2922             else
2923               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
2924             fi
2925           }
2926       )
2927     else
2928       echo "Fetch gnulib PO files from $TP_URL"
2929     fi
2930     # Create po/LINGUAS.
2931     if $doit; then
2932       func_dest_tmpfilename $pobase/LINGUAS
2933       (cd "$destdir"/$pobase \
2934        && { echo '# Set of available languages.'
2935             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
2936           }
2937       ) > "$tmpfile"
2938       if test -f "$destdir"/$pobase/LINGUAS; then
2939         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
2940           rm -f "$tmpfile"
2941         else
2942           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2943           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
2944           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2945         fi
2946       else
2947         echo "Creating $pobase/LINGUAS"
2948         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
2949         func_append added_files "$pobase/LINGUAS$nl"
2950       fi
2951     else
2952       if test -f "$destdir"/$pobase/LINGUAS; then
2953         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
2954       else
2955         echo "Create $pobase/LINGUAS"
2956       fi
2957     fi
2958   fi
2959
2960   # Create m4/gnulib-cache.m4.
2961   func_dest_tmpfilename $m4base/gnulib-cache.m4
2962   (
2963     func_emit_copyright_notice
2964     echo "#"
2965     echo "# This file represents the specification of how gnulib-tool is used."
2966     echo "# It acts as a cache: It is written and read by gnulib-tool."
2967     echo "# In projects using CVS, this file is meant to be stored in CVS,"
2968     echo "# like the configure.ac and various Makefile.am files."
2969     echo
2970     echo
2971     echo "# Specification in the form of a command-line invocation:"
2972     echo "#   $actioncmd"
2973     echo
2974     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
2975     # Store the local_gnulib_dir relative to destdir.
2976     case "$local_gnulib_dir" in
2977       "" | /*)
2978         relative_local_gnulib_dir="$local_gnulib_dir" ;;
2979       * )
2980         case "$destdir" in
2981           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
2982           *)
2983             # destdir, local_gnulib_dir are both relative.
2984             func_relativize "$destdir" "$local_gnulib_dir"
2985             relative_local_gnulib_dir="$reldir" ;;
2986         esac ;;
2987     esac
2988     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
2989     echo "gl_MODULES(["`echo $specified_modules`"])"
2990     echo "gl_AVOID([$avoidlist])"
2991     echo "gl_SOURCE_BASE([$sourcebase])"
2992     echo "gl_M4_BASE([$m4base])"
2993     echo "gl_PO_BASE([$pobase])"
2994     echo "gl_DOC_BASE([$docbase])"
2995     echo "gl_TESTS_BASE([$testsbase])"
2996     test -z "$inctests" || echo "gl_WITH_TESTS"
2997     echo "gl_LIB([$libname])"
2998     if test -n "$lgpl"; then
2999       if test "$lgpl" = yes; then
3000         echo "gl_LGPL"
3001       else
3002         echo "gl_LGPL([$lgpl])"
3003       fi
3004     fi
3005     echo "gl_MAKEFILE_NAME([$makefile_name])"
3006     if test "$libtool" = true; then
3007       echo "gl_LIBTOOL"
3008     fi
3009     echo "gl_MACRO_PREFIX([$macro_prefix])"
3010     echo "gl_PO_DOMAIN([$po_domain])"
3011     if test -n "$vc_files"; then
3012       echo "gl_VC_FILES([$vc_files])"
3013     fi
3014   ) > "$tmpfile"
3015   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
3016     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
3017       rm -f "$tmpfile"
3018     else
3019       if $doit; then
3020         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3021         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
3022         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3023       else
3024         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3025         if false; then
3026           cat "$tmpfile"
3027           echo
3028           echo "# gnulib-cache.m4 ends here"
3029         fi
3030         rm -f "$tmpfile"
3031       fi
3032     fi
3033   else
3034     if $doit; then
3035       echo "Creating $m4base/gnulib-cache.m4"
3036       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3037     else
3038       echo "Create $m4base/gnulib-cache.m4"
3039       cat "$tmpfile"
3040       rm -f "$tmpfile"
3041     fi
3042   fi
3043
3044   # Create m4/gnulib-comp.m4.
3045   func_dest_tmpfilename $m4base/gnulib-comp.m4
3046   (
3047     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
3048     func_emit_copyright_notice
3049     echo "#"
3050     echo "# This file represents the compiled summary of the specification in"
3051     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
3052     echo "# to be invoked from configure.ac."
3053     echo "# In projects using CVS, this file can be treated like other built files."
3054     echo
3055     echo
3056     echo "# This macro should be invoked from $configure_ac, in the section"
3057     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
3058     echo "# any checks for libraries, header files, types and library functions."
3059     echo "AC_DEFUN([${macro_prefix}_EARLY],"
3060     echo "["
3061     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3062     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3063     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3064     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3065     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
3066     if test -n "$uses_subdirs"; then
3067       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
3068     fi
3069     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 >/dev/null 2>/dev/null; then
3070       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
3071     fi
3072     for module in $final_modules; do
3073       func_verify_module
3074       if test -n "$module"; then
3075         func_get_autoconf_early_snippet "$module"
3076       fi
3077     done \
3078       | sed -e '/^$/d;' -e 's/^/  /'
3079     echo "])"
3080     echo
3081     echo "# This macro should be invoked from $configure_ac, in the section"
3082     echo "# \"Check for header files, types and library functions\"."
3083     echo "AC_DEFUN([${macro_prefix}_INIT],"
3084     echo "["
3085     if test "$libtool" = true; then
3086       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3087       echo "  gl_cond_libtool=true"
3088     else
3089       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3090       echo "  gl_cond_libtool=false"
3091       echo "  gl_libdeps="
3092       echo "  gl_ltlibdeps="
3093     fi
3094     if test "$auxdir" != "build-aux"; then
3095       sed_replace_build_aux='
3096         :a
3097         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3098           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3099           ba
3100         }'
3101     else
3102       sed_replace_build_aux=
3103     fi
3104     func_emit_initmacro_start $macro_prefix
3105     echo "  gl_source_base='$sourcebase'"
3106     for module in $main_modules; do
3107       func_verify_module
3108       if test -n "$module"; then
3109         func_get_autoconf_snippet "$module" \
3110           | sed -e '/^$/d;' -e 's/^/  /' \
3111                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3112                 -e "$sed_replace_build_aux"
3113         if test "$module" = 'alloca' && test "$libtool" = true; then
3114           echo 'changequote(,)dnl'
3115           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
3116           echo 'changequote([, ])dnl'
3117           echo 'AC_SUBST([LTALLOCA])'
3118         fi
3119       fi
3120     done
3121     func_emit_initmacro_end $macro_prefix
3122     echo "  gltests_libdeps="
3123     echo "  gltests_ltlibdeps="
3124     func_emit_initmacro_start ${macro_prefix}tests
3125     echo "  gl_source_base='$testsbase'"
3126     for module in $testsrelated_modules; do
3127       func_verify_module
3128       if test -n "$module"; then
3129         func_get_autoconf_snippet "$module" \
3130           | sed -e '/^$/d;' -e 's/^/  /' \
3131                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3132                 -e "$sed_replace_build_aux" \
3133                 -e 's/\$gl_cond_libtool/false/g' \
3134                 -e 's/gl_libdeps/gltests_libdeps/g' \
3135                 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
3136       fi
3137     done
3138     func_emit_initmacro_end ${macro_prefix}tests
3139     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3140     # created using libtool, because libtool already handles the dependencies.
3141     if test "$libtool" != true; then
3142       libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3143       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3144       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3145       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3146       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3147     fi
3148     if $use_libtests; then
3149       echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
3150       echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
3151     fi
3152     echo "])"
3153     func_emit_initmacro_done $macro_prefix $sourcebase
3154     func_emit_initmacro_done ${macro_prefix}tests $testsbase
3155     echo
3156     echo "# This macro records the list of files which have been installed by"
3157     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
3158     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
3159     echo "$files" | sed -e 's,^,  ,'
3160     echo "])"
3161   ) > "$tmpfile"
3162   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
3163     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
3164       rm -f "$tmpfile"
3165     else
3166       if $doit; then
3167         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3168         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
3169         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3170       else
3171         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3172         if false; then
3173           cat "$tmpfile"
3174           echo
3175           echo "# gnulib-comp.m4 ends here"
3176         fi
3177         rm -f "$tmpfile"
3178       fi
3179     fi
3180   else
3181     if $doit; then
3182       echo "Creating $m4base/gnulib-comp.m4"
3183       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3184     else
3185       echo "Create $m4base/gnulib-comp.m4"
3186       cat "$tmpfile"
3187       rm -f "$tmpfile"
3188     fi
3189   fi
3190
3191   if test -n "$inctests"; then
3192     # Create tests makefile.
3193     func_dest_tmpfilename $testsbase/$makefile_am
3194     modules="$testsrelated_modules"
3195     func_emit_tests_Makefile_am > "$tmpfile"
3196     if test -f "$destdir"/$testsbase/$makefile_am; then
3197       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
3198         rm -f "$tmpfile"
3199       else
3200         if $doit; then
3201           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3202           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
3203           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3204         else
3205           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3206           rm -f "$tmpfile"
3207         fi
3208       fi
3209     else
3210       if $doit; then
3211         echo "Creating $testsbase/$makefile_am"
3212         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3213       else
3214         echo "Create $testsbase/$makefile_am"
3215         rm -f "$tmpfile"
3216       fi
3217     func_append added_files "$testsbase/$makefile_am$nl"
3218     fi
3219   fi
3220
3221   if test "$vc_files" != false; then
3222     # Update the .cvsignore and .gitignore files.
3223     { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
3224       echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
3225     } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
3226     { # Rearrange file descriptors. Needed because "while ... done < ..."
3227       # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3228       exec 5<&0 < "$tmp"/fileset-changes
3229       func_update_ignorelist ()
3230       {
3231         ignore="$1"
3232         if test -f "$destdir/$dir$ignore"; then
3233           if test -n "$dir_added" || test -n "$dir_removed"; then
3234             LC_ALL=C sort "$destdir/$dir$ignore" > "$tmp"/ignore
3235             echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
3236               | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-added
3237             echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
3238               | LC_ALL=C join -v 2 "$tmp"/ignore - > "$tmp"/ignore-removed
3239             if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
3240               if $doit; then
3241                 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3242                 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
3243                 sed -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed > "$tmp"/sed-ignore-removed
3244                 cat "$destdir/$dir$ignore"~ "$tmp"/ignore-added \
3245                   | sed -f "$tmp"/sed-ignore-removed \
3246                   > "$destdir/$dir$ignore"
3247               else
3248                 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3249               fi
3250             fi
3251           fi
3252         else
3253           if test -n "$dir_added"; then
3254             if $doit; then
3255               echo "Creating $destdir/$dir$ignore"
3256               {
3257                 if test "$ignore" = .cvsignore; then
3258                   echo ".deps"
3259                   # Automake generates Makefile rules that create .dirstamp files.
3260                   echo ".dirstamp"
3261                 fi
3262                 echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u
3263               } > "$destdir/$dir$ignore"
3264             else
3265               echo "Create $destdir/$dir$ignore"
3266             fi
3267           fi
3268         fi
3269       }
3270       func_done_dir ()
3271       {
3272         dir="$1"
3273         dir_added="$2"
3274         dir_removed="$3"
3275         if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
3276           func_update_ignorelist .cvsignore
3277         fi
3278         if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
3279           func_update_ignorelist .gitignore
3280         fi
3281       }
3282       last_dir=
3283       last_dir_added=
3284       last_dir_removed=
3285       while read line; do
3286         # Why not ''read next_dir op file'' ? Because the dir column can be empty.
3287         next_dir=`echo "$line" | sed -e 's,|.*,,'`
3288         op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
3289         file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
3290         if test "$next_dir" != "$last_dir"; then
3291           func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3292           last_dir="$next_dir"
3293           last_dir_added=
3294           last_dir_removed=
3295         fi
3296         case $op in
3297           A) func_append last_dir_added "$file$nl";;
3298           R) func_append last_dir_removed "$file$nl";;
3299         esac
3300       done
3301       func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3302       exec 0<&5 5<&-
3303     }
3304   fi
3305
3306   echo "Finished."
3307   echo
3308   echo "You may need to add #include directives for the following .h files."
3309   # Intersect $specified_modules and $main_modules
3310   # (since $specified_modules is not necessarily of subset of $main_modules
3311   # - some may have been skipped through --avoid, and since the elements of
3312   # $main_modules but not in $specified_modules can go away without explicit
3313   # notice - through changes in the module dependencies).
3314   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
3315   echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
3316   # First the #include <...> directives without #ifs, sorted for convenience,
3317   # then the #include "..." directives without #ifs, sorted for convenience,
3318   # then the #include directives that are surrounded by #ifs. Not sorted.
3319   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
3320     include_directive=`func_get_include_directive "$module"`
3321     case "$nl$include_directive" in
3322       *"$nl#if"*)
3323         echo "$include_directive" 1>&5
3324         ;;
3325       *)
3326         echo "$include_directive" | grep -v 'include "' 1>&6
3327         echo "$include_directive" | grep 'include "' 1>&7
3328         ;;
3329     esac
3330   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
3331   (
3332    LC_ALL=C sort -u "$tmp"/include-angles
3333    LC_ALL=C sort -u "$tmp"/include-quotes
3334    cat "$tmp"/include-if
3335   ) | sed -e '/^$/d' -e 's/^/  /'
3336   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
3337
3338   for module in $main_modules; do
3339     func_get_link_directive "$module"
3340   done \
3341     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
3342   if test `wc -l < "$tmp"/link` != 0; then
3343     echo
3344     echo "You may need to use the following Makefile variables when linking."
3345     echo "Use them in <program>_LDADD when linking a program, or"
3346     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
3347     cat "$tmp"/link
3348   fi
3349   rm -f "$tmp"/link
3350
3351   echo
3352   echo "Don't forget to"
3353   if test "$makefile_am" = Makefile.am; then
3354     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3355   else
3356     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
3357   fi
3358   if test -n "$pobase"; then
3359     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
3360   fi
3361   if test -n "$inctests"; then
3362     if test "$makefile_am" = Makefile.am; then
3363       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3364     else
3365       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
3366     fi
3367   fi
3368   if test "$makefile_am" = Makefile.am; then
3369     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
3370     sourcebase_base=`basename "$sourcebase"`
3371     echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
3372   fi
3373   if test -n "$pobase"; then
3374     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
3375     pobase_base=`basename "$pobase"`
3376     echo "  - mention \"${pobase_base}\" in SUBDIRS in ${pobase_dir}Makefile.am,"
3377   fi
3378   if test -n "$inctests"; then
3379     if test "$makefile_am" = Makefile.am; then
3380       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
3381       testsbase_base=`basename "$testsbase"`
3382       echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
3383     fi
3384   fi
3385   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
3386   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
3387   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
3388 }
3389
3390 # func_create_testdir testdir modules
3391 # Input:
3392 # - local_gnulib_dir  from --local-dir
3393 # - auxdir          directory relative to destdir where to place build aux files
3394 func_create_testdir ()
3395 {
3396   testdir="$1"
3397   modules="$2"
3398   if test -z "$modules"; then
3399     # All modules together.
3400     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3401     # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3402     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
3403     modules=`func_all_modules`
3404     modules=`for m in $modules; do case $m in config-h | fnmatch-posix | ftruncate | mountlist) ;; *) echo $m;; esac; done`
3405   fi
3406   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
3407
3408   # Check that the license of every module is consistent with the license of
3409   # its dependencies.
3410   saved_modules="$modules"
3411   saved_inctests="$inctests"
3412   # When computing transitive closures, don't consider $module to depend on
3413   # $module-tests. Need this becauses tests are implicitly GPL and may depend
3414   # on GPL modules - therefore we don't want a warning in this case.
3415   inctests=""
3416   for requested_module in $saved_modules; do
3417     requested_license=`func_get_license "$requested_module"`
3418     if test "$requested_license" != GPL; then
3419       # Here we use func_modules_transitive_closure, not just
3420       # func_get_dependencies, so that we also detect weird situations like
3421       # an LGPL module which depends on a GPLed build tool module which depends
3422       # on a GPL module.
3423       modules="$requested_module"
3424       func_modules_transitive_closure
3425       for module in $modules; do
3426         license=`func_get_license "$module"`
3427         case "$license" in
3428           'GPLed build tool') ;;
3429           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
3430           *)
3431             case "$requested_license" in
3432               GPLv2+)
3433                 case "$license" in
3434                   GPLv2+ | LGPLv2+) ;;
3435                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3436                 esac
3437                 ;;
3438               LGPL)
3439                 case "$license" in
3440                   LGPL | LGPLv2+) ;;
3441                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3442                 esac
3443                 ;;
3444               LGPLv2+)
3445                 case "$license" in
3446                   LGPLv2+) ;;
3447                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3448                 esac
3449                 ;;
3450             esac
3451             ;;
3452         esac
3453       done
3454     fi
3455   done
3456   modules="$saved_modules"
3457   inctests="$saved_inctests"
3458
3459   # Subdirectory names.
3460   sourcebase=gllib
3461   m4base=glm4
3462   pobase=
3463   docbase=gldoc
3464   testsbase=gltests
3465   macro_prefix=gl
3466   po_domain=
3467   vc_files=
3468
3469   # Determine final module list.
3470   func_modules_transitive_closure
3471   if test $verbose -ge 0; then
3472     echo "Module list with included dependencies:"
3473     echo "$modules" | sed -e 's/^/  /'
3474   fi
3475
3476   # Add the dummy module if needed.
3477   func_modules_add_dummy
3478
3479   # Show banner notice of every module.
3480   func_modules_notice
3481
3482   # Determine final file list.
3483   func_modules_to_filelist
3484   if test $verbose -ge 0; then
3485     echo "File list:"
3486     echo "$files" | sed -e 's/^/  /'
3487   fi
3488
3489   sed_rewrite_files="\
3490     s,^build-aux/,$auxdir/,
3491     s,^doc/,$docbase/,
3492     s,^lib/,$sourcebase/,
3493     s,^m4/,$m4base/,
3494     s,^tests/,$testsbase/,
3495     s,^top/,,"
3496
3497   # Create directories.
3498   for f in $files; do echo $f; done \
3499     | sed -e "$sed_rewrite_files" \
3500     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
3501     | LC_ALL=C sort -u \
3502     > "$tmp"/dirs
3503   { # Rearrange file descriptors. Needed because "while ... done < ..."
3504     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3505     exec 5<&0 < "$tmp"/dirs
3506     while read d; do
3507       mkdir -p "$testdir/$d"
3508     done
3509     exec 0<&5 5<&-
3510   }
3511
3512   # Copy files or make symbolic links.
3513   delimiter='   '
3514   for f in $files; do echo $f; done \
3515     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
3516     | LC_ALL=C sort \
3517     > "$tmp"/files
3518   { # Rearrange file descriptors. Needed because "while ... done < ..."
3519     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3520     exec 5<&0 < "$tmp"/files
3521     while read g f; do
3522       func_lookup_file "$f"
3523       if test -n "$lookedup_tmp"; then
3524         cp -p "$lookedup_file" "$testdir/$g"
3525       else
3526         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
3527         if { test -n "$symbolic" \
3528              || { test -n "$lsymbolic" \
3529                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
3530           func_ln "$lookedup_file" "$testdir/$g"
3531         else
3532           cp -p "$lookedup_file" "$testdir/$g"
3533         fi
3534       fi
3535     done
3536     exec 0<&5 5<&-
3537   }
3538
3539   # Create Makefile.ams that are for testing.
3540   for_test=true
3541
3542   # Create $sourcebase/Makefile.am.
3543   mkdir -p "$testdir/$sourcebase"
3544   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
3545   any_uses_subdirs="$uses_subdirs"
3546
3547   # Create $m4base/Makefile.am.
3548   mkdir -p "$testdir/$m4base"
3549   (echo "## Process this file with automake to produce Makefile.in."
3550    echo
3551    echo "EXTRA_DIST ="
3552    for f in $files; do
3553      case "$f" in
3554        m4/* )
3555          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
3556      esac
3557    done
3558   ) > "$testdir/$m4base/Makefile.am"
3559
3560   subdirs="$sourcebase $m4base"
3561   subdirs_with_configure_ac=""
3562
3563   if false && test -f "$testdir"/$m4base/gettext.m4; then
3564     # Avoid stupid error message from automake:
3565     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
3566     mkdir -p "$testdir/po"
3567     (echo "## Process this file with automake to produce Makefile.in."
3568     ) > "$testdir/po/Makefile.am"
3569     func_append subdirs " po"
3570   fi
3571
3572   if test -n "$inctests"; then
3573     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
3574     # Viewed from the $testsbase subdirectory, $auxdir is different.
3575     saved_auxdir="$auxdir"
3576     auxdir=`echo "$testsbase/"|sed 's%[^/][^/]*//*%../%g'`"$auxdir"
3577     # Create $testsbase/Makefile.am.
3578     use_libtests=false
3579     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
3580     any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
3581     # Create $testsbase/configure.ac.
3582     (echo "# Process this file with autoconf to produce a configure script."
3583      echo "AC_INIT([dummy], [0])"
3584      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3585      echo "AM_INIT_AUTOMAKE"
3586      echo
3587      echo "AM_CONFIG_HEADER([config.h])"
3588      echo
3589      echo "AC_PROG_CC"
3590      echo "AC_PROG_INSTALL"
3591      echo "AC_PROG_MAKE_SET"
3592      echo "AC_PROG_RANLIB"
3593      echo
3594      if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3595        echo "AC_GNU_SOURCE"
3596        echo
3597      fi
3598      for module in $modules; do
3599        func_verify_module
3600        if test -n "$module"; then
3601          func_get_autoconf_early_snippet "$module"
3602        fi
3603      done \
3604        | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3605      if test "$libtool" = true; then
3606        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3607        echo "gl_cond_libtool=true"
3608      else
3609        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3610        echo "gl_cond_libtool=false"
3611        echo "gl_libdeps="
3612        echo "gl_ltlibdeps="
3613      fi
3614      # Wrap the set of autoconf snippets into an autoconf macro that is then
3615      # invoked. This is needed because autoconf does not support AC_REQUIRE
3616      # at the top level:
3617      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3618      # but we want the AC_REQUIRE to have its normal meaning (provide one
3619      # expansion of the required macro before the current point, and only one
3620      # expansion total).
3621      echo "AC_DEFUN([gl_INIT], ["
3622      sed_replace_build_aux='
3623        :a
3624        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3625          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3626          ba
3627        }'
3628      func_emit_initmacro_start $macro_prefix
3629      # We don't have explicit ordering constraints between the various
3630      # autoconf snippets. It's cleanest to put those of the library before
3631      # those of the tests.
3632      echo "gl_source_base='../$sourcebase'"
3633      for module in $modules; do
3634        func_verify_nontests_module
3635        if test -n "$module"; then
3636          func_get_autoconf_snippet "$module" \
3637            | sed -e "$sed_replace_build_aux"
3638        fi
3639      done
3640      echo "gl_source_base='.'"
3641      for module in $modules; do
3642        func_verify_tests_module
3643        if test -n "$module"; then
3644          func_get_autoconf_snippet "$module" \
3645            | sed -e "$sed_replace_build_aux"
3646        fi
3647      done
3648      func_emit_initmacro_end $macro_prefix
3649      # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3650      # created using libtool, because libtool already handles the dependencies.
3651      if test "$libtool" != true; then
3652        libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3653        echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3654        echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3655        echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3656        echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3657      fi
3658      echo "])"
3659      func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
3660      echo
3661      echo "gl_INIT"
3662      echo
3663      # Usually $testsbase/config.h will be a superset of config.h. Verify this
3664      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
3665      echo "AH_TOP([#include \"../config.h\"])"
3666      echo
3667      echo "AC_OUTPUT([Makefile])"
3668     ) > "$testdir/$testsbase/configure.ac"
3669     auxdir="$saved_auxdir"
3670     func_append subdirs " $testsbase"
3671     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
3672   fi
3673
3674   # Create Makefile.am.
3675   (echo "## Process this file with automake to produce Makefile.in."
3676    echo
3677    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3678    echo
3679    echo "SUBDIRS = $subdirs"
3680    echo
3681    echo "ACLOCAL_AMFLAGS = -I $m4base"
3682   ) > "$testdir/Makefile.am"
3683
3684   # Create configure.ac.
3685   (echo "# Process this file with autoconf to produce a configure script."
3686    echo "AC_INIT([dummy], [0])"
3687    if test "$auxdir" != "."; then
3688      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3689    fi
3690    echo "AM_INIT_AUTOMAKE"
3691    echo
3692    echo "AM_CONFIG_HEADER([config.h])"
3693    echo
3694    echo "AC_PROG_CC"
3695    echo "AC_PROG_INSTALL"
3696    echo "AC_PROG_MAKE_SET"
3697    echo
3698    echo "# For autobuild."
3699    echo "AC_CANONICAL_BUILD"
3700    echo "AC_CANONICAL_HOST"
3701    echo
3702    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3703    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3704    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3705    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3706    echo
3707    echo "AC_PROG_RANLIB"
3708    echo
3709    if test -n "$any_uses_subdirs"; then
3710      echo "AM_PROG_CC_C_O"
3711      echo
3712    fi
3713    if grep AC_GNU_SOURCE "$testdir/$m4base"/*.m4 >/dev/null 2>/dev/null; then
3714      echo "AC_GNU_SOURCE"
3715      echo
3716    fi
3717    for module in $modules; do
3718      func_verify_nontests_module
3719      if test -n "$module"; then
3720        func_get_autoconf_early_snippet "$module"
3721      fi
3722    done \
3723      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
3724    if test "$libtool" = true; then
3725      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3726      echo "gl_cond_libtool=true"
3727    else
3728      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3729      echo "gl_cond_libtool=false"
3730      echo "gl_libdeps="
3731      echo "gl_ltlibdeps="
3732    fi
3733    # Wrap the set of autoconf snippets into an autoconf macro that is then
3734    # invoked. This is needed because autoconf does not support AC_REQUIRE
3735    # at the top level:
3736    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
3737    # but we want the AC_REQUIRE to have its normal meaning (provide one
3738    # expansion of the required macro before the current point, and only one
3739    # expansion total).
3740    echo "AC_DEFUN([gl_INIT], ["
3741    if test "$auxdir" != "build-aux"; then
3742      sed_replace_build_aux='
3743        :a
3744        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3745          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3746          ba
3747        }'
3748    else
3749      sed_replace_build_aux=
3750    fi
3751    func_emit_initmacro_start $macro_prefix
3752    echo "gl_source_base='$sourcebase'"
3753    for module in $modules; do
3754      func_verify_nontests_module
3755      if test -n "$module"; then
3756        func_get_autoconf_snippet "$module" \
3757          | sed -e "$sed_replace_build_aux"
3758      fi
3759    done
3760    func_emit_initmacro_end $macro_prefix
3761    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3762    # created using libtool, because libtool already handles the dependencies.
3763    if test "$libtool" != true; then
3764      libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3765      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3766      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3767      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3768      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3769    fi
3770    echo "])"
3771    func_emit_initmacro_done $macro_prefix $sourcebase
3772    echo
3773    echo "gl_INIT"
3774    echo
3775    if test -n "$subdirs_with_configure_ac"; then
3776      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
3777    fi
3778    makefiles="Makefile"
3779    for d in $subdirs; do
3780      # For subdirs that have a configure.ac by their own, it's the subdir's
3781      # configure.ac which creates the subdir's Makefile.am, not this one.
3782      case " $subdirs_with_configure_ac " in
3783        *" $d "*) ;;
3784        *) func_append makefiles " $d/Makefile" ;;
3785      esac
3786    done
3787    echo "AC_OUTPUT([$makefiles])"
3788   ) > "$testdir/configure.ac"
3789
3790   # Create autogenerated files.
3791   (cd "$testdir"
3792    # Do not use "${AUTORECONF} --force --install", because it may invoke
3793    # autopoint, which brings in older versions of some of our .m4 files.
3794    if test -f $m4base/gettext.m4; then
3795      func_execute_command ${AUTOPOINT} --force || func_exit 1
3796      for f in $m4base/*.m4~; do
3797        mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3798      done
3799    fi
3800    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
3801    if ! test -d build-aux; then
3802      func_execute_command mkdir build-aux || func_exit 1
3803    fi
3804    func_execute_command ${AUTOCONF} || func_exit 1
3805    func_execute_command ${AUTOHEADER} || func_exit 1
3806    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3807   ) || func_exit 1
3808   if test -n "$inctests"; then
3809     # Create autogenerated files.
3810     (cd "$testdir/$testsbase" || func_exit 1
3811      # Do not use "${AUTORECONF} --force --install", because it may invoke
3812      # autopoint, which brings in older versions of some of our .m4 files.
3813      if test -f ../$m4base/gettext.m4; then
3814        func_execute_command ${AUTOPOINT} --force || func_exit 1
3815        for f in ../$m4base/*.m4~; do
3816          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
3817        done
3818      fi
3819      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
3820      if ! test -d ../build-aux; then
3821        func_execute_command mkdir ../build-aux
3822      fi
3823      func_execute_command ${AUTOCONF} || func_exit 1
3824      func_execute_command ${AUTOHEADER} || func_exit 1
3825      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3826     ) || func_exit 1
3827   fi
3828   # Need to run configure and make once, to create built files that are to be
3829   # distributed (such as getdate.c).
3830   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
3831   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3832                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
3833   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
3834   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
3835   # such $(FOO_H) because they don't refer to distributed files.
3836   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
3837   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
3838                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
3839                  | sed -e "$sed_remove_make_variables"`
3840   distributed_built_sources=`for file in $built_sources; do
3841                                case "$cleaned_files" in
3842                                  *" "$file" "*) ;;
3843                                  *) echo $file ;;
3844                                esac;
3845                              done`
3846   if test -n "$distributed_built_sources"; then
3847     (cd "$testdir"
3848      ./configure || func_exit 1
3849        cd "$sourcebase"
3850        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
3851        make built_sources || func_exit 1
3852        cd ..
3853      make distclean || func_exit 1
3854     ) || func_exit 1
3855   fi
3856 }
3857
3858 # func_create_megatestdir megatestdir allmodules
3859 # Input:
3860 # - local_gnulib_dir  from --local-dir
3861 # - auxdir          directory relative to destdir where to place build aux files
3862 func_create_megatestdir ()
3863 {
3864   megatestdir="$1"
3865   allmodules="$2"
3866   if test -z "$allmodules"; then
3867     allmodules=`func_all_modules`
3868   fi
3869
3870   megasubdirs=
3871   # First, all modules one by one.
3872   for onemodule in $allmodules; do
3873     func_create_testdir "$megatestdir/$onemodule" $onemodule
3874     func_append megasubdirs "$onemodule "
3875   done
3876   # Then, all modules all together.
3877   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3878   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
3879   allmodules=`for m in $allmodules; do if test $m != config-h && test $m != fnmatch-posix; then echo $m; fi; done`
3880   func_create_testdir "$megatestdir/ALL" "$allmodules"
3881   func_append megasubdirs "ALL"
3882
3883   # Create autobuild.
3884   cvsdate=`if test -f "$gnulib_dir/CVS/Entries"; then \
3885              vc_witness="$gnulib_dir/CVS/Entries"; \
3886            else \
3887              vc_witness="$gnulib_dir/.git/refs/heads/master"; \
3888            fi; \
3889            sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
3890              | sed -e 's,January,01,'   -e 's,Jan,01,' \
3891                    -e 's,February,02,'  -e 's,Feb,02,' \
3892                    -e 's,March,03,'     -e 's,Mar,03,' \
3893                    -e 's,April,04,'     -e 's,Apr,04,' \
3894                    -e 's,May,05,'                      \
3895                    -e 's,June,06,'      -e 's,Jun,06,' \
3896                    -e 's,July,07,'      -e 's,Jul,07,' \
3897                    -e 's,August,08,'    -e 's,Aug,08,' \
3898                    -e 's,September,09,' -e 's,Sep,09,' \
3899                    -e 's,October,10,'   -e 's,Oct,10,' \
3900                    -e 's,November,11,'  -e 's,Nov,11,' \
3901                    -e 's,December,12,'  -e 's,Dec,12,' \
3902                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
3903                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
3904   (echo '#!/bin/sh'
3905    echo "CVSDATE=$cvsdate"
3906    echo "test -d logs || mkdir logs"
3907    echo "for module in $megasubdirs; do"
3908    echo "  echo \"Working on module \$module...\""
3909    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
3910    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
3911    echo "   echo"
3912    echo "   set -x"
3913    echo "   : autobuild project... \$module"
3914    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
3915    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
3916    echo "   : autobuild hostname... \`hostname\`"
3917    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && make && make check && make distclean"
3918    echo "   echo rc=\$?"
3919    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
3920    echo "done"
3921   ) > "$megatestdir/do-autobuild"
3922   chmod a+x "$megatestdir/do-autobuild"
3923
3924   # Create Makefile.am.
3925   (echo "## Process this file with automake to produce Makefile.in."
3926    echo
3927    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
3928    echo
3929    echo "SUBDIRS = $megasubdirs"
3930    echo
3931    echo "EXTRA_DIST = do-autobuild"
3932   ) > "$megatestdir/Makefile.am"
3933
3934   # Create configure.ac.
3935   (echo "# Process this file with autoconf to produce a configure script."
3936    echo "AC_INIT([dummy], [0])"
3937    if test "$auxdir" != "."; then
3938      echo "AC_CONFIG_AUX_DIR([$auxdir])"
3939    fi
3940    echo "AM_INIT_AUTOMAKE"
3941    echo
3942    echo "AC_PROG_MAKE_SET"
3943    echo
3944    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
3945    echo "AC_OUTPUT([Makefile])"
3946   ) > "$megatestdir/configure.ac"
3947
3948   # Create autogenerated files.
3949   (cd "$megatestdir"
3950    # Do not use "${AUTORECONF} --install", because autoreconf operates
3951    # recursively, but the subdirectories are already finished, therefore
3952    # calling autoreconf here would only waste lots of CPU time.
3953    func_execute_command ${ACLOCAL} || func_exit 1
3954    func_execute_command mkdir build-aux
3955    func_execute_command ${AUTOCONF} || func_exit 1
3956    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
3957   ) || func_exit 1
3958 }
3959
3960 case $mode in
3961   "" )
3962     func_fatal_error "no mode specified" ;;
3963
3964   list )
3965     func_all_modules
3966     ;;
3967
3968   import | update )
3969
3970     # Where to import.
3971     if test -z "$destdir"; then
3972       destdir=.
3973     fi
3974     test -d "$destdir" \
3975       || func_fatal_error "destination directory does not exist: $destdir"
3976
3977     # Prefer configure.ac to configure.in.
3978     if test -f "$destdir"/configure.ac; then
3979       configure_ac="$destdir/configure.ac"
3980     else
3981       if test -f "$destdir"/configure.in; then
3982         configure_ac="$destdir/configure.in"
3983       else
3984         func_fatal_error "cannot find $destdir/configure.ac"
3985       fi
3986     fi
3987
3988     # Analyze configure.ac.
3989     guessed_auxdir="."
3990     guessed_libtool=false
3991     my_sed_traces='
3992       s,#.*$,,
3993       s,^dnl .*$,,
3994       s, dnl .*$,,
3995       /AC_CONFIG_AUX_DIR/ {
3996         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
3997       }
3998       /A[CM]_PROG_LIBTOOL/ {
3999         s,^.*$,guessed_libtool=true,p
4000       }'
4001     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
4002
4003     if test -z "$auxdir"; then
4004       auxdir="$guessed_auxdir"
4005     fi
4006
4007     # Determine where to apply func_import.
4008     if test -n "$m4base"; then
4009       # Apply func_import to a particular gnulib directory.
4010       # Any number of additional modules can be given.
4011       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
4012         # First use of gnulib in the given m4base.
4013         test -n "$supplied_libname" || supplied_libname=true
4014         test -n "$sourcebase" || sourcebase="lib"
4015         test -n "$docbase" || docbase="doc"
4016         test -n "$testsbase" || testsbase="tests"
4017         test -n "$macro_prefix" || macro_prefix="gl"
4018       fi
4019       func_import "$*"
4020     else
4021       # Apply func_import to all gnulib directories.
4022       # To get this list of directories, look at Makefile.am. (Not at
4023       # configure, because it may be omitted from CVS. Also, don't run
4024       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
4025       m4dirs=
4026       m4dirs_count=0
4027       if test -f "$destdir"/Makefile.am; then
4028         aclocal_amflags=`sed -n 's/^ACLOCAL_AMFLAGS[     ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
4029         m4dir_is_next=
4030         for arg in $aclocal_amflags; do
4031           if test -n "$m4dir_is_next"; then
4032             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
4033             case "$arg" in
4034               /*) ;;
4035               *)
4036                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
4037                   func_append m4dirs " $arg"
4038                   m4dirs_count=`expr $m4dirs_count + 1`
4039                 fi
4040                 ;;
4041             esac
4042             m4dir_is_next=
4043           else
4044             if test "X$arg" = "X-I"; then
4045               m4dir_is_next=yes
4046             else
4047               m4dir_is_next=
4048             fi
4049           fi
4050         done
4051       else
4052         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
4053         if test -f "$destdir"/aclocal.m4; then
4054           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
4055           sedexpr2='s,^[^/]*$,.,'
4056           sedexpr3='s,/[^/]*$,,'
4057           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
4058           m4dirs_count=`echo "$m4dirs" | wc -l`
4059         fi
4060       fi
4061       if test $m4dirs_count = 0; then
4062         # First use of gnulib in a package.
4063         # Any number of additional modules can be given.
4064         test -n "$supplied_libname" || supplied_libname=true
4065         test -n "$sourcebase" || sourcebase="lib"
4066         m4base="m4"
4067         test -n "$docbase" || docbase="doc"
4068         test -n "$testsbase" || testsbase="tests"
4069         test -n "$macro_prefix" || macro_prefix="gl"
4070         func_import "$*"
4071       else
4072         if test $m4dirs_count = 1; then
4073           # There's only one use of gnulib here. Assume the user means it.
4074           # Any number of additional modules can be given.
4075           for m4base in $m4dirs; do
4076             func_import "$*"
4077           done
4078         else
4079           # Ambiguous - guess what the user meant.
4080           if test $# = 0; then
4081             # No further arguments. Guess the user wants to update all of them.
4082             for m4base in $m4dirs; do
4083               # Perform func_import in a subshell, so that variable values
4084               # such as
4085               #   local_gnulib_dir, avoidlist, sourcebase, m4base, pobase,
4086               #   docbase, testsbase, inctests, libname, lgpl, makefile_name,
4087               #   libtool, macro_prefix, po_domain, vc_files
4088               # don't propagate from one directory to another.
4089               (func_import) || func_exit 1
4090             done
4091           else
4092             # Really ambiguous.
4093             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
4094           fi
4095         fi
4096       fi
4097     fi
4098     ;;
4099
4100   create-testdir )
4101     if test -z "$destdir"; then
4102       func_fatal_error "please specify --dir option"
4103     fi
4104     mkdir "$destdir"
4105     test -d "$destdir" \
4106       || func_fatal_error "could not create destination directory"
4107     test -n "$auxdir" || auxdir="build-aux"
4108     func_create_testdir "$destdir" "$*"
4109     ;;
4110
4111   create-megatestdir )
4112     if test -z "$destdir"; then
4113       func_fatal_error "please specify --dir option"
4114     fi
4115     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4116     test -n "$auxdir" || auxdir="build-aux"
4117     func_create_megatestdir "$destdir" "$*"
4118     ;;
4119
4120   test )
4121     test -n "$destdir" || destdir=testdir$$
4122     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4123     test -n "$auxdir" || auxdir="build-aux"
4124     func_create_testdir "$destdir" "$*"
4125     cd "$destdir"
4126       mkdir build
4127       cd build
4128         ../configure || func_exit 1
4129         make || func_exit 1
4130         make check || func_exit 1
4131         make distclean || func_exit 1
4132         remaining=`find . -type f -print`
4133         if test -n "$remaining"; then
4134           echo "Remaining files:" $remaining 1>&2
4135           echo "gnulib-tool: *** Stop." 1>&2
4136           func_exit 1
4137         fi
4138       cd ..
4139     cd ..
4140     rm -rf "$destdir"
4141     ;;
4142
4143   megatest )
4144     test -n "$destdir" || destdir=testdir$$
4145     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4146     test -n "$auxdir" || auxdir="build-aux"
4147     func_create_megatestdir "$destdir" "$*"
4148     cd "$destdir"
4149       mkdir build
4150       cd build
4151         ../configure
4152         make
4153         make check
4154         make distclean
4155         remaining=`find . -type f -print`
4156         if test -n "$remaining"; then
4157           echo "Remaining files:" $remaining 1>&2
4158           echo "gnulib-tool: *** Stop." 1>&2
4159           func_exit 1
4160         fi
4161       cd ..
4162     cd ..
4163     rm -rf "$destdir"
4164     ;;
4165
4166   extract-description )
4167     for module
4168     do
4169       func_verify_module
4170       if test -n "$module"; then
4171         func_get_description "$module"
4172       fi
4173     done
4174     ;;
4175
4176   extract-notice )
4177     for module
4178     do
4179       func_verify_module
4180       if test -n "$module"; then
4181         func_get_notice "$module"
4182       fi
4183     done
4184     ;;
4185
4186   extract-filelist )
4187     for module
4188     do
4189       func_verify_module
4190       if test -n "$module"; then
4191         func_get_filelist "$module"
4192       fi
4193     done
4194     ;;
4195
4196   extract-dependencies )
4197     for module
4198     do
4199       func_verify_module
4200       if test -n "$module"; then
4201         func_get_dependencies "$module"
4202       fi
4203     done
4204     ;;
4205
4206   extract-autoconf-snippet )
4207     for module
4208     do
4209       func_verify_module
4210       if test -n "$module"; then
4211         func_get_autoconf_snippet "$module"
4212       fi
4213     done
4214     ;;
4215
4216   extract-automake-snippet )
4217     for module
4218     do
4219       func_verify_module
4220       if test -n "$module"; then
4221         func_get_automake_snippet "$module"
4222       fi
4223     done
4224     ;;
4225
4226   extract-include-directive )
4227     for module
4228     do
4229       func_verify_module
4230       if test -n "$module"; then
4231         func_get_include_directive "$module"
4232       fi
4233     done
4234     ;;
4235
4236   extract-link-directive )
4237     for module
4238     do
4239       func_verify_module
4240       if test -n "$module"; then
4241         func_get_link_directive "$module"
4242       fi
4243     done
4244     ;;
4245
4246   extract-license )
4247     for module
4248     do
4249       func_verify_module
4250       if test -n "$module"; then
4251         func_get_license "$module"
4252       fi
4253     done
4254     ;;
4255
4256   extract-maintainer )
4257     for module
4258     do
4259       func_verify_module
4260       if test -n "$module"; then
4261         func_get_maintainer "$module"
4262       fi
4263     done
4264     ;;
4265
4266   extract-tests-module )
4267     for module
4268     do
4269       func_verify_module
4270       if test -n "$module"; then
4271         func_get_tests_module "$module"
4272       fi
4273     done
4274     ;;
4275
4276   * )
4277     func_fatal_error "unknown operation mode --$mode" ;;
4278 esac
4279
4280 rm -rf "$tmp"
4281 # Undo the effect of the previous 'trap' command. Some shellology:
4282 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
4283 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
4284 # exit); for the others we need to call 'exit' explicitly. The value of $? is
4285 # 128 + signal number and is set before the trap-registered command is run.
4286 trap '' 0
4287 trap 'func_exit $?' 1 2 3 13 15
4288
4289 exit 0
4290
4291 # Local Variables:
4292 # indent-tabs-mode: nil
4293 # whitespace-check-buffer-indent: nil
4294 # End: