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