Fix broken build of replacement for Windows tmpfile().
[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 excluding
2747   # 'link-warning'. Its lib/* sources (brought in through dependencies of
2748   # *-tests modules) go into $testsbase/. It may contain GPLed source, even if
2749   # --lgpl is specified.
2750   # Determine main module list.
2751   saved_inctests="$inctests"
2752   inctests=""
2753   modules="$specified_modules"
2754   func_modules_transitive_closure
2755   main_modules="$modules"
2756   inctests="$saved_inctests"
2757   if test $verbose -ge 1; then
2758     echo "Main module list:"
2759     echo "$main_modules" | sed -e 's/^/  /'
2760   fi
2761   # Determine tests-related module list.
2762   echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules
2763   sed_remove_link_warning='/^link-warning$/d'
2764   testsrelated_modules=`func_reset_sigpipe; echo "$main_modules" | LC_ALL=C sort -u | sed -e "$sed_remove_link_warning" | LC_ALL=C join -v 2 - "$tmp"/final-modules`
2765   if test $verbose -ge 1; then
2766     echo "Tests-related module list:"
2767     echo "$testsrelated_modules" | sed -e 's/^/  /'
2768   fi
2769
2770   # Add the dummy module to the main module list if needed.
2771   modules="$main_modules"
2772   func_modules_add_dummy
2773   main_modules="$modules"
2774
2775   # Determine whether a $testsbase/libtests.a is needed.
2776   use_libtests=false
2777   for module in $testsrelated_modules; do
2778     func_verify_nontests_module
2779     if test -n "$module"; then
2780       all_files=`func_get_filelist $module`
2781       # Test whether some file in $all_files lies in lib/.
2782       for f in $all_files; do
2783         case $f in
2784           lib/*)
2785             use_libtests=true
2786             break 2
2787             ;;
2788         esac
2789       done
2790     fi
2791   done
2792
2793   # Add the dummy module to the tests-related module list if needed.
2794   if $use_libtests; then
2795     modules="$testsrelated_modules"
2796     func_modules_add_dummy
2797     testsrelated_modules="$modules"
2798   fi
2799
2800   # If --lgpl, verify that the licenses of modules are compatible.
2801   if test -n "$lgpl"; then
2802     license_incompatibilities=
2803     for module in $main_modules; do
2804       license=`func_get_license $module`
2805       case $license in
2806         'GPLed build tool') ;;
2807         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
2808         *)
2809           case "$lgpl" in
2810             yes | 3)
2811               case $license in
2812                 LGPL | LGPLv2+) ;;
2813                 *) func_append license_incompatibilities "$module $license$nl" ;;
2814               esac
2815               ;;
2816             2)
2817               case $license in
2818                 LGPLv2+) ;;
2819                 *) func_append license_incompatibilities "$module $license$nl" ;;
2820               esac
2821               ;;
2822             *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2823           esac
2824           ;;
2825       esac
2826     done
2827     if test -n "$license_incompatibilities"; then
2828       # Format the license incompatibilities as a table.
2829       sed_expand_column1_width50_indent17='s,^\([^ ]*\) ,\1                                                   ,
2830 s,^\(.................................................[^ ]*\) *,                 \1 ,'
2831       license_incompatibilities=`echo "$license_incompatibilities" | sed -e "$sed_expand_column1_width50_indent17"`
2832       func_fatal_error "incompatible license on modules:$nl$license_incompatibilities"
2833     fi
2834   fi
2835
2836   # Show banner notice of every module.
2837   modules="$main_modules"
2838   func_modules_notice
2839
2840   # Determine script to apply to imported library files.
2841   sed_transform_lib_file=
2842   for module in $main_modules; do
2843     if test $module = config-h; then
2844       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
2845       sed_transform_lib_file=$sed_transform_lib_file'
2846         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
2847       '
2848       break
2849     fi
2850   done
2851   sed_transform_main_lib_file="$sed_transform_lib_file"
2852   if test -n "$do_copyrights"; then
2853     if test -n "$lgpl"; then
2854       # Update license.
2855       case "$lgpl" in
2856         yes | 3)
2857           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2858             s/GNU General/GNU Lesser General/g
2859           '
2860           ;;
2861         2)
2862           sed_transform_main_lib_file=$sed_transform_main_lib_file'
2863             s/GNU General/GNU Lesser General/g
2864             s/version [23]\([ ,]\)/version 2.1\1/g
2865           '
2866           ;;
2867         *) func_fatal_error "invalid value lgpl=$lgpl" ;;
2868       esac
2869     else
2870       # Update license.
2871       sed_transform_main_lib_file=$sed_transform_main_lib_file'
2872         s/GNU Lesser General/GNU General/g
2873         s/GNU Library General/GNU General/g
2874         s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
2875       '
2876     fi
2877   fi
2878
2879   # Determine script to apply to auxiliary files that go into $auxdir/.
2880   sed_transform_build_aux_file=
2881   if test -n "$do_copyrights"; then
2882     # Update license.
2883     sed_transform_build_aux_file=$sed_transform_build_aux_file'
2884       s/GNU Lesser General/GNU General/g
2885       s/GNU Library General/GNU General/g
2886       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
2887     '
2888   fi
2889
2890   # Determine script to apply to library files that go into $testsbase/.
2891   sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
2892   if test -n "$do_copyrights"; then
2893     # Update license.
2894     sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
2895       s/GNU Lesser General/GNU General/g
2896       s/GNU Library General/GNU General/g
2897       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
2898     '
2899   fi
2900
2901   # Determine the final file lists.
2902   # They must be computed separately, because files in lib/* go into
2903   # $sourcebase/ if they are in the main file list but into $testsbase/
2904   # if they are in the tests-related file list. Furthermore lib/dummy.c
2905   # can be in both.
2906   # Determine final main file list.
2907   modules="$main_modules"
2908   func_modules_to_filelist
2909   main_files="$files"
2910   # Determine final tests-related file list.
2911   modules="$testsrelated_modules"
2912   func_modules_to_filelist
2913   testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'`
2914   # Merge both file lists.
2915   sed_remove_empty_lines='/^$/d'
2916   files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u`
2917   if test $verbose -ge 0; then
2918     echo "File list:"
2919     sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,'
2920     echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/  /'
2921   fi
2922
2923   test -n "$files" \
2924     || func_fatal_error "refusing to do nothing"
2925
2926   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
2927   new_files="$files m4/gnulib-tool.m4"
2928   old_files="$cached_files"
2929   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
2930     func_append old_files " m4/gnulib-tool.m4"
2931   fi
2932
2933   rewritten='%REWRITTEN%'
2934   sed_rewrite_old_files="\
2935     s,^build-aux/,$rewritten$auxdir/,
2936     s,^doc/,$rewritten$cached_docbase/,
2937     s,^lib/,$rewritten$cached_sourcebase/,
2938     s,^m4/,$rewritten$cached_m4base/,
2939     s,^tests/,$rewritten$cached_testsbase/,
2940     s,^tests=lib/,$rewritten$cached_testsbase/,
2941     s,^top/,$rewritten,
2942     s,^$rewritten,,"
2943   sed_rewrite_new_files="\
2944     s,^build-aux/,$rewritten$auxdir/,
2945     s,^doc/,$rewritten$docbase/,
2946     s,^lib/,$rewritten$sourcebase/,
2947     s,^m4/,$rewritten$m4base/,
2948     s,^tests/,$rewritten$testsbase/,
2949     s,^tests=lib/,$rewritten$testsbase/,
2950     s,^top/,$rewritten,
2951     s,^$rewritten,,"
2952
2953   # Create directories.
2954   { echo "$sourcebase"
2955     echo "$m4base"
2956     if test -n "$pobase"; then
2957       echo "$pobase"
2958     fi
2959     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
2960     if test -n "$docfiles"; then
2961       echo "$docbase"
2962     fi
2963     if test -n "$inctests"; then
2964       echo "$testsbase"
2965     fi
2966     echo "$auxdir"
2967     for f in $files; do echo $f; done \
2968       | sed -e "$sed_rewrite_new_files" \
2969       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
2970       | LC_ALL=C sort -u
2971   } > "$tmp"/dirs
2972   { # Rearrange file descriptors. Needed because "while ... done < ..."
2973     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
2974     exec 5<&0 < "$tmp"/dirs
2975     while read d; do
2976       if test ! -d "$destdir/$d"; then
2977         if $doit; then
2978           echo "Creating directory $destdir/$d"
2979           mkdir -p "$destdir/$d" || func_fatal_error "failed"
2980         else
2981           echo "Create directory $destdir/$d"
2982         fi
2983       fi
2984     done
2985     exec 0<&5 5<&-
2986   }
2987
2988   # Copy files or make symbolic links. Remove obsolete files.
2989   added_files=''
2990   removed_files=''
2991   delimiter='   '
2992   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2993   # representing the files according to the last gnulib-tool invocation.
2994   for f in $old_files; do echo $f; done \
2995     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
2996     | LC_ALL=C sort \
2997     > "$tmp"/old-files
2998   # Construct a table with 2 columns: rewritten-file-name original-file-name,
2999   # representing the files after this gnulib-tool invocation.
3000   for f in $new_files; do echo $f; done \
3001     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
3002     | LC_ALL=C sort \
3003     > "$tmp"/new-files
3004   # First the files that are in old-files, but not in new-files:
3005   sed_take_first_column='s,'"$delimiter"'.*,,'
3006   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
3007     # Remove the file. Do nothing if the user already removed it.
3008     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
3009       if $doit; then
3010         echo "Removing file $g (backup in ${g}~)"
3011         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
3012       else
3013         echo "Remove file $g (backup in ${g}~)"
3014       fi
3015       func_append removed_files "$g$nl"
3016     fi
3017   done
3018   # func_add_or_update handles a file that ought to be present afterwards.
3019   # Uses parameters
3020   # - f             the original file name
3021   # - g             the rewritten file name
3022   # - already_present  nonempty if the file should already exist, empty
3023   #                    otherwise
3024   func_add_or_update ()
3025   {
3026     of="$f"
3027     case "$f" in
3028       tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
3029     esac
3030     func_dest_tmpfilename "$g"
3031     func_lookup_file "$f"
3032     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
3033     if test -n "$sed_transform_main_lib_file"; then
3034       case "$of" in
3035         lib/*)
3036           sed -e "$sed_transform_main_lib_file" \
3037             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
3038           ;;
3039       esac
3040     fi
3041     if test -n "$sed_transform_build_aux_file"; then
3042       case "$of" in
3043         build-aux/*)
3044           sed -e "$sed_transform_build_aux_file" \
3045             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
3046           ;;
3047       esac
3048     fi
3049     if test -n "$sed_transform_testsrelated_lib_file"; then
3050       case "$of" in
3051         tests=lib/*)
3052           sed -e "$sed_transform_testsrelated_lib_file" \
3053             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
3054           ;;
3055       esac
3056     fi
3057     if test -f "$destdir/$g"; then
3058       # The file already exists.
3059       func_update_file
3060     else
3061       # Install the file.
3062       # Don't protest if the file should be there but isn't: it happens
3063       # frequently that developers don't put autogenerated files into CVS.
3064       func_add_file
3065       func_append added_files "$g$nl"
3066     fi
3067     rm -f "$tmpfile"
3068   }
3069   # Then the files that are in new-files, but not in old-files:
3070   sed_take_last_column='s,^.*'"$delimiter"',,'
3071   already_present=
3072   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
3073     | sed -e "$sed_take_last_column" \
3074     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
3075   { # Rearrange file descriptors. Needed because "while ... done < ..."
3076     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3077     exec 5<&0 < "$tmp"/added-files
3078     while read g f; do
3079       func_add_or_update
3080     done
3081     exec 0<&5 5<&-
3082   }
3083   # Then the files that are in new-files and in old-files:
3084   already_present=true
3085   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
3086     | sed -e "$sed_take_last_column" \
3087     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
3088   { # Rearrange file descriptors. Needed because "while ... done < ..."
3089     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3090     exec 5<&0 < "$tmp"/kept-files
3091     while read g f; do
3092       func_add_or_update
3093     done
3094     exec 0<&5 5<&-
3095   }
3096
3097   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
3098   actioncmd="gnulib-tool --import"
3099   func_append actioncmd " --dir=$destdir"
3100   if test -n "$local_gnulib_dir"; then
3101     func_append actioncmd " --local-dir=$local_gnulib_dir"
3102   fi
3103   func_append actioncmd " --lib=$libname"
3104   func_append actioncmd " --source-base=$sourcebase"
3105   func_append actioncmd " --m4-base=$m4base"
3106   if test -n "$pobase"; then
3107     func_append actioncmd " --po-base=$pobase"
3108   fi
3109   func_append actioncmd " --doc-base=$docbase"
3110   func_append actioncmd " --tests-base=$testsbase"
3111   func_append actioncmd " --aux-dir=$auxdir"
3112   if test -n "$inctests"; then
3113     func_append actioncmd " --with-tests"
3114   fi
3115   if test -n "$incobsolete"; then
3116     func_append actioncmd " --with-obsolete"
3117   fi
3118   for module in $avoidlist; do
3119     func_append actioncmd " --avoid=$module"
3120   done
3121   if test -n "$lgpl"; then
3122     if test "$lgpl" = yes; then
3123       func_append actioncmd " --lgpl"
3124     else
3125       func_append actioncmd " --lgpl=$lgpl"
3126     fi
3127   fi
3128   if test -n "$makefile_name"; then
3129     func_append actioncmd " --makefile-name=$makefile_name"
3130   fi
3131   if test "$libtool" = true; then
3132     func_append actioncmd " --libtool"
3133   else
3134     func_append actioncmd " --no-libtool"
3135   fi
3136   func_append actioncmd " --macro-prefix=$macro_prefix"
3137   if test -n "$po_domain"; then
3138     func_append actioncmd " --po-domain=$po_domain"
3139   fi
3140   if test -n "$vc_files"; then
3141     if test "$vc_files" = true; then
3142       func_append actioncmd " --vc-files"
3143     else
3144       func_append actioncmd " --no-vc-files"
3145     fi
3146   fi
3147   func_append actioncmd " `echo $specified_modules`"
3148
3149   # Default the makefile name to Makefile.am.
3150   if test -n "$makefile_name"; then
3151     makefile_am=$makefile_name
3152   else
3153     makefile_am=Makefile.am
3154   fi
3155
3156   # Create normal Makefile.ams.
3157   for_test=false
3158
3159   # Setup list of Makefile.am edits that are to be performed afterwards.
3160   # Some of these edits apply to files that we will generate; others are
3161   # under the responsibility of the developer.
3162   makefile_am_edits=0
3163   # func_note_Makefile_am_edit dir var value
3164   # remembers that ${dir}Makefile.am needs to be edited to that ${var} mentions
3165   # ${value}.
3166   func_note_Makefile_am_edit ()
3167   {
3168     makefile_am_edits=`expr $makefile_am_edits + 1`
3169     eval makefile_am_edit${makefile_am_edits}_dir=\"\$1\"
3170     eval makefile_am_edit${makefile_am_edits}_var=\"\$2\"
3171     eval makefile_am_edit${makefile_am_edits}_val=\"\$3\"
3172   }
3173   if test "$makefile_am" = Makefile.am; then
3174     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
3175     sourcebase_base=`basename "$sourcebase"`
3176     func_note_Makefile_am_edit "$sourcebase_dir" SUBDIRS "$sourcebase_base"
3177   fi
3178   if test -n "$pobase"; then
3179     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
3180     pobase_base=`basename "$pobase"`
3181     func_note_Makefile_am_edit "$pobase_dir" SUBDIRS "$pobase_base"
3182   fi
3183   if test -n "$inctests"; then
3184     if test "$makefile_am" = Makefile.am; then
3185       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
3186       testsbase_base=`basename "$testsbase"`
3187       func_note_Makefile_am_edit "$testsbase_dir" SUBDIRS "$testsbase_base"
3188     fi
3189   fi
3190   func_note_Makefile_am_edit "" ACLOCAL_AMFLAGS "-I ${m4base}"
3191   {
3192     # Find the first parent directory of $m4base that contains or will contain
3193     # a Makefile.am.
3194     sed_last='s,^.*/\([^/][^/]*\)//*$,\1/,
3195 s,//*$,/,'
3196     sed_butlast='s,[^/][^/]*//*$,,'
3197     dir1="${m4base}/"; dir2=""
3198     while test -n "$dir1" \
3199           && ! { test -f "${destdir}/${dir1}Makefile.am" \
3200                  || test "${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
3201                  || test "./${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
3202                  || { test -n "$inctests" \
3203                       && { test "${dir1}Makefile.am" = "$testsbase/$makefile_am" \
3204                            || test "./${dir1}Makefile.am" = "$testsbase/$makefile_am"; }; }; }; do
3205       dir2=`echo "$dir1" | sed -e "$sed_last"`"$dir2"
3206       dir1=`echo "$dir1" | sed -e "$sed_butlast"`
3207     done
3208     func_note_Makefile_am_edit "$dir1" EXTRA_DIST "${dir2}gnulib-cache.m4"
3209   }
3210
3211   # Create library makefile.
3212   func_dest_tmpfilename $sourcebase/$makefile_am
3213   destfile="$sourcebase/$makefile_am"
3214   modules="$main_modules"
3215   func_emit_lib_Makefile_am > "$tmpfile"
3216   if test -f "$destdir"/$sourcebase/$makefile_am; then
3217     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
3218       rm -f "$tmpfile"
3219     else
3220       if $doit; then
3221         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
3222         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
3223         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
3224       else
3225         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
3226         rm -f "$tmpfile"
3227       fi
3228     fi
3229   else
3230     if $doit; then
3231       echo "Creating $sourcebase/$makefile_am"
3232       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
3233     else
3234       echo "Create $sourcebase/$makefile_am"
3235       rm -f "$tmpfile"
3236     fi
3237     func_append added_files "$sourcebase/$makefile_am$nl"
3238   fi
3239
3240   # Create po/ directory.
3241   if test -n "$pobase"; then
3242     # Create po makefile and auxiliary files.
3243     for file in Makefile.in.in remove-potcdate.sin; do
3244       func_dest_tmpfilename $pobase/$file
3245       func_lookup_file build-aux/po/$file
3246       cat "$lookedup_file" > "$tmpfile"
3247       if test -f "$destdir"/$pobase/$file; then
3248         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
3249           rm -f "$tmpfile"
3250         else
3251           if $doit; then
3252             echo "Updating $pobase/$file (backup in $pobase/$file~)"
3253             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
3254             mv -f "$tmpfile" "$destdir"/$pobase/$file
3255           else
3256             echo "Update $pobase/$file (backup in $pobase/$file~)"
3257             rm -f "$tmpfile"
3258           fi
3259         fi
3260       else
3261         if $doit; then
3262           echo "Creating $pobase/$file"
3263           mv -f "$tmpfile" "$destdir"/$pobase/$file
3264         else
3265           echo "Create $pobase/$file"
3266           rm -f "$tmpfile"
3267         fi
3268         func_append added_files "$pobase/$file$nl"
3269       fi
3270     done
3271     # Create po makefile parameterization, part 1.
3272     func_dest_tmpfilename $pobase/Makevars
3273     func_emit_po_Makevars > "$tmpfile"
3274     if test -f "$destdir"/$pobase/Makevars; then
3275       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
3276         rm -f "$tmpfile"
3277       else
3278         if $doit; then
3279           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
3280           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
3281           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
3282         else
3283           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
3284           rm -f "$tmpfile"
3285         fi
3286       fi
3287     else
3288       if $doit; then
3289         echo "Creating $pobase/Makevars"
3290         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
3291       else
3292         echo "Create $pobase/Makevars"
3293         rm -f "$tmpfile"
3294       fi
3295       func_append added_files "$pobase/Makevars$nl"
3296     fi
3297     # Create po makefile parameterization, part 2.
3298     func_dest_tmpfilename $pobase/POTFILES.in
3299     func_emit_po_POTFILES_in > "$tmpfile"
3300     if test -f "$destdir"/$pobase/POTFILES.in; then
3301       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
3302         rm -f "$tmpfile"
3303       else
3304         if $doit; then
3305           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
3306           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
3307           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
3308         else
3309           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
3310           rm -f "$tmpfile"
3311         fi
3312       fi
3313     else
3314       if $doit; then
3315         echo "Creating $pobase/POTFILES.in"
3316         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
3317       else
3318         echo "Create $pobase/POTFILES.in"
3319         rm -f "$tmpfile"
3320       fi
3321       func_append added_files "$pobase/POTFILES.in$nl"
3322     fi
3323     # Fetch PO files.
3324     TP_URL="http://translationproject.org/latest/"
3325     TP_RSYNC_URI="translationproject.org::tp/latest/"
3326     if $doit; then
3327       echo "Fetching gnulib PO files from $TP_URL"
3328       (cd "$destdir"/$pobase \
3329        && { # Prefer rsync over wget if it is available, since it consumes
3330             # less network bandwidth, due to compression.
3331             if type rsync 2>/dev/null | grep / > /dev/null; then
3332               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
3333             else
3334               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
3335             fi
3336           }
3337       )
3338     else
3339       echo "Fetch gnulib PO files from $TP_URL"
3340     fi
3341     # Create po/LINGUAS.
3342     if $doit; then
3343       func_dest_tmpfilename $pobase/LINGUAS
3344       (cd "$destdir"/$pobase \
3345        && { echo '# Set of available languages.'
3346             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
3347           }
3348       ) > "$tmpfile"
3349       if test -f "$destdir"/$pobase/LINGUAS; then
3350         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
3351           rm -f "$tmpfile"
3352         else
3353           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
3354           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
3355           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
3356         fi
3357       else
3358         echo "Creating $pobase/LINGUAS"
3359         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
3360         func_append added_files "$pobase/LINGUAS$nl"
3361       fi
3362     else
3363       if test -f "$destdir"/$pobase/LINGUAS; then
3364         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
3365       else
3366         echo "Create $pobase/LINGUAS"
3367       fi
3368     fi
3369   fi
3370
3371   # Create m4/gnulib-cache.m4.
3372   func_dest_tmpfilename $m4base/gnulib-cache.m4
3373   (
3374     func_emit_copyright_notice
3375     echo "#"
3376     echo "# This file represents the specification of how gnulib-tool is used."
3377     echo "# It acts as a cache: It is written and read by gnulib-tool."
3378     echo "# In projects using CVS, this file is meant to be stored in CVS,"
3379     echo "# like the configure.ac and various Makefile.am files."
3380     echo
3381     echo
3382     echo "# Specification in the form of a command-line invocation:"
3383     echo "#   $actioncmd"
3384     echo
3385     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
3386     # Store the local_gnulib_dir relative to destdir.
3387     case "$local_gnulib_dir" in
3388       "" | /*)
3389         relative_local_gnulib_dir="$local_gnulib_dir" ;;
3390       * )
3391         case "$destdir" in
3392           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
3393           *)
3394             # destdir, local_gnulib_dir are both relative.
3395             func_relativize "$destdir" "$local_gnulib_dir"
3396             relative_local_gnulib_dir="$reldir" ;;
3397         esac ;;
3398     esac
3399     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
3400     echo "gl_MODULES(["
3401     echo "$specified_modules" | sed 's/^/  /g'
3402     echo "])"
3403     test -z "$incobsolete" || echo "gl_WITH_OBSOLETE"
3404     echo "gl_AVOID([$avoidlist])"
3405     echo "gl_SOURCE_BASE([$sourcebase])"
3406     echo "gl_M4_BASE([$m4base])"
3407     echo "gl_PO_BASE([$pobase])"
3408     echo "gl_DOC_BASE([$docbase])"
3409     echo "gl_TESTS_BASE([$testsbase])"
3410     test -z "$inctests" || echo "gl_WITH_TESTS"
3411     echo "gl_LIB([$libname])"
3412     if test -n "$lgpl"; then
3413       if test "$lgpl" = yes; then
3414         echo "gl_LGPL"
3415       else
3416         echo "gl_LGPL([$lgpl])"
3417       fi
3418     fi
3419     echo "gl_MAKEFILE_NAME([$makefile_name])"
3420     if test "$libtool" = true; then
3421       echo "gl_LIBTOOL"
3422     fi
3423     echo "gl_MACRO_PREFIX([$macro_prefix])"
3424     echo "gl_PO_DOMAIN([$po_domain])"
3425     if test -n "$vc_files"; then
3426       echo "gl_VC_FILES([$vc_files])"
3427     fi
3428   ) > "$tmpfile"
3429   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
3430     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
3431       rm -f "$tmpfile"
3432     else
3433       if $doit; then
3434         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3435         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
3436         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3437       else
3438         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
3439         if false; then
3440           cat "$tmpfile"
3441           echo
3442           echo "# gnulib-cache.m4 ends here"
3443         fi
3444         rm -f "$tmpfile"
3445       fi
3446     fi
3447   else
3448     if $doit; then
3449       echo "Creating $m4base/gnulib-cache.m4"
3450       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
3451     else
3452       echo "Create $m4base/gnulib-cache.m4"
3453       cat "$tmpfile"
3454       rm -f "$tmpfile"
3455     fi
3456   fi
3457
3458   # Create m4/gnulib-comp.m4.
3459   func_dest_tmpfilename $m4base/gnulib-comp.m4
3460   (
3461     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
3462     func_emit_copyright_notice
3463     echo "#"
3464     echo "# This file represents the compiled summary of the specification in"
3465     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
3466     echo "# to be invoked from configure.ac."
3467     echo "# In projects using CVS, this file can be treated like other built files."
3468     echo
3469     echo
3470     echo "# This macro should be invoked from $configure_ac, in the section"
3471     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
3472     echo "# any checks for libraries, header files, types and library functions."
3473     echo "AC_DEFUN([${macro_prefix}_EARLY],"
3474     echo "["
3475     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
3476     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
3477     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
3478     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
3479     echo "  AC_REQUIRE([AC_PROG_RANLIB])"
3480     if test -n "$uses_subdirs"; then
3481       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
3482     fi
3483     for module in $final_modules; do
3484       func_verify_module
3485       if test -n "$module"; then
3486         func_get_autoconf_early_snippet "$module"
3487       fi
3488     done \
3489       | sed -e '/^$/d;' -e 's/^/  /'
3490     echo "])"
3491     echo
3492     echo "# This macro should be invoked from $configure_ac, in the section"
3493     echo "# \"Check for header files, types and library functions\"."
3494     echo "AC_DEFUN([${macro_prefix}_INIT],"
3495     echo "["
3496     if test "$libtool" = true; then
3497       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
3498       echo "  gl_cond_libtool=true"
3499     else
3500       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
3501       echo "  gl_cond_libtool=false"
3502       echo "  gl_libdeps="
3503       echo "  gl_ltlibdeps="
3504     fi
3505     if test "$auxdir" != "build-aux"; then
3506       sed_replace_build_aux='
3507         :a
3508         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
3509           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
3510           ba
3511         }'
3512     else
3513       sed_replace_build_aux="$sed_noop"
3514     fi
3515     func_emit_initmacro_start $macro_prefix
3516     echo "  gl_source_base='$sourcebase'"
3517     for module in $main_modules; do
3518       func_verify_module
3519       if test -n "$module"; then
3520         func_get_autoconf_snippet "$module" \
3521           | sed -e '/^$/d;' -e 's/^/  /' \
3522                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3523                 -e "$sed_replace_build_aux"
3524         if test "$module" = 'alloca' && test "$libtool" = true; then
3525           echo 'changequote(,)dnl'
3526           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
3527           echo 'changequote([, ])dnl'
3528           echo 'AC_SUBST([LTALLOCA])'
3529         fi
3530       fi
3531     done
3532     func_emit_initmacro_end $macro_prefix
3533     echo "  gltests_libdeps="
3534     echo "  gltests_ltlibdeps="
3535     func_emit_initmacro_start ${macro_prefix}tests
3536     echo "  gl_source_base='$testsbase'"
3537     for module in $testsrelated_modules; do
3538       func_verify_module
3539       if test -n "$module"; then
3540         func_get_autoconf_snippet "$module" \
3541           | sed -e '/^$/d;' -e 's/^/  /' \
3542                 -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' \
3543                 -e "$sed_replace_build_aux" \
3544                 -e 's/\$gl_cond_libtool/false/g' \
3545                 -e 's/gl_libdeps/gltests_libdeps/g' \
3546                 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
3547       fi
3548     done
3549     func_emit_initmacro_end ${macro_prefix}tests
3550     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
3551     # created using libtool, because libtool already handles the dependencies.
3552     if test "$libtool" != true; then
3553       libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
3554       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
3555       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
3556       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
3557       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
3558     fi
3559     if $use_libtests; then
3560       echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
3561       echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
3562     fi
3563     echo "])"
3564     func_emit_initmacro_done $macro_prefix $sourcebase
3565     func_emit_initmacro_done ${macro_prefix}tests $testsbase
3566     echo
3567     echo "# This macro records the list of files which have been installed by"
3568     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
3569     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
3570     echo "$files" | sed -e 's,^,  ,'
3571     echo "])"
3572   ) > "$tmpfile"
3573   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
3574     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
3575       rm -f "$tmpfile"
3576     else
3577       if $doit; then
3578         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3579         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
3580         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3581       else
3582         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
3583         if false; then
3584           cat "$tmpfile"
3585           echo
3586           echo "# gnulib-comp.m4 ends here"
3587         fi
3588         rm -f "$tmpfile"
3589       fi
3590     fi
3591   else
3592     if $doit; then
3593       echo "Creating $m4base/gnulib-comp.m4"
3594       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
3595     else
3596       echo "Create $m4base/gnulib-comp.m4"
3597       cat "$tmpfile"
3598       rm -f "$tmpfile"
3599     fi
3600   fi
3601
3602   if test -n "$inctests"; then
3603     # Create tests makefile.
3604     func_dest_tmpfilename $testsbase/$makefile_am
3605     destfile="$testsbase/$makefile_am"
3606     modules="$testsrelated_modules"
3607     func_emit_tests_Makefile_am > "$tmpfile"
3608     if test -f "$destdir"/$testsbase/$makefile_am; then
3609       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
3610         rm -f "$tmpfile"
3611       else
3612         if $doit; then
3613           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3614           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
3615           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3616         else
3617           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
3618           rm -f "$tmpfile"
3619         fi
3620       fi
3621     else
3622       if $doit; then
3623         echo "Creating $testsbase/$makefile_am"
3624         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
3625       else
3626         echo "Create $testsbase/$makefile_am"
3627         rm -f "$tmpfile"
3628       fi
3629     func_append added_files "$testsbase/$makefile_am$nl"
3630     fi
3631   fi
3632
3633   if test "$vc_files" != false; then
3634     # Update the .cvsignore and .gitignore files.
3635     { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
3636       echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
3637       # Treat gnulib-comp.m4 like an added file, even if it already existed.
3638       echo "$m4base/|A|gnulib-comp.m4"
3639     } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
3640     { # Rearrange file descriptors. Needed because "while ... done < ..."
3641       # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3642       exec 5<&0 < "$tmp"/fileset-changes
3643       func_update_ignorelist ()
3644       {
3645         ignore="$1"
3646         if test "$ignore" = .gitignore; then
3647           # In a .gitignore file, "foo" applies to the current directory and all
3648           # subdirectories, whereas "/foo" applies to the current directory only.
3649           anchor='/'
3650           escaped_anchor='\/'
3651           doubly_escaped_anchor='\\/'
3652         else
3653           anchor=''
3654           escaped_anchor=''
3655           doubly_escaped_anchor=''
3656         fi
3657         if test -f "$destdir/$dir$ignore"; then
3658           if test -n "$dir_added" || test -n "$dir_removed"; then
3659             sed -e "s|^$anchor||" < "$destdir/$dir$ignore" | LC_ALL=C sort > "$tmp"/ignore
3660             (func_reset_sigpipe
3661              echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
3662                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-added
3663              echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
3664                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-removed
3665             )
3666             if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
3667               if $doit; then
3668                 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3669                 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
3670                 { sed -e 's,/,\\/,g' -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed
3671                   if test -n "$anchor"; then sed -e 's,/,\\/,g' -e "s,^,/^${doubly_escaped_anchor}," -e 's,$,$/d,' < "$tmp"/ignore-removed; fi
3672                 } > "$tmp"/sed-ignore-removed
3673                 { cat "$destdir/$dir$ignore"~
3674                   sed -e "s|^|$anchor|" < "$tmp"/ignore-added
3675                 } | sed -f "$tmp"/sed-ignore-removed \
3676                   > "$destdir/$dir$ignore"
3677               else
3678                 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
3679               fi
3680             fi
3681           fi
3682         else
3683           if test -n "$dir_added"; then
3684             if $doit; then
3685               echo "Creating $destdir/$dir$ignore"
3686               {
3687                 if test "$ignore" = .cvsignore; then
3688                   echo ".deps"
3689                   # Automake generates Makefile rules that create .dirstamp files.
3690                   echo ".dirstamp"
3691                 fi
3692                 echo "$dir_added" | sed -e '/^$/d' -e "s|^|$anchor|" | LC_ALL=C sort -u
3693               } > "$destdir/$dir$ignore"
3694             else
3695               echo "Create $destdir/$dir$ignore"
3696             fi
3697           fi
3698         fi
3699       }
3700       func_done_dir ()
3701       {
3702         dir="$1"
3703         dir_added="$2"
3704         dir_removed="$3"
3705         if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
3706           func_update_ignorelist .cvsignore
3707         fi
3708         if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
3709           func_update_ignorelist .gitignore
3710         fi
3711       }
3712       last_dir=
3713       last_dir_added=
3714       last_dir_removed=
3715       while read line; do
3716         # Why not ''read next_dir op file'' ? Because the dir column can be empty.
3717         next_dir=`echo "$line" | sed -e 's,|.*,,'`
3718         op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
3719         file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
3720         if test "$next_dir" != "$last_dir"; then
3721           func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3722           last_dir="$next_dir"
3723           last_dir_added=
3724           last_dir_removed=
3725         fi
3726         case $op in
3727           A) func_append last_dir_added "$file$nl";;
3728           R) func_append last_dir_removed "$file$nl";;
3729         esac
3730       done
3731       func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
3732       exec 0<&5 5<&-
3733     }
3734   fi
3735
3736   echo "Finished."
3737   echo
3738   echo "You may need to add #include directives for the following .h files."
3739   # Intersect $specified_modules and $main_modules
3740   # (since $specified_modules is not necessarily of subset of $main_modules
3741   # - some may have been skipped through --avoid, and since the elements of
3742   # $main_modules but not in $specified_modules can go away without explicit
3743   # notice - through changes in the module dependencies).
3744   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
3745   echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
3746   # First the #include <...> directives without #ifs, sorted for convenience,
3747   # then the #include "..." directives without #ifs, sorted for convenience,
3748   # then the #include directives that are surrounded by #ifs. Not sorted.
3749   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
3750     include_directive=`func_get_include_directive "$module"`
3751     case "$nl$include_directive" in
3752       *"$nl#if"*)
3753         echo "$include_directive" 1>&5
3754         ;;
3755       *)
3756         echo "$include_directive" | grep -v 'include "' 1>&6
3757         echo "$include_directive" | grep 'include "' 1>&7
3758         ;;
3759     esac
3760   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
3761   (
3762    LC_ALL=C sort -u "$tmp"/include-angles
3763    LC_ALL=C sort -u "$tmp"/include-quotes
3764    cat "$tmp"/include-if
3765   ) | sed -e '/^$/d' -e 's/^/  /'
3766   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
3767
3768   for module in $main_modules; do
3769     func_get_link_directive "$module"
3770   done \
3771     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
3772   if test `wc -l < "$tmp"/link` != 0; then
3773     echo
3774     echo "You may need to use the following Makefile variables when linking."
3775     echo "Use them in <program>_LDADD when linking a program, or"
3776     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
3777     cat "$tmp"/link
3778   fi
3779   rm -f "$tmp"/link
3780
3781   echo
3782   echo "Don't forget to"
3783   if test "$makefile_am" = Makefile.am; then
3784     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3785   else
3786     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
3787   fi
3788   if test -n "$pobase"; then
3789     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
3790   fi
3791   if test -n "$inctests"; then
3792     if test "$makefile_am" = Makefile.am; then
3793       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
3794     else
3795       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
3796     fi
3797   fi
3798   edit=0
3799   while test $edit != $makefile_am_edits; do
3800     edit=`expr $edit + 1`
3801     eval dir=\"\$makefile_am_edit${edit}_dir\"
3802     eval var=\"\$makefile_am_edit${edit}_var\"
3803     eval val=\"\$makefile_am_edit${edit}_val\"
3804     if test -n "$var"; then
3805       echo "  - mention \"${val}\" in ${var} in ${dir}Makefile.am,"
3806     fi
3807   done
3808   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
3809   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
3810 }
3811
3812 # func_create_testdir testdir modules
3813 # Input:
3814 # - local_gnulib_dir  from --local-dir
3815 # - auxdir          directory relative to destdir where to place build aux files
3816 func_create_testdir ()
3817 {
3818   testdir="$1"
3819   modules="$2"
3820   if test -z "$modules"; then
3821     # All modules together.
3822     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
3823     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
3824     modules=`func_all_modules`
3825     modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist) ;; *) echo $m;; esac; done`
3826   fi
3827   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort -u`
3828
3829   # Check that the license of every module is consistent with the license of
3830   # its dependencies.
3831   saved_modules="$modules"
3832   saved_inctests="$inctests"
3833   # When computing transitive closures, don't consider $module to depend on
3834   # $module-tests. Need this becauses tests are implicitly GPL and may depend
3835   # on GPL modules - therefore we don't want a warning in this case.
3836   inctests=""
3837   for requested_module in $saved_modules; do
3838     requested_license=`func_get_license "$requested_module"`
3839     if test "$requested_license" != GPL; then
3840       # Here we use func_modules_transitive_closure, not just
3841       # func_get_dependencies, so that we also detect weird situations like
3842       # an LGPL module which depends on a GPLed build tool module which depends
3843       # on a GPL module.
3844       modules="$requested_module"
3845       func_modules_transitive_closure
3846       for module in $modules; do
3847         license=`func_get_license "$module"`
3848         case "$license" in
3849           'GPLed build tool') ;;
3850           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
3851           *)
3852             case "$requested_license" in
3853               GPLv2+)
3854                 case "$license" in
3855                   GPLv2+ | LGPLv2+) ;;
3856                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3857                 esac
3858                 ;;
3859               LGPL)
3860                 case "$license" in
3861                   LGPL | LGPLv2+) ;;
3862                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3863                 esac
3864                 ;;
3865               LGPLv2+)
3866                 case "$license" in
3867                   LGPLv2+) ;;
3868                   *) echo "warning: module $requested_module depends on a module with an incompatible license: $module" 1>&2 ;;
3869                 esac
3870                 ;;
3871             esac
3872             ;;
3873         esac
3874       done
3875     fi
3876   done
3877   modules="$saved_modules"
3878   inctests="$saved_inctests"
3879
3880   # Subdirectory names.
3881   sourcebase=gllib
3882   m4base=glm4
3883   pobase=
3884   docbase=gldoc
3885   testsbase=gltests
3886   macro_prefix=gl
3887   po_domain=
3888   vc_files=
3889
3890   # Determine final module list.
3891   func_modules_transitive_closure
3892   if test $verbose -ge 0; then
3893     echo "Module list with included dependencies:"
3894     echo "$modules" | sed -e 's/^/  /'
3895   fi
3896
3897   # Add the dummy module if needed.
3898   func_modules_add_dummy
3899
3900   # Show banner notice of every module.
3901   func_modules_notice
3902
3903   # Determine final file list.
3904   func_modules_to_filelist
3905   if test $verbose -ge 0; then
3906     echo "File list:"
3907     echo "$files" | sed -e 's/^/  /'
3908   fi
3909
3910   rewritten='%REWRITTEN%'
3911   sed_rewrite_files="\
3912     s,^build-aux/,$rewritten$auxdir/,
3913     s,^doc/,$rewritten$docbase/,
3914     s,^lib/,$rewritten$sourcebase/,
3915     s,^m4/,$rewritten$m4base/,
3916     s,^tests/,$rewritten$testsbase/,
3917     s,^top/,$rewritten,
3918     s,^$rewritten,,"
3919
3920   # Create directories.
3921   for f in $files; do echo $f; done \
3922     | sed -e "$sed_rewrite_files" \
3923     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
3924     | LC_ALL=C sort -u \
3925     > "$tmp"/dirs
3926   { # Rearrange file descriptors. Needed because "while ... done < ..."
3927     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3928     exec 5<&0 < "$tmp"/dirs
3929     while read d; do
3930       mkdir -p "$testdir/$d"
3931     done
3932     exec 0<&5 5<&-
3933   }
3934
3935   # Copy files or make symbolic links.
3936   delimiter='   '
3937   for f in $files; do echo $f; done \
3938     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
3939     | LC_ALL=C sort \
3940     > "$tmp"/files
3941   { # Rearrange file descriptors. Needed because "while ... done < ..."
3942     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
3943     exec 5<&0 < "$tmp"/files
3944     while read g f; do
3945       func_lookup_file "$f"
3946       if test -n "$lookedup_tmp"; then
3947         cp -p "$lookedup_file" "$testdir/$g"
3948       else
3949         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
3950         if { test -n "$symbolic" \
3951              || { test -n "$lsymbolic" \
3952                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
3953           func_ln "$lookedup_file" "$testdir/$g"
3954         else
3955           cp -p "$lookedup_file" "$testdir/$g"
3956         fi
3957       fi
3958     done
3959     exec 0<&5 5<&-
3960   }
3961
3962   # Create Makefile.ams that are for testing.
3963   for_test=true
3964
3965   # No special edits are needed.
3966   makefile_am_edits=0
3967
3968   # Create $sourcebase/Makefile.am.
3969   mkdir -p "$testdir/$sourcebase"
3970   destfile="$sourcebase/Makefile.am"
3971   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
3972   any_uses_subdirs="$uses_subdirs"
3973
3974   # Create $m4base/Makefile.am.
3975   mkdir -p "$testdir/$m4base"
3976   (echo "## Process this file with automake to produce Makefile.in."
3977    echo
3978    echo "EXTRA_DIST ="
3979    for f in $files; do
3980      case "$f" in
3981        m4/* )
3982          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
3983      esac
3984    done
3985   ) > "$testdir/$m4base/Makefile.am"
3986
3987   subdirs="$sourcebase $m4base"
3988   subdirs_with_configure_ac=""
3989
3990   if false && test -f "$testdir"/$m4base/gettext.m4; then
3991     # Avoid stupid error message from automake:
3992     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
3993     mkdir -p "$testdir/po"
3994     (echo "## Process this file with automake to produce Makefile.in."
3995     ) > "$testdir/po/Makefile.am"
3996     func_append subdirs " po"
3997   fi
3998
3999   if test -n "$inctests"; then
4000     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
4001     # Viewed from the $testsbase subdirectory, $auxdir is different.
4002     saved_auxdir="$auxdir"
4003     auxdir=`echo "$testsbase/"|sed 's%[^/][^/]*//*%../%g'`"$auxdir"
4004     # Create $testsbase/Makefile.am.
4005     use_libtests=false
4006     destfile="$testsbase/Makefile.am"
4007     func_emit_tests_Makefile_am > "$testdir/$testsbase/Makefile.am"
4008     any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
4009     # Create $testsbase/configure.ac.
4010     (echo "# Process this file with autoconf to produce a configure script."
4011      echo "AC_INIT([dummy], [0])"
4012      echo "AC_CONFIG_AUX_DIR([$auxdir])"
4013      echo "AM_INIT_AUTOMAKE"
4014      echo
4015      echo "AC_CONFIG_HEADERS([config.h])"
4016      echo
4017      echo "AC_PROG_CC"
4018      echo "AC_PROG_INSTALL"
4019      echo "AC_PROG_MAKE_SET"
4020      echo "AC_PROG_RANLIB"
4021      echo
4022      for module in $modules; do
4023        func_verify_module
4024        if test -n "$module"; then
4025          case $module in
4026            gnumakefile | maintainer-makefile)
4027              # These modules are meant to be used only in the top-level directory.
4028              ;;
4029            *)
4030              func_get_autoconf_early_snippet "$module"
4031              ;;
4032          esac
4033        fi
4034      done \
4035        | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
4036      if test "$libtool" = true; then
4037        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
4038        echo "gl_cond_libtool=true"
4039      else
4040        echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
4041        echo "gl_cond_libtool=false"
4042        echo "gl_libdeps="
4043        echo "gl_ltlibdeps="
4044      fi
4045      # Wrap the set of autoconf snippets into an autoconf macro that is then
4046      # invoked. This is needed because autoconf does not support AC_REQUIRE
4047      # at the top level:
4048      #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
4049      # but we want the AC_REQUIRE to have its normal meaning (provide one
4050      # expansion of the required macro before the current point, and only one
4051      # expansion total).
4052      echo "AC_DEFUN([gl_INIT], ["
4053      sed_replace_build_aux='
4054        :a
4055        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
4056          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
4057          ba
4058        }'
4059      func_emit_initmacro_start $macro_prefix
4060      # We don't have explicit ordering constraints between the various
4061      # autoconf snippets. It's cleanest to put those of the library before
4062      # those of the tests.
4063      echo "gl_source_base='../$sourcebase'"
4064      for module in $modules; do
4065        func_verify_nontests_module
4066        if test -n "$module"; then
4067          case $module in
4068            gnumakefile | maintainer-makefile)
4069              # These modules are meant to be used only in the top-level directory.
4070              ;;
4071            *)
4072              func_get_autoconf_snippet "$module" \
4073                | sed -e "$sed_replace_build_aux"
4074              ;;
4075          esac
4076        fi
4077      done
4078      echo "gl_source_base='.'"
4079      for module in $modules; do
4080        func_verify_tests_module
4081        if test -n "$module"; then
4082          func_get_autoconf_snippet "$module" \
4083            | sed -e "$sed_replace_build_aux"
4084        fi
4085      done
4086      func_emit_initmacro_end $macro_prefix
4087      # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
4088      # created using libtool, because libtool already handles the dependencies.
4089      if test "$libtool" != true; then
4090        libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
4091        echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
4092        echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
4093        echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
4094        echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
4095      fi
4096      echo "])"
4097      func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
4098      echo
4099      echo "gl_INIT"
4100      echo
4101      # Usually $testsbase/config.h will be a superset of config.h. Verify this
4102      # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
4103      echo "AH_TOP([#include \"../config.h\"])"
4104      echo
4105      echo "AC_CONFIG_FILES([Makefile])"
4106      echo "AC_OUTPUT"
4107     ) > "$testdir/$testsbase/configure.ac"
4108     auxdir="$saved_auxdir"
4109     func_append subdirs " $testsbase"
4110     subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
4111   fi
4112
4113   # Create Makefile.am.
4114   (echo "## Process this file with automake to produce Makefile.in."
4115    echo
4116    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
4117    echo
4118    echo "SUBDIRS = $subdirs"
4119    echo
4120    echo "ACLOCAL_AMFLAGS = -I $m4base"
4121   ) > "$testdir/Makefile.am"
4122
4123   # Create configure.ac.
4124   (echo "# Process this file with autoconf to produce a configure script."
4125    echo "AC_INIT([dummy], [0])"
4126    if test "$auxdir" != "."; then
4127      echo "AC_CONFIG_AUX_DIR([$auxdir])"
4128    fi
4129    echo "AM_INIT_AUTOMAKE"
4130    echo
4131    echo "AC_CONFIG_HEADERS([config.h])"
4132    echo
4133    echo "AC_PROG_CC"
4134    echo "AC_PROG_INSTALL"
4135    echo "AC_PROG_MAKE_SET"
4136    echo
4137    echo "# For autobuild."
4138    echo "AC_CANONICAL_BUILD"
4139    echo "AC_CANONICAL_HOST"
4140    echo
4141    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
4142    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
4143    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
4144    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
4145    echo
4146    echo "AC_PROG_RANLIB"
4147    echo
4148    if test -n "$any_uses_subdirs"; then
4149      echo "AM_PROG_CC_C_O"
4150      echo
4151    fi
4152    for module in $modules; do
4153      func_verify_nontests_module
4154      if test -n "$module"; then
4155        func_get_autoconf_early_snippet "$module"
4156      fi
4157    done \
4158      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
4159    if test "$libtool" = true; then
4160      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
4161      echo "gl_cond_libtool=true"
4162    else
4163      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
4164      echo "gl_cond_libtool=false"
4165      echo "gl_libdeps="
4166      echo "gl_ltlibdeps="
4167    fi
4168    # Wrap the set of autoconf snippets into an autoconf macro that is then
4169    # invoked. This is needed because autoconf does not support AC_REQUIRE
4170    # at the top level:
4171    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
4172    # but we want the AC_REQUIRE to have its normal meaning (provide one
4173    # expansion of the required macro before the current point, and only one
4174    # expansion total).
4175    echo "AC_DEFUN([gl_INIT], ["
4176    if test "$auxdir" != "build-aux"; then
4177      sed_replace_build_aux='
4178        :a
4179        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
4180          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
4181          ba
4182        }'
4183    else
4184      sed_replace_build_aux="$sed_noop"
4185    fi
4186    func_emit_initmacro_start $macro_prefix
4187    echo "gl_source_base='$sourcebase'"
4188    for module in $modules; do
4189      func_verify_nontests_module
4190      if test -n "$module"; then
4191        func_get_autoconf_snippet "$module" \
4192          | sed -e "$sed_replace_build_aux"
4193      fi
4194    done
4195    func_emit_initmacro_end $macro_prefix
4196    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
4197    # created using libtool, because libtool already handles the dependencies.
4198    if test "$libtool" != true; then
4199      libname_upper=`echo "$libname" | LC_ALL=C tr 'a-z-' 'A-Z_'`
4200      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
4201      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
4202      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
4203      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
4204    fi
4205    echo "])"
4206    func_emit_initmacro_done $macro_prefix $sourcebase
4207    echo
4208    echo "gl_INIT"
4209    echo
4210    if test -n "$subdirs_with_configure_ac"; then
4211      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
4212    fi
4213    makefiles="Makefile"
4214    for d in $subdirs; do
4215      # For subdirs that have a configure.ac by their own, it's the subdir's
4216      # configure.ac which creates the subdir's Makefile.am, not this one.
4217      case " $subdirs_with_configure_ac " in
4218        *" $d "*) ;;
4219        *) func_append makefiles " $d/Makefile" ;;
4220      esac
4221    done
4222    echo "AC_CONFIG_FILES([$makefiles])"
4223    echo "AC_OUTPUT"
4224   ) > "$testdir/configure.ac"
4225
4226   # Create autogenerated files.
4227   (cd "$testdir"
4228    # Do not use "${AUTORECONF} --force --install", because it may invoke
4229    # autopoint, which brings in older versions of some of our .m4 files.
4230    if test -f $m4base/gettext.m4; then
4231      func_execute_command ${AUTOPOINT} --force || func_exit 1
4232      for f in $m4base/*.m4~; do
4233        if test -f $f; then
4234          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
4235        fi
4236      done
4237    fi
4238    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
4239    if ! test -d build-aux; then
4240      func_execute_command mkdir build-aux || func_exit 1
4241    fi
4242    func_execute_command ${AUTOCONF} || func_exit 1
4243    func_execute_command ${AUTOHEADER} || func_exit 1
4244    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
4245   ) || func_exit 1
4246   if test -n "$inctests"; then
4247     # Create autogenerated files.
4248     (cd "$testdir/$testsbase" || func_exit 1
4249      # Do not use "${AUTORECONF} --force --install", because it may invoke
4250      # autopoint, which brings in older versions of some of our .m4 files.
4251      if test -f ../$m4base/gettext.m4; then
4252        func_execute_command ${AUTOPOINT} --force || func_exit 1
4253        for f in ../$m4base/*.m4~; do
4254          if test -f $f; then
4255            mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
4256          fi
4257        done
4258      fi
4259      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
4260      if ! test -d ../build-aux; then
4261        func_execute_command mkdir ../build-aux
4262      fi
4263      func_execute_command ${AUTOCONF} || func_exit 1
4264      func_execute_command ${AUTOHEADER} || func_exit 1
4265      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
4266     ) || func_exit 1
4267   fi
4268   # Need to run configure and make once, to create built files that are to be
4269   # distributed (such as getdate.c).
4270   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
4271   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
4272                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
4273   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
4274   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
4275   # such $(FOO_H) because they don't refer to distributed files.
4276   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
4277   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
4278                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
4279                  | sed -e "$sed_remove_make_variables"`
4280   distributed_built_sources=`for file in $built_sources; do
4281                                case "$cleaned_files" in
4282                                  *" "$file" "*) ;;
4283                                  *) echo $file ;;
4284                                esac;
4285                              done`
4286   if test -n "$distributed_built_sources"; then
4287     (cd "$testdir"
4288      ./configure || func_exit 1
4289        cd "$sourcebase"
4290        echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
4291        $MAKE built_sources || func_exit 1
4292        cd ..
4293      $MAKE distclean || func_exit 1
4294     ) || func_exit 1
4295   fi
4296 }
4297
4298 # func_create_megatestdir megatestdir allmodules
4299 # Input:
4300 # - local_gnulib_dir  from --local-dir
4301 # - auxdir          directory relative to destdir where to place build aux files
4302 func_create_megatestdir ()
4303 {
4304   megatestdir="$1"
4305   allmodules="$2"
4306   if test -z "$allmodules"; then
4307     allmodules=`func_all_modules`
4308   fi
4309
4310   megasubdirs=
4311   # First, all modules one by one.
4312   for onemodule in $allmodules; do
4313     func_create_testdir "$megatestdir/$onemodule" $onemodule
4314     func_append megasubdirs "$onemodule "
4315   done
4316   # Then, all modules all together.
4317   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
4318   allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
4319   func_create_testdir "$megatestdir/ALL" "$allmodules"
4320   func_append megasubdirs "ALL"
4321
4322   # Create autobuild.
4323   cvsdate=`if test -f "$gnulib_dir/CVS/Entries"; then \
4324              vc_witness="$gnulib_dir/CVS/Entries"; \
4325            else \
4326              vc_witness="$gnulib_dir/.git/refs/heads/master"; \
4327            fi; \
4328            sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
4329              | sed -e 's,January,01,'   -e 's,Jan,01,' \
4330                    -e 's,February,02,'  -e 's,Feb,02,' \
4331                    -e 's,March,03,'     -e 's,Mar,03,' \
4332                    -e 's,April,04,'     -e 's,Apr,04,' \
4333                    -e 's,May,05,'                      \
4334                    -e 's,June,06,'      -e 's,Jun,06,' \
4335                    -e 's,July,07,'      -e 's,Jul,07,' \
4336                    -e 's,August,08,'    -e 's,Aug,08,' \
4337                    -e 's,September,09,' -e 's,Sep,09,' \
4338                    -e 's,October,10,'   -e 's,Oct,10,' \
4339                    -e 's,November,11,'  -e 's,Nov,11,' \
4340                    -e 's,December,12,'  -e 's,Dec,12,' \
4341                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
4342                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
4343   (echo '#!/bin/sh'
4344    echo "CVSDATE=$cvsdate"
4345    echo ": \${MAKE=make}"
4346    echo "test -d logs || mkdir logs"
4347    echo "for module in $megasubdirs; do"
4348    echo "  echo \"Working on module \$module...\""
4349    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
4350    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
4351    echo "   echo"
4352    echo "   set -x"
4353    echo "   : autobuild project... \$module"
4354    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
4355    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
4356    echo "   : autobuild hostname... \`hostname\`"
4357    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && \$MAKE && \$MAKE check && \$MAKE distclean"
4358    echo "   echo rc=\$?"
4359    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
4360    echo "done"
4361   ) > "$megatestdir/do-autobuild"
4362   chmod a+x "$megatestdir/do-autobuild"
4363
4364   # Create Makefile.am.
4365   (echo "## Process this file with automake to produce Makefile.in."
4366    echo
4367    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
4368    echo
4369    echo "SUBDIRS = $megasubdirs"
4370    echo
4371    echo "EXTRA_DIST = do-autobuild"
4372   ) > "$megatestdir/Makefile.am"
4373
4374   # Create configure.ac.
4375   (echo "# Process this file with autoconf to produce a configure script."
4376    echo "AC_INIT([dummy], [0])"
4377    if test "$auxdir" != "."; then
4378      echo "AC_CONFIG_AUX_DIR([$auxdir])"
4379    fi
4380    echo "AM_INIT_AUTOMAKE"
4381    echo
4382    echo "AC_PROG_MAKE_SET"
4383    echo
4384    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
4385    echo "AC_CONFIG_FILES([Makefile])"
4386    echo "AC_OUTPUT"
4387   ) > "$megatestdir/configure.ac"
4388
4389   # Create autogenerated files.
4390   (cd "$megatestdir"
4391    # Do not use "${AUTORECONF} --install", because autoreconf operates
4392    # recursively, but the subdirectories are already finished, therefore
4393    # calling autoreconf here would only waste lots of CPU time.
4394    func_execute_command ${ACLOCAL} || func_exit 1
4395    func_execute_command mkdir build-aux
4396    func_execute_command ${AUTOCONF} || func_exit 1
4397    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
4398   ) || func_exit 1
4399 }
4400
4401 case $mode in
4402   "" )
4403     func_fatal_error "no mode specified" ;;
4404
4405   list )
4406     func_all_modules
4407     ;;
4408
4409   import | update )
4410
4411     # Where to import.
4412     if test -z "$destdir"; then
4413       destdir=.
4414     fi
4415     test -d "$destdir" \
4416       || func_fatal_error "destination directory does not exist: $destdir"
4417
4418     # Prefer configure.ac to configure.in.
4419     if test -f "$destdir"/configure.ac; then
4420       configure_ac="$destdir/configure.ac"
4421     else
4422       if test -f "$destdir"/configure.in; then
4423         configure_ac="$destdir/configure.in"
4424       else
4425         func_fatal_error "cannot find $destdir/configure.ac - make sure you run gnulib-tool from within your package's directory"
4426       fi
4427     fi
4428
4429     # Analyze configure.ac.
4430     guessed_auxdir="."
4431     guessed_libtool=false
4432     my_sed_traces='
4433       s,#.*$,,
4434       s,^dnl .*$,,
4435       s, dnl .*$,,
4436       /AC_CONFIG_AUX_DIR/ {
4437         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_auxdir="\1",p
4438       }
4439       /A[CM]_PROG_LIBTOOL/ {
4440         s,^.*$,guessed_libtool=true,p
4441       }'
4442     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
4443
4444     if test -z "$auxdir"; then
4445       auxdir="$guessed_auxdir"
4446     fi
4447
4448     # Determine where to apply func_import.
4449     if test -n "$m4base"; then
4450       # Apply func_import to a particular gnulib directory.
4451       # Any number of additional modules can be given.
4452       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
4453         # First use of gnulib in the given m4base.
4454         test -n "$supplied_libname" || supplied_libname=true
4455         test -n "$sourcebase" || sourcebase="lib"
4456         test -n "$docbase" || docbase="doc"
4457         test -n "$testsbase" || testsbase="tests"
4458         test -n "$macro_prefix" || macro_prefix="gl"
4459       fi
4460       func_import "$*"
4461     else
4462       # Apply func_import to all gnulib directories.
4463       # To get this list of directories, look at Makefile.am. (Not at
4464       # configure, because it may be omitted from CVS. Also, don't run
4465       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
4466       m4dirs=
4467       m4dirs_count=0
4468       if test -f "$destdir"/Makefile.am; then
4469         aclocal_amflags=`sed -n 's/^ACLOCAL_AMFLAGS[     ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
4470         m4dir_is_next=
4471         for arg in $aclocal_amflags; do
4472           if test -n "$m4dir_is_next"; then
4473             # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
4474             case "$arg" in
4475               /*) ;;
4476               *)
4477                 if test -f "$destdir/$arg"/gnulib-cache.m4; then
4478                   func_append m4dirs " $arg"
4479                   m4dirs_count=`expr $m4dirs_count + 1`
4480                 fi
4481                 ;;
4482             esac
4483             m4dir_is_next=
4484           else
4485             if test "X$arg" = "X-I"; then
4486               m4dir_is_next=yes
4487             else
4488               m4dir_is_next=
4489             fi
4490           fi
4491         done
4492       else
4493         # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
4494         if test -f "$destdir"/aclocal.m4; then
4495           sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
4496           sedexpr2='s,^[^/]*$,.,'
4497           sedexpr3='s,/[^/]*$,,'
4498           m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
4499           m4dirs_count=`echo "$m4dirs" | wc -l`
4500         fi
4501       fi
4502       if test $m4dirs_count = 0; then
4503         # First use of gnulib in a package.
4504         # Any number of additional modules can be given.
4505         test -n "$supplied_libname" || supplied_libname=true
4506         test -n "$sourcebase" || sourcebase="lib"
4507         m4base="m4"
4508         test -n "$docbase" || docbase="doc"
4509         test -n "$testsbase" || testsbase="tests"
4510         test -n "$macro_prefix" || macro_prefix="gl"
4511         func_import "$*"
4512       else
4513         if test $m4dirs_count = 1; then
4514           # There's only one use of gnulib here. Assume the user means it.
4515           # Any number of additional modules can be given.
4516           for m4base in $m4dirs; do
4517             func_import "$*"
4518           done
4519         else
4520           # Ambiguous - guess what the user meant.
4521           if test $# = 0; then
4522             # No further arguments. Guess the user wants to update all of them.
4523             for m4base in $m4dirs; do
4524               # Perform func_import in a subshell, so that variable values
4525               # such as
4526               #   local_gnulib_dir, incobsolete, avoidlist, sourcebase, m4base,
4527               #   pobase, docbase, testsbase, inctests, libname, lgpl,
4528               #   makefile_name, libtool, macro_prefix, po_domain, vc_files
4529               # don't propagate from one directory to another.
4530               (func_import) || func_exit 1
4531             done
4532           else
4533             # Really ambiguous.
4534             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
4535           fi
4536         fi
4537       fi
4538     fi
4539     ;;
4540
4541   create-testdir )
4542     if test -z "$destdir"; then
4543       func_fatal_error "please specify --dir option"
4544     fi
4545     mkdir "$destdir"
4546     test -d "$destdir" \
4547       || func_fatal_error "could not create destination directory"
4548     test -n "$auxdir" || auxdir="build-aux"
4549     func_create_testdir "$destdir" "$*"
4550     ;;
4551
4552   create-megatestdir )
4553     if test -z "$destdir"; then
4554       func_fatal_error "please specify --dir option"
4555     fi
4556     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4557     test -n "$auxdir" || auxdir="build-aux"
4558     func_create_megatestdir "$destdir" "$*"
4559     ;;
4560
4561   test )
4562     test -n "$destdir" || destdir=testdir$$
4563     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4564     test -n "$auxdir" || auxdir="build-aux"
4565     func_create_testdir "$destdir" "$*"
4566     cd "$destdir"
4567       mkdir build
4568       cd build
4569         ../configure || func_exit 1
4570         $MAKE || func_exit 1
4571         $MAKE check || func_exit 1
4572         $MAKE distclean || func_exit 1
4573         remaining=`find . -type f -print`
4574         if test -n "$remaining"; then
4575           echo "Remaining files:" $remaining 1>&2
4576           echo "gnulib-tool: *** Stop." 1>&2
4577           func_exit 1
4578         fi
4579       cd ..
4580     cd ..
4581     rm -rf "$destdir"
4582     ;;
4583
4584   megatest )
4585     test -n "$destdir" || destdir=testdir$$
4586     mkdir "$destdir" || func_fatal_error "could not create destination directory"
4587     test -n "$auxdir" || auxdir="build-aux"
4588     func_create_megatestdir "$destdir" "$*"
4589     cd "$destdir"
4590       mkdir build
4591       cd build
4592         ../configure
4593         $MAKE
4594         $MAKE check
4595         $MAKE distclean
4596         remaining=`find . -type f -print`
4597         if test -n "$remaining"; then
4598           echo "Remaining files:" $remaining 1>&2
4599           echo "gnulib-tool: *** Stop." 1>&2
4600           func_exit 1
4601         fi
4602       cd ..
4603     cd ..
4604     rm -rf "$destdir"
4605     ;;
4606
4607   extract-description )
4608     for module
4609     do
4610       func_verify_module
4611       if test -n "$module"; then
4612         func_get_description "$module"
4613       fi
4614     done
4615     ;;
4616
4617   extract-status )
4618     for module
4619     do
4620       func_verify_module
4621       if test -n "$module"; then
4622         func_get_status "$module"
4623       fi
4624     done
4625     ;;
4626
4627   extract-notice )
4628     for module
4629     do
4630       func_verify_module
4631       if test -n "$module"; then
4632         func_get_notice "$module"
4633       fi
4634     done
4635     ;;
4636
4637   extract-filelist )
4638     for module
4639     do
4640       func_verify_module
4641       if test -n "$module"; then
4642         func_get_filelist "$module"
4643       fi
4644     done
4645     ;;
4646
4647   extract-dependencies )
4648     for module
4649     do
4650       func_verify_module
4651       if test -n "$module"; then
4652         func_get_dependencies "$module"
4653       fi
4654     done
4655     ;;
4656
4657   extract-autoconf-snippet )
4658     for module
4659     do
4660       func_verify_module
4661       if test -n "$module"; then
4662         func_get_autoconf_snippet "$module"
4663       fi
4664     done
4665     ;;
4666
4667   extract-automake-snippet )
4668     for module
4669     do
4670       func_verify_module
4671       if test -n "$module"; then
4672         func_get_automake_snippet "$module"
4673       fi
4674     done
4675     ;;
4676
4677   extract-include-directive )
4678     for module
4679     do
4680       func_verify_module
4681       if test -n "$module"; then
4682         func_get_include_directive "$module"
4683       fi
4684     done
4685     ;;
4686
4687   extract-link-directive )
4688     for module
4689     do
4690       func_verify_module
4691       if test -n "$module"; then
4692         func_get_link_directive "$module"
4693       fi
4694     done
4695     ;;
4696
4697   extract-license )
4698     for module
4699     do
4700       func_verify_module
4701       if test -n "$module"; then
4702         func_get_license "$module"
4703       fi
4704     done
4705     ;;
4706
4707   extract-maintainer )
4708     for module
4709     do
4710       func_verify_module
4711       if test -n "$module"; then
4712         func_get_maintainer "$module"
4713       fi
4714     done
4715     ;;
4716
4717   extract-tests-module )
4718     for module
4719     do
4720       func_verify_module
4721       if test -n "$module"; then
4722         func_get_tests_module "$module"
4723       fi
4724     done
4725     ;;
4726
4727   copy-file )
4728     # Verify the number of arguments.
4729     if test $# -lt 1 || test $# -gt 2; then
4730       func_fatal_error "invalid number of arguments for --$mode"
4731     fi
4732
4733     # The first argument is the file to be copied.
4734     f="$1"
4735     # Verify the file exists.
4736     func_lookup_file "$f"
4737
4738     # The second argument is the destination; either a directory ot a file.
4739     # It defaults to the current directory.
4740     dest="$2"
4741     test -n "$dest" || dest='.'
4742     test -n "$sourcebase" || sourcebase="lib"
4743     test -n "$m4base" || m4base="m4"
4744     test -n "$docbase" || docbase="doc"
4745     test -n "$testsbase" || testsbase="tests"
4746     test -n "$auxdir" || auxdir="build-aux"
4747     rewritten='%REWRITTEN%'
4748     sed_rewrite_files="\
4749       s,^build-aux/,$rewritten$auxdir/,
4750       s,^doc/,$rewritten$docbase/,
4751       s,^lib/,$rewritten$sourcebase/,
4752       s,^m4/,$rewritten$m4base/,
4753       s,^tests/,$rewritten$testsbase/,
4754       s,^top/,$rewritten,
4755       s,^$rewritten,,"
4756     if test -d "$dest"; then
4757       destdir="$dest"
4758       g=`echo "$f" | sed -e "$sed_rewrite_files"`
4759     else
4760       destdir=`dirname "$dest"`
4761       g=`basename "$dest"`
4762     fi
4763
4764     # Create the directory for destfile.
4765     d=`dirname "$destdir/$g"`
4766     if $doit; then
4767       if test -n "$d" && test ! -d "$d"; then
4768         mkdir -p "$d" || func_fatal_error "failed"
4769       fi
4770     fi
4771     # Copy the file.
4772     func_dest_tmpfilename "$g"
4773     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
4774     already_present=true
4775     if test -f "$destdir/$g"; then
4776       # The file already exists.
4777       func_update_file
4778     else
4779       # Install the file.
4780       # Don't protest if the file should be there but isn't: it happens
4781       # frequently that developers don't put autogenerated files into CVS.
4782       func_add_file
4783     fi
4784     rm -f "$tmpfile"
4785     ;;
4786
4787   * )
4788     func_fatal_error "unknown operation mode --$mode" ;;
4789 esac
4790
4791 rm -rf "$tmp"
4792 # Undo the effect of the previous 'trap' command. Some shellology:
4793 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
4794 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
4795 # exit); for the others we need to call 'exit' explicitly. The value of $? is
4796 # 128 + signal number and is set before the trap-registered command is run.
4797 trap '' 0
4798 trap 'func_exit $?' 1 2 3 13 15
4799
4800 exit 0
4801
4802 # Local Variables:
4803 # indent-tabs-mode: nil
4804 # whitespace-check-buffer-indent: nil
4805 # End: