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