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