gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.8.0.
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002-2011 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 # You can set LIBTOOLPATH to empty if libtoolize 2.x is already in your PATH.
44 LIBTOOLPATH=
45
46 # If you didn't set AUTOCONFPATH and AUTOMAKEPATH, you can also set the
47 # variables AUTOCONF, AUTOHEADER, ACLOCAL, AUTOMAKE, AUTORECONF individually.
48 if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then
49   AUTOCONF="${AUTOCONFPATH}autoconf"
50 fi
51 if test -z "${AUTOHEADER}" || test -n "${AUTOCONFPATH}"; then
52   AUTOHEADER="${AUTOCONFPATH}autoheader"
53 fi
54 if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then
55   ACLOCAL="${AUTOMAKEPATH}aclocal"
56 fi
57 if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then
58   AUTOMAKE="${AUTOMAKEPATH}automake"
59 fi
60 if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then
61   AUTORECONF="${AUTOCONFPATH}autoreconf"
62 fi
63
64 # If you didn't set GETTEXTPATH, you can also set the variable AUTOPOINT.
65 if test -z "${AUTOPOINT}" || test -n "${GETTEXTPATH}"; then
66   AUTOPOINT="${GETTEXTPATH}autopoint"
67 fi
68
69 # If you didn't set LIBTOOLPATH, you can also set the variable LIBTOOLIZE.
70 if test -z "${LIBTOOLIZE}" || test -n "${LIBTOOLPATH}"; then
71   LIBTOOLIZE="${LIBTOOLPATH}libtoolize"
72 fi
73
74 # You can set MAKE.
75 if test -z "${MAKE}"; then
76   MAKE=make
77 fi
78
79 # When using GNU sed, turn off as many GNU extensions as possible,
80 # to minimize the risk of accidentally using non-portable features.
81 # However, do this only for gnulib-tool itself, not for the code that
82 # gnulib-tool generates, since we don't want "sed --posix" to leak
83 # into makefiles. And do it only for sed versions 4.2 or newer,
84 # because "sed --posix" is buggy in GNU sed 4.1.5, see
85 # <http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00225.html>.
86 if (alias) > /dev/null 2>&1 \
87    && echo | sed --posix -e d >/dev/null 2>&1 \
88    && case `sed --version | sed -e 's/^[^0-9]*//' -e 1q` in \
89         [1-3]* | 4.[01]*) false;; \
90         *) true;; \
91       esac \
92    ; then
93   # Define sed as an alias.
94   # It is not always possible to use aliases. Aliases are guaranteed to work
95   # if the executing shell is bash and either it is invoked as /bin/sh or
96   # is a version >= 2.0, supporting shopt. This is the common case.
97   # Two other approaches (use of a variable $sed or of a function func_sed
98   # instead of an alias) require massive, fragile code changes.
99   # An other approach (use of function sed) requires `which sed` - but
100   # 'which' is hard to emulate, due to missing "test -x" on some platforms.
101   if test -n "$BASH_VERSION"; then
102     shopt -s expand_aliases >/dev/null 2>&1
103   fi
104   alias sed='sed --posix'
105 fi
106
107 # sed_noop is a sed expression that does nothing.
108 # An empty expression does not work with the native 'sed' on AIX 6.1.
109 sed_noop='s,x,x,'
110
111 # sed_comments is true or false, depending whether 'sed' supports comments.
112 # AIX 5.3 sed barfs over indented comments.
113 if echo fo | sed -e 's/f/g/
114 # s/o/u/
115  # indented comment
116 s/o/e/' 2>/dev/null | grep ge > /dev/null; then
117   sed_comments=true
118 else
119   sed_comments=false
120 fi
121
122 # func_usage
123 # outputs to stdout the --help usage message.
124 func_usage ()
125 {
126   echo "\
127 Usage: gnulib-tool --list
128        gnulib-tool --find filename
129        gnulib-tool --import [module1 ... moduleN]
130        gnulib-tool --add-import [module1 ... moduleN]
131        gnulib-tool --remove-import [module1 ... moduleN]
132        gnulib-tool --update
133        gnulib-tool --create-testdir --dir=directory [module1 ... moduleN]
134        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
135        gnulib-tool --test --dir=directory module1 ... moduleN
136        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
137        gnulib-tool --extract-description module
138        gnulib-tool --extract-comment module
139        gnulib-tool --extract-status module
140        gnulib-tool --extract-notice module
141        gnulib-tool --extract-applicability module
142        gnulib-tool --extract-filelist module
143        gnulib-tool --extract-dependencies module
144        gnulib-tool --extract-autoconf-snippet module
145        gnulib-tool --extract-automake-snippet module
146        gnulib-tool --extract-include-directive module
147        gnulib-tool --extract-link-directive module
148        gnulib-tool --extract-license module
149        gnulib-tool --extract-maintainer module
150        gnulib-tool --extract-tests-module module
151        gnulib-tool --copy-file file [destination]
152
153 Operation modes:
154
155       --list                print the available module names
156       --find                find the modules which contain the specified file
157       --import              import the given modules into the current package
158       --add-import          augment the list of imports from gnulib into the
159                             current package, by adding the given modules;
160                             if no modules are specified, update the current
161                             package from the current gnulib
162       --remove-import       reduce the list of imports from gnulib into the
163                             current package, by removing the given modules
164       --update              update the current package, restore files omitted
165                             from version control
166       --create-testdir      create a scratch package with the given modules
167       --create-megatestdir  create a mega scratch package with the given modules
168                             one by one and all together
169       --test                test the combination of the given modules
170                             (recommended to use CC=\"gcc -Wall\" here)
171       --megatest            test the given modules one by one and all together
172                             (recommended to use CC=\"gcc -Wall\" here)
173       --extract-description        extract the description
174       --extract-comment            extract the comment
175       --extract-status             extract the status (obsolete etc.)
176       --extract-notice             extract the notice or banner
177       --extract-applicability      extract the applicability
178       --extract-filelist           extract the list of files
179       --extract-dependencies       extract the dependencies
180       --extract-autoconf-snippet   extract the snippet for configure.ac
181       --extract-automake-snippet   extract the snippet for library makefile
182       --extract-include-directive  extract the #include directive
183       --extract-link-directive     extract the linker directive
184       --extract-license            report the license terms of the source files
185                                    under lib/
186       --extract-maintainer         report the maintainer(s) inside gnulib
187       --extract-tests-module       report the unit test module, if it exists
188       --copy-file                  copy a file that is not part of any module
189
190 General options:
191
192       --dir=DIRECTORY       Specify the target directory.
193                             For --import, this specifies where your
194                             configure.ac can be found.  Defaults to current
195                             directory.
196       --local-dir=DIRECTORY  Specify a local override directory where to look
197                             up files before looking in gnulib's directory.
198       --cache-modules       Enable module caching optimization.
199       --no-cache-modules    Disable module caching optimization.
200       --verbose             Increase verbosity. May be repeated.
201       --quiet               Decrease verbosity. May be repeated.
202
203 Options for --import, --add/remove-import, --update:
204
205       --dry-run             Only print what would have been done.
206
207 Options for --import, --add/remove-import,
208             --create-[mega]testdir, --[mega]test:
209
210       --with-tests          Include unit tests for the included modules.
211       --with-obsolete       Include obsolete modules when they occur among the
212                             dependencies. By default, dependencies to obsolete
213                             modules are ignored.
214       --with-c++-tests      Include even unit tests for C++ interoperability.
215       --with-longrunning-tests
216                             Include even unit tests that are long-runners.
217       --with-privileged-tests
218                             Include even unit tests that require root
219                             privileges.
220       --with-unportable-tests
221                             Include even unit tests that fail on some platforms.
222       --with-all-tests      Include all kinds of problematic unit tests.
223       --avoid=MODULE        Avoid including the given MODULE. Useful if you
224                             have code that provides equivalent functionality.
225                             This option can be repeated.
226       --conditional-dependencies
227                             Support conditional dependencies (may save configure
228                             time and object code).
229       --no-conditional-dependencies
230                             Don't use conditional dependencies.
231       --libtool             Use libtool rules.
232       --no-libtool          Don't use libtool rules.
233
234 Options for --import, --add/remove-import:
235
236       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
237       --source-base=DIRECTORY
238                             Directory relative to --dir where source code is
239                             placed (default \"lib\").
240       --m4-base=DIRECTORY   Directory relative to --dir where *.m4 macros are
241                             placed (default \"m4\").
242       --po-base=DIRECTORY   Directory relative to --dir where *.po files are
243                             placed (default \"po\").
244       --doc-base=DIRECTORY  Directory relative to --dir where doc files are
245                             placed (default \"doc\").
246       --tests-base=DIRECTORY
247                             Directory relative to --dir where unit tests are
248                             placed (default \"tests\").
249       --aux-dir=DIRECTORY   Directory relative to --dir where auxiliary build
250                             tools are placed (default comes from configure.ac).
251       --lgpl[=2|=3]         Abort if modules aren't available under the LGPL.
252                             Also modify license template from GPL to LGPL.
253                             The version number of the LGPL can be specified;
254                             the default is currently LGPLv3.
255       --makefile-name=NAME  Name of makefile in automake syntax in the
256                             source-base and tests-base directories
257                             (default \"Makefile.am\").
258       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
259                             'gl_INIT'. Default is 'gl'.
260       --po-domain=NAME      Specify the prefix of the i18n domain. Usually use
261                             the package name. A suffix '-gnulib' is appended.
262       --witness-c-macro=NAME  Specify the C macro that is defined when the
263                             sources in this directory are compiled or used.
264       --vc-files            Update version control related files.
265       --no-vc-files         Don't update version control related files
266                             (.gitignore and/or .cvsignore).
267       --no-changelog        Don't update or create ChangeLog files.
268
269 Options for --create-[mega]testdir, --[mega]test:
270
271       --without-c++-tests   Exclude unit tests for C++ interoperability.
272       --without-longrunning-tests
273                             Exclude unit tests that are long-runners.
274       --without-privileged-tests
275                             Exclude unit tests that require root privileges.
276       --without-unportable-tests
277                             Exclude unit tests that fail on some platforms.
278       --single-configure    Generate a single configure file, not a separate
279                             configure file for the tests directory.
280
281 Options for --import, --add/remove-import, --update,
282             --create-[mega]testdir, --[mega]test:
283
284   -s, --symbolic, --symlink Make symbolic links instead of copying files.
285       --local-symlink       Make symbolic links instead of copying files, only
286                             for files from the local override directory.
287
288 Options for --import, --add/remove-import, --update:
289
290   -S, --more-symlinks       Make symbolic links instead of copying files, and
291                             don't replace copyright notices.
292
293 Report bugs to <bug-gnulib@gnu.org>."
294 }
295
296 # func_version
297 # outputs to stdout the --version message.
298 func_version ()
299 {
300   func_gnulib_dir
301   if test -d "$gnulib_dir"/.git \
302      && (git --version) >/dev/null 2>/dev/null \
303      && (date --version) >/dev/null 2>/dev/null; then
304     # gnulib checked out from git.
305     sed_extract_first_date='/^Date/{
306 s/^Date:[        ]*//p
307 q
308 }'
309     date=`cd "$gnulib_dir" && git log ChangeLog | sed -n -e "$sed_extract_first_date"`
310     # Turn "Fri Mar 21 07:16:51 2008 -0600" into "Mar 21 2008 07:16:51 -0600".
311     sed_year_before_time='s/^[^ ]* \([^ ]*\) \([0-9]*\) \([0-9:]*\) \([0-9]*\) /\1 \2 \4 \3 /'
312     date=`echo "$date" | sed -e "$sed_year_before_time"`
313     # Use GNU date to compute the time in GMT.
314     date=`date -d "$date" -u +"%Y-%m-%d %H:%M:%S"`
315     version=' '`cd "$gnulib_dir" && ./build-aux/git-version-gen /dev/null | sed -e 's/-dirty/-modified/'`
316   else
317     if test -d "$gnulib_dir"/CVS \
318        && (cvs --version) >/dev/null 2>/dev/null; then
319       # gnulib checked out from CVS.
320       sed_extract_first_date='/^date: /{
321 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
322 q
323 }'
324       date=`cd "$gnulib_dir" && cvs log -N ChangeLog 2>/dev/null | sed -n -e "$sed_extract_first_date"`
325     else
326       # gnulib copy without versioning information.
327       date=`sed -e 's/ .*//;q' "$gnulib_dir"/ChangeLog`
328     fi
329     version=
330   fi
331   year=`"$gnulib_dir"/build-aux/mdate-sh "$self_abspathname" | sed -e 's,^.* ,,'`
332   echo "\
333 gnulib-tool (GNU $package $date)$version
334 Copyright (C) $year Free Software Foundation, Inc.
335 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
336 This is free software: you are free to change and redistribute it.
337 There is NO WARRANTY, to the extent permitted by law.
338
339 Written by" "Bruno Haible" "and" "Simon Josefsson"
340 }
341
342 # func_emit_copyright_notice
343 # outputs to stdout a header for a generated file.
344 func_emit_copyright_notice ()
345 {
346   sed -n -e '/Copyright/ {
347                p
348                q
349              }' < "$self_abspathname"
350   echo "#"
351   echo "# This file is free software; you can redistribute it and/or modify"
352   echo "# it under the terms of the GNU General Public License as published by"
353   echo "# the Free Software Foundation; either version 3 of the License, or"
354   echo "# (at your option) any later version."
355   echo "#"
356   echo "# This file is distributed in the hope that it will be useful,"
357   echo "# but WITHOUT ANY WARRANTY; without even the implied warranty of"
358   echo "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the"
359   echo "# GNU General Public License for more details."
360   echo "#"
361   echo "# You should have received a copy of the GNU General Public License"
362   echo "# along with this file.  If not, see <http://www.gnu.org/licenses/>."
363   echo "#"
364   echo "# As a special exception to the GNU General Public License,"
365   echo "# this file may be distributed as part of a program that"
366   echo "# contains a configuration script generated by Autoconf, under"
367   echo "# the same distribution terms as the rest of that program."
368   echo "#"
369   echo "# Generated by gnulib-tool."
370 }
371
372 # func_exit STATUS
373 # exits with a given status.
374 # This function needs to be used, rather than 'exit', when a 'trap' handler is
375 # in effect that refers to $?.
376 func_exit ()
377 {
378   (exit $1); exit $1
379 }
380
381 # func_gnulib_dir
382 # locates the directory where the gnulib repository lives
383 # Input:
384 # - progname                 name of this program
385 # Sets variables
386 # - self_abspathname         absolute pathname of gnulib-tool
387 # - gnulib_dir               absolute pathname of gnulib repository
388 func_gnulib_dir ()
389 {
390   case "$progname" in
391     /*) self_abspathname="$progname" ;;
392     */*) self_abspathname=`pwd`/"$progname" ;;
393     *)
394       # Look in $PATH.
395       # Iterate through the elements of $PATH.
396       # We use IFS=: instead of
397       #   for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`
398       # because the latter does not work when some PATH element contains spaces.
399       # We use a canonicalized $pathx instead of $PATH, because empty PATH
400       # elements are by definition equivalent to '.', however field splitting
401       # according to IFS=: loses empty fields in many shells:
402       #   - /bin/sh on OSF/1 and Solaris loses all empty fields (at the
403       #     beginning, at the end, and in the middle),
404       #   - /bin/sh on IRIX and /bin/ksh on IRIX and OSF/1 lose empty fields
405       #     at the beginning and at the end,
406       #   - GNU bash, /bin/sh on AIX and HP-UX, and /bin/ksh on AIX, HP-UX,
407       #     Solaris lose empty fields at the end.
408       # The 'case' statement is an optimization, to avoid evaluating the
409       # explicit canonicalization command when $PATH contains no empty fields.
410       self_abspathname=
411       if test "${PATH_SEPARATOR+set}" != set; then
412         # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which
413         # contains only /bin. Note that ksh looks also at the FPATH variable,
414         # so we have to set that as well for the test.
415         PATH_SEPARATOR=:
416         (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
417           && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
418                  || PATH_SEPARATOR=';'
419              }
420       fi
421       if test "$PATH_SEPARATOR" = ";"; then
422         # On Windows, programs are searched in "." before $PATH.
423         pathx=".;$PATH"
424       else
425         # On Unix, we have to convert empty PATH elements to ".".
426         pathx="$PATH"
427         case :$PATH: in
428           *::*)
429             pathx=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'`
430             ;;
431         esac
432       fi
433       save_IFS="$IFS"
434       IFS="$PATH_SEPARATOR"
435       for d in $pathx; do
436         IFS="$save_IFS"
437         test -z "$d" && d=.
438         if test -x "$d/$progname" && test ! -d "$d/$progname"; then
439           self_abspathname="$d/$progname"
440           break
441         fi
442       done
443       IFS="$save_IFS"
444       if test -z "$self_abspathname"; then
445         func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
446       fi
447       ;;
448   esac
449   while test -h "$self_abspathname"; do
450     # Resolve symbolic link.
451     linkval=`func_readlink "$self_abspathname"`
452     test -n "$linkval" || break
453     case "$linkval" in
454       /* ) self_abspathname="$linkval" ;;
455       * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
456     esac
457   done
458   gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
459 }
460
461 # func_tmpdir
462 # creates a temporary directory.
463 # Input:
464 # - progname                 name of this program
465 # Sets variable
466 # - tmp             pathname of freshly created temporary directory
467 func_tmpdir ()
468 {
469   # Use the environment variable TMPDIR, falling back to /tmp. This allows
470   # users to specify a different temporary directory, for example, if their
471   # /tmp is filled up or too small.
472   : ${TMPDIR=/tmp}
473   {
474     # Use the mktemp program if available. If not available, hide the error
475     # message.
476     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
477     test -n "$tmp" && test -d "$tmp"
478   } ||
479   {
480     # Use a simple mkdir command. It is guaranteed to fail if the directory
481     # already exists.  $RANDOM is bash specific and expands to empty in shells
482     # other than bash, ksh and zsh.  Its use does not increase security;
483     # rather, it minimizes the probability of failure in a very cluttered /tmp
484     # directory.
485     tmp=$TMPDIR/gl$$-$RANDOM
486     (umask 077 && mkdir "$tmp")
487   } ||
488   {
489     echo "$progname: cannot create a temporary directory in $TMPDIR" >&2
490     func_exit 1
491   }
492 }
493
494 # func_append var value
495 # appends the given value to the shell variable var.
496 if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then
497   # Use bash's += operator. It reduces complexity of appending repeatedly to
498   # a single variable from O(n^2) to O(n).
499   func_append ()
500   {
501     eval "$1+=\"\$2\""
502   }
503   fast_func_append=true
504 else
505   func_append ()
506   {
507     eval "$1=\"\$$1\$2\""
508   }
509   fast_func_append=false
510 fi
511
512 # func_remove_prefix var prefix
513 # removes the given prefix from the value of the shell variable var.
514 # var should be the name of a shell variable.
515 # Its value should not contain a newline and not start or end with whitespace.
516 # prefix should not contain the characters "$`\{}[]^|.
517 if ( foo=bar; eval 'test "${foo#b}" = ar' ) >/dev/null 2>&1; then
518   func_remove_prefix ()
519   {
520     eval "$1=\${$1#\$2}"
521   }
522   fast_func_remove_prefix=true
523 else
524   func_remove_prefix ()
525   {
526     eval "value=\"\$$1\""
527     prefix="$2"
528     case "$prefix" in
529       *.*)
530         sed_escape_dots='s/\([.]\)/\\\1/g'
531         prefix=`echo "$prefix" | sed -e "$sed_escape_dots"`
532         ;;
533     esac
534     value=`echo "$value" | sed -e "s|^${prefix}||"`
535     eval "$1=\"\$value\""
536   }
537   fast_func_remove_prefix=false
538 fi
539
540 # func_remove_suffix var suffix
541 # removes the given suffix from the value of the shell variable var.
542 # var should be the name of a shell variable.
543 # Its value should not contain a newline and not start or end with whitespace.
544 # suffix should not contain the characters "$`\{}[]^|.
545 if ( foo=bar; eval 'test "${foo%r}" = ba' ) >/dev/null 2>&1; then
546   func_remove_suffix ()
547   {
548     eval "$1=\${$1%\$2}"
549   }
550   fast_func_remove_suffix=true
551 else
552   func_remove_suffix ()
553   {
554     eval "value=\"\$$1\""
555     suffix="$2"
556     case "$suffix" in
557       *.*)
558         sed_escape_dots='s/\([.]\)/\\\1/g'
559         suffix=`echo "$suffix" | sed -e "$sed_escape_dots"`
560         ;;
561     esac
562     value=`echo "$value" | sed -e "s|${suffix}\$||"`
563     eval "$1=\"\$value\""
564   }
565   fast_func_remove_suffix=false
566 fi
567
568 # func_fatal_error message
569 # outputs to stderr a fatal error message, and terminates the program.
570 # Input:
571 # - progname                 name of this program
572 func_fatal_error ()
573 {
574   echo "$progname: *** $1" 1>&2
575   echo "$progname: *** Stop." 1>&2
576   func_exit 1
577 }
578
579 # func_warning message
580 # Outputs to stderr a warning message,
581 func_warning ()
582 {
583   echo "gnulib-tool: warning: $1" 1>&2
584 }
585
586 # func_readlink SYMLINK
587 # outputs the target of the given symlink.
588 if (type -p readlink) > /dev/null 2>&1; then
589   func_readlink ()
590   {
591     # Use the readlink program from GNU coreutils.
592     readlink "$1"
593   }
594 else
595   func_readlink ()
596   {
597     # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
598     # would do the wrong thing if the link target contains " -> ".
599     LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
600   }
601 fi
602
603 # func_relativize DIR1 DIR2
604 # computes a relative pathname RELDIR such that DIR1/RELDIR = DIR2.
605 # Input:
606 # - DIR1            relative pathname, relative to the current directory
607 # - DIR2            relative pathname, relative to the current directory
608 # Output:
609 # - reldir          relative pathname of DIR2, relative to DIR1
610 func_relativize ()
611 {
612   dir0=`pwd`
613   dir1="$1"
614   dir2="$2"
615   sed_first='s,^\([^/]*\)/.*$,\1,'
616   sed_rest='s,^[^/]*/*,,'
617   sed_last='s,^.*/\([^/]*\)$,\1,'
618   sed_butlast='s,/*[^/]*$,,'
619   while test -n "$dir1"; do
620     first=`echo "$dir1" | sed -e "$sed_first"`
621     if test "$first" != "."; then
622       if test "$first" = ".."; then
623         dir2=`echo "$dir0" | sed -e "$sed_last"`/"$dir2"
624         dir0=`echo "$dir0" | sed -e "$sed_butlast"`
625       else
626         first2=`echo "$dir2" | sed -e "$sed_first"`
627         if test "$first2" = "$first"; then
628           dir2=`echo "$dir2" | sed -e "$sed_rest"`
629         else
630           dir2="../$dir2"
631         fi
632         dir0="$dir0"/"$first"
633       fi
634     fi
635     dir1=`echo "$dir1" | sed -e "$sed_rest"`
636   done
637   reldir="$dir2"
638 }
639
640 # func_relconcat DIR1 DIR2
641 # computes a relative pathname DIR1/DIR2, with obvious simplifications.
642 # Input:
643 # - DIR1            relative pathname, relative to the current directory
644 # - DIR2            relative pathname, relative to DIR1
645 # Output:
646 # - relconcat       DIR1/DIR2, relative to the current directory
647 func_relconcat ()
648 {
649   dir1="$1"
650   dir2="$2"
651   sed_first='s,^\([^/]*\)/.*$,\1,'
652   sed_rest='s,^[^/]*/*,,'
653   sed_last='s,^.*/\([^/]*\)$,\1,'
654   sed_butlast='s,/*[^/]*$,,'
655   while true; do
656     first=`echo "$dir2" | sed -e "$sed_first"`
657     if test "$first" = "."; then
658       dir2=`echo "$dir2" | sed -e "$sed_rest"`
659       if test -z "$dir2"; then
660         relconcat="$dir1"
661         break
662       fi
663     else
664       last=`echo "$dir1" | sed -e "$sed_last"`
665       while test "$last" = "."; do
666         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
667         last=`echo "$dir1" | sed -e "$sed_last"`
668       done
669       if test -z "$dir1"; then
670         relconcat="$dir2"
671         break
672       fi
673       if test "$first" = ".."; then
674         if test "$last" = ".."; then
675           relconcat="$dir1/$dir2"
676           break
677         fi
678         dir1=`echo "$dir1" | sed -e "$sed_butlast"`
679         dir2=`echo "$dir2" | sed -e "$sed_rest"`
680         if test -z "$dir1"; then
681           relconcat="$dir2"
682           break
683         fi
684         if test -z "$dir2"; then
685           relconcat="$dir1"
686           break
687         fi
688       else
689         relconcat="$dir1/$dir2"
690         break
691       fi
692     fi
693   done
694 }
695
696 # func_ln SRC DEST
697 # Like ln -s, except that SRC is given relative to the current directory (or
698 # absolute), not given relative to the directory of DEST.
699 func_ln ()
700 {
701   case "$1" in
702     /*)
703       ln -s "$1" "$2" ;;
704     *) # SRC is relative.
705       case "$2" in
706         /*)
707           ln -s "`pwd`/$1" "$2" ;;
708         *) # DEST is relative too.
709           ln_destdir=`echo "$2" | sed -e 's,[^/]*$,,'`
710           test -n "$ln_destdir" || ln_destdir="."
711           func_relativize "$ln_destdir" "$1"
712           ln -s "$reldir" "$2"
713           ;;
714       esac
715       ;;
716   esac
717 }
718
719 # func_ln_if_changed SRC DEST
720 # Like func_ln, but avoids munging timestamps if the link is correct.
721 func_ln_if_changed ()
722 {
723   if test $# -ne 2; then
724     echo "usage: func_ln_if_changed SRC DEST" >&2
725   fi
726   ln_target=`func_readlink "$2"`
727   if test -h "$2" && test "$1" = "$ln_target"; then
728     :
729   else
730     rm -f "$2"
731     func_ln "$1" "$2"
732   fi
733 }
734
735 # Ensure an 'echo' command that
736 #   1. does not interpret backslashes and
737 #   2. does not print an error message "broken pipe" when writing into a pipe
738 #      with no writers.
739 #
740 # Test cases for problem 1:
741 #   echo '\n' | wc -l                 prints 1 when OK, 2 when KO
742 #   echo '\t' | grep t > /dev/null    has return code 0 when OK, 1 when KO
743 # Test cases for problem 2:
744 #   echo hi | true                    frequently prints
745 #                                     "bash: echo: write error: Broken pipe"
746 #                                     to standard error in bash 3.2.
747 #
748 # Problem 1 is a weird heritage from SVR4. BSD got it right (except that
749 # BSD echo interprets '-n' as an option, which is also not desirable).
750 # Nowadays the problem occurs in 4 situations:
751 # - in bash, when the shell option xpg_echo is set (bash >= 2.04)
752 #            or when it was built with --enable-usg-echo-default (bash >= 2.0)
753 #            or when it was built with DEFAULT_ECHO_TO_USG (bash < 2.0),
754 # - in zsh, when sh-emulation is not set,
755 # - in ksh (e.g. AIX /bin/sh and Solaris /usr/xpg4/bin/sh are ksh instances,
756 #           and HP-UX /bin/sh and IRIX /bin/sh behave similarly),
757 # - in Solaris /bin/sh and OSF/1 /bin/sh.
758 # We try the following workarounds:
759 # - for all: respawn using $CONFIG_SHELL if that is set and works.
760 # - for bash >= 2.04: unset the shell option xpg_echo.
761 # - for bash >= 2.0: define echo to a function that uses the printf built-in.
762 # - for bash < 2.0: define echo to a function that uses cat of a here document.
763 # - for zsh: turn sh-emulation on.
764 # - for ksh: alias echo to 'print -r'.
765 # - for ksh: alias echo to a function that uses cat of a here document.
766 # - for Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh and rely on
767 #   the ksh workaround.
768 # - otherwise: respawn using /bin/sh and rely on the workarounds.
769 # When respawning, we pass --no-reexec as first argument, so as to avoid
770 # turning this script into a fork bomb in unlucky situations.
771 #
772 # Problem 2 is specific to bash 3.2 and affects the 'echo' built-in, but not
773 # the 'printf' built-in. See
774 #   <http://lists.gnu.org/archive/html/bug-bash/2008-12/msg00050.html>
775 #   <http://lists.gnu.org/archive/html/bug-gnulib/2010-02/msg00154.html>
776 # The workaround is: define echo to a function that uses the printf built-in.
777 have_echo=
778 if echo '\t' | grep t > /dev/null; then
779   have_echo=yes # Lucky!
780 fi
781 # Try the workarounds.
782 # Respawn using $CONFIG_SHELL if that is set and works.
783 if test -z "$have_echo" \
784    && test "X$1" != "X--no-reexec" \
785    && test -n "$CONFIG_SHELL" \
786    && test -f "$CONFIG_SHELL" \
787    && $CONFIG_SHELL -c "echo '\\t' | grep t > /dev/null"; then
788   exec $CONFIG_SHELL "$0" --no-reexec "$@"
789   exit 127
790 fi
791 # For bash >= 2.04: unset the shell option xpg_echo.
792 if test -z "$have_echo" \
793    && test -n "$BASH_VERSION" \
794    && (shopt -o xpg_echo; echo '\t' | grep t > /dev/null) 2>/dev/null; then
795   shopt -o xpg_echo
796   have_echo=yes
797 fi
798 # For bash >= 2.0: define echo to a function that uses the printf built-in.
799 # For bash < 2.0: define echo to a function that uses cat of a here document.
800 # (There is no win in using 'printf' over 'cat' if it is not a shell built-in.)
801 # Also handle problem 2, specific to bash 3.2, here.
802 if { test -z "$have_echo" \
803      || case "$BASH_VERSION" in 3.2*) true;; *) false;; esac; \
804    } \
805    && test -n "$BASH_VERSION"; then \
806   if type printf 2>/dev/null | grep / > /dev/null; then
807     # 'printf' is not a shell built-in.
808 echo ()
809 {
810 cat <<EOF
811 $*
812 EOF
813 }
814   else
815     # 'printf' is a shell built-in.
816 echo ()
817 {
818   printf '%s\n' "$*"
819 }
820   fi
821   if echo '\t' | grep t > /dev/null; then
822     have_echo=yes
823   fi
824 fi
825 # For zsh: turn sh-emulation on.
826 if test -z "$have_echo" \
827    && test -n "$ZSH_VERSION" \
828    && (emulate sh) >/dev/null 2>&1; then
829   emulate sh
830 fi
831 # For ksh: alias echo to 'print -r'.
832 if test -z "$have_echo" \
833    && (type print) >/dev/null 2>&1; then
834   # A 'print' command exists.
835   if type print 2>/dev/null | grep / > /dev/null; then
836     :
837   else
838     # 'print' is a shell built-in.
839     if (print -r '\told' | grep told > /dev/null) 2>/dev/null; then
840       # 'print' is the ksh shell built-in.
841       alias echo='print -r'
842     fi
843   fi
844 fi
845 if test -z "$have_echo" \
846    && echo '\t' | grep t > /dev/null; then
847   have_echo=yes
848 fi
849 # For ksh: alias echo to a function that uses cat of a here document.
850 # The ksh manual page says:
851 #   "Aliasing is performed when scripts are read, not while they are executed.
852 #    Therefore, for an alias to take effect, the alias definition command has
853 #    to be executed before the command which references the alias is read."
854 # Because of this, we have to play strange tricks with have_echo, to ensure
855 # that the top-level statement containing the test starts after the 'alias'
856 # command.
857 if test -z "$have_echo"; then
858   bsd_echo ()
859 {
860 cat <<EOF
861 $*
862 EOF
863 }
864   if (alias echo=bsd_echo) 2>/dev/null; then
865     alias echo=bsd_echo 2>/dev/null
866   fi
867 fi
868 if test -z "$have_echo" \
869    && echo '\t' | grep t > /dev/null; then
870   have_echo=yes
871 fi
872 if test -z "$have_echo"; then
873   if (alias echo=bsd_echo) 2>/dev/null; then
874     unalias echo 2>/dev/null
875   fi
876 fi
877 # For Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh.
878 if test -z "$have_echo" \
879    && test "X$1" != "X--no-reexec" \
880    && test -f /bin/ksh; then
881   exec /bin/ksh "$0" --no-reexec "$@"
882   exit 127
883 fi
884 # Otherwise: respawn using /bin/sh.
885 if test -z "$have_echo" \
886    && test "X$1" != "X--no-reexec" \
887    && test -f /bin/sh; then
888   exec /bin/sh "$0" --no-reexec "$@"
889   exit 127
890 fi
891 if test -z "$have_echo"; then
892   func_fatal_error "Shell does not support 'echo' correctly. Please install GNU bash and set the environment variable CONFIG_SHELL to point to it."
893 fi
894 if echo '\t' | grep t > /dev/null; then
895   : # Works fine now.
896 else
897   func_fatal_error "Shell does not support 'echo' correctly. Workaround does not work. Please report this as a bug to bug-gnulib@gnu.org."
898 fi
899 if test "X$1" = "X--no-reexec"; then
900   shift
901 fi
902
903 # Command-line option processing.
904 # Removes the OPTIONS from the arguments. Sets the variables:
905 # - mode            list or import or add-import or remove-import or update
906 #                   or create-testdir or create-megatestdir
907 # - destdir         from --dir
908 # - local_gnulib_dir  from --local-dir
909 # - modcache        true or false, from --cache-modules/--no-cache-modules
910 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
911 # - libname, supplied_libname  from --lib
912 # - sourcebase      from --source-base
913 # - m4base          from --m4-base
914 # - pobase          from --po-base
915 # - docbase         from --doc-base
916 # - testsbase       from --tests-base
917 # - auxdir          from --aux-dir
918 # - inctests        true if --with-tests was given, blank otherwise
919 # - incobsolete     true if --with-obsolete was given, blank otherwise
920 # - inc_cxx_tests   true if --with-c++-tests was given, blank otherwise
921 # - inc_longrunning_tests  true if --with-longrunning-tests was given, blank
922 #                          otherwise
923 # - inc_privileged_tests  true if --with-privileged-tests was given, blank
924 #                         otherwise
925 # - inc_unportable_tests  true if --with-unportable-tests was given, blank
926 #                         otherwise
927 # - inc_all_tests   true if --with-all-tests was given, blank otherwise
928 # - excl_cxx_tests  true if --without-c++-tests was given, blank otherwise
929 # - excl_longrunning_tests  true if --without-longrunning-tests was given,
930 #                           blank otherwise
931 # - excl_privileged_tests  true if --without-privileged-tests was given, blank
932 #                          otherwise
933 # - excl_unportable_tests  true if --without-unportable-tests was given, blank
934 #                          otherwise
935 # - single_configure  true if --single-configure was given, false otherwise
936 # - avoidlist       list of modules to avoid, from --avoid
937 # - cond_dependencies  true if --conditional-dependencies was given, false if
938 #                      --no-conditional-dependencies was given, blank otherwise
939 # - lgpl            yes or a number if --lgpl was given, blank otherwise
940 # - makefile_name   from --makefile-name
941 # - libtool         true if --libtool was given, false if --no-libtool was
942 #                   given, blank otherwise
943 # - macro_prefix    from --macro-prefix
944 # - po_domain       from --po-domain
945 # - witness_c_macro  from --witness-c-macro
946 # - vc_files        true if --vc-files was given, false if --no-vc-files was
947 #                   given, blank otherwise
948 # - autoconf_minversion  minimum supported autoconf version
949 # - do_changelog    false if --no-changelog was given, : otherwise
950 # - doit            : if actions shall be executed, false if only to be printed
951 # - symbolic        true if --symlink or --more-symlinks was given, blank
952 #                   otherwise
953 # - lsymbolic       true if --local-symlink was given, blank otherwise
954 # - do_copyrights   blank if --more-symlinks was given, true otherwise
955 {
956   mode=
957   destdir=
958   local_gnulib_dir=
959   modcache=true
960   verbose=0
961   libname=libgnu
962   supplied_libname=
963   sourcebase=
964   m4base=
965   pobase=
966   docbase=
967   testsbase=
968   auxdir=
969   inctests=
970   incobsolete=
971   inc_cxx_tests=
972   inc_longrunning_tests=
973   inc_privileged_tests=
974   inc_unportable_tests=
975   inc_all_tests=
976   excl_cxx_tests=
977   excl_longrunning_tests=
978   excl_privileged_tests=
979   excl_unportable_tests=
980   single_configure=false
981   avoidlist=
982   cond_dependencies=
983   lgpl=
984   makefile_name=
985   libtool=
986   macro_prefix=
987   po_domain=
988   witness_c_macro=
989   vc_files=
990   do_changelog=:
991   doit=:
992   symbolic=
993   lsymbolic=
994   do_copyrights=true
995
996   supplied_opts="$@"
997
998   while test $# -gt 0; do
999     case "$1" in
1000       --list | --lis )
1001         mode=list
1002         shift ;;
1003       --find | --fin | --fi | --f )
1004         mode=find
1005         shift ;;
1006       --import | --impor | --impo | --imp | --im | --i )
1007         mode=import
1008         shift ;;
1009       --add-import | --add-impor | --add-impo | --add-imp | --add-im | --add-i | --add- | --add | --ad )
1010         mode=add-import
1011         shift ;;
1012       --remove-import | --remove-impor | --remove-impo | --remove-imp | --remove-im | --remove-i | --remove- | --remove | --remov | --remo | --rem | --re | --r )
1013         mode=remove-import
1014         shift ;;
1015       --update | --updat | --upda | --upd | --up | --u )
1016         mode=update
1017         shift ;;
1018       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
1019         mode=create-testdir
1020         shift ;;
1021       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
1022         mode=create-megatestdir
1023         shift ;;
1024       --test | --tes | --te | --t )
1025         mode=test
1026         shift ;;
1027       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
1028         mode=megatest
1029         shift ;;
1030       --extract-* )
1031         mode=`echo "X$1" | sed -e 's/^X--//'`
1032         shift ;;
1033       --copy-file | --copy-fil | --copy-fi | --copy-f | --copy- | --copy | --cop )
1034         mode=copy-file
1035         shift ;;
1036       --dir )
1037         shift
1038         if test $# = 0; then
1039           func_fatal_error "missing argument for --dir"
1040         fi
1041         destdir=$1
1042         shift ;;
1043       --dir=* )
1044         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
1045         shift ;;
1046       --local-dir )
1047         shift
1048         if test $# = 0; then
1049           func_fatal_error "missing argument for --local-dir"
1050         fi
1051         local_gnulib_dir=$1
1052         shift ;;
1053       --local-dir=* )
1054         local_gnulib_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'`
1055         shift ;;
1056       --cache-modules | --cache-module | --cache-modul | --cache-modu | --cache-mod | --cache-mo | --cache-m | --cache- | --cache | --cach | --cac | --ca )
1057         modcache=true
1058         shift ;;
1059       --no-cache-modules | --no-cache-module | --no-cache-modul | --no-cache-modu | --no-cache-mod | --no-cache-mo | --no-cache-m | --no-cache- | --no-cache | --no-cach | --no-cac | --no-ca )
1060         modcache=false
1061         shift ;;
1062       --verbose | --verbos | --verbo | --verb )
1063         verbose=`expr $verbose + 1`
1064         shift ;;
1065       --quiet | --quie | --qui | --qu | --q )
1066         verbose=`expr $verbose - 1`
1067         shift ;;
1068       --lib )
1069         shift
1070         if test $# = 0; then
1071           func_fatal_error "missing argument for --lib"
1072         fi
1073         libname=$1
1074         supplied_libname=true
1075         shift ;;
1076       --lib=* )
1077         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
1078         supplied_libname=true
1079         shift ;;
1080       --source-base )
1081         shift
1082         if test $# = 0; then
1083           func_fatal_error "missing argument for --source-base"
1084         fi
1085         sourcebase=$1
1086         shift ;;
1087       --source-base=* )
1088         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
1089         shift ;;
1090       --m4-base )
1091         shift
1092         if test $# = 0; then
1093           func_fatal_error "missing argument for --m4-base"
1094         fi
1095         m4base=$1
1096         shift ;;
1097       --m4-base=* )
1098         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
1099         shift ;;
1100       --po-base )
1101         shift
1102         if test $# = 0; then
1103           func_fatal_error "missing argument for --po-base"
1104         fi
1105         pobase=$1
1106         shift ;;
1107       --po-base=* )
1108         pobase=`echo "X$1" | sed -e 's/^X--po-base=//'`
1109         shift ;;
1110       --doc-base )
1111         shift
1112         if test $# = 0; then
1113           func_fatal_error "missing argument for --doc-base"
1114         fi
1115         docbase=$1
1116         shift ;;
1117       --doc-base=* )
1118         docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'`
1119         shift ;;
1120       --tests-base )
1121         shift
1122         if test $# = 0; then
1123           func_fatal_error "missing argument for --tests-base"
1124         fi
1125         testsbase=$1
1126         shift ;;
1127       --tests-base=* )
1128         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
1129         shift ;;
1130       --aux-dir )
1131         shift
1132         if test $# = 0; then
1133           func_fatal_error "missing argument for --aux-dir"
1134         fi
1135         auxdir=$1
1136         shift ;;
1137       --aux-dir=* )
1138         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
1139         shift ;;
1140       --with-tests | --with-test | --with-tes | --with-te | --with-t)
1141         inctests=true
1142         shift ;;
1143       --with-obsolete | --with-obsolet | --with-obsole | --with-obsol | --with-obso | --with-obs | --with-ob | --with-o)
1144         incobsolete=true
1145         shift ;;
1146       --with-c++-tests | --with-c++-test | --with-c++-tes | --with-c++-te | --with-c++-t | --with-c++- | --with-c++ | --with-c+ | --with-c)
1147         inc_cxx_tests=true
1148         shift ;;
1149       --with-longrunning-tests | --with-longrunning-test | --with-longrunning-tes | --with-longrunning-te | --with-longrunning-t | --with-longrunning- | --with-longrunning | --with-longrunnin | --with-longrunni | --with-longrunn | --with-longrun | --with-longru | --with-longr | --with-long | --with-lon | --with-lo | --with-l)
1150         inc_longrunning_tests=true
1151         shift ;;
1152       --with-privileged-tests | --with-privileged-test | --with-privileged-tes | --with-privileged-te | --with-privileged-t | --with-privileged- | --with-privileged | --with-privilege | --with-privileg | --with-privile | --with-privil | --with-privi | --with-priv | --with-pri | --with-pr | --with-p)
1153         inc_privileged_tests=true
1154         shift ;;
1155       --with-unportable-tests | --with-unportable-test | --with-unportable-tes | --with-unportable-te | --with-unportable-t | --with-unportable- | --with-unportable | --with-unportabl | --with-unportab | --with-unporta | --with-unport | --with-unpor | --with-unpo | --with-unp | --with-un | --with-u)
1156         inc_unportable_tests=true
1157         shift ;;
1158       --with-all-tests | --with-all-test | --with-all-tes | --with-all-te | --with-all-t | --with-all- | --with-all | --with-al | --with-a)
1159         inc_all_tests=true
1160         shift ;;
1161       --without-c++-tests | --without-c++-test | --without-c++-tes | --without-c++-te | --without-c++-t | --without-c++- | --without-c++ | --without-c+ | --without-c)
1162         excl_cxx_tests=true
1163         shift ;;
1164       --without-longrunning-tests | --without-longrunning-test | --without-longrunning-tes | --without-longrunning-te | --without-longrunning-t | --without-longrunning- | --without-longrunning | --without-longrunnin | --without-longrunni | --without-longrunn | --without-longrun | --without-longru | --without-longr | --without-long | --without-lon | --without-lo | --without-l)
1165         excl_longrunning_tests=true
1166         shift ;;
1167       --without-privileged-tests | --without-privileged-test | --without-privileged-tes | --without-privileged-te | --without-privileged-t | --without-privileged- | --without-privileged | --without-privilege | --without-privileg | --without-privile | --without-privil | --without-privi | --without-priv | --without-pri | --without-pr | --without-p)
1168         excl_privileged_tests=true
1169         shift ;;
1170       --without-unportable-tests | --without-unportable-test | --without-unportable-tes | --without-unportable-te | --without-unportable-t | --without-unportable- | --without-unportable | --without-unportabl | --without-unportab | --without-unporta | --without-unport | --without-unpor | --without-unpo | --without-unp | --without-un | --without-u)
1171         excl_unportable_tests=true
1172         shift ;;
1173       --single-configure | --single-configur | --single-configu | --single-config | --single-confi | --single-conf | --single-con | --single-con | --single-co | --single-c | --single- | --single | --singl | --sing | --sin | --si)
1174         single_configure=true
1175         shift ;;
1176       --avoid )
1177         shift
1178         if test $# = 0; then
1179           func_fatal_error "missing argument for --avoid"
1180         fi
1181         func_append avoidlist " $1"
1182         shift ;;
1183       --avoid=* )
1184         arg=`echo "X$1" | sed -e 's/^X--avoid=//'`
1185         func_append avoidlist " $arg"
1186         shift ;;
1187       --conditional-dependencies | --conditional-dependencie | --conditional-dependenci | --conditional-dependenc | --conditional-dependen | --conditional-depende | --conditional-depend | --conditional-depen | --conditional-depe | --conditional-dep | --conditional-de | --conditional-d | --conditional- | --conditional | --conditiona | --condition | --conditio | --conditi | --condit | --condi | --cond | --con)
1188         cond_dependencies=true
1189         shift ;;
1190       --no-conditional-dependencies | --no-conditional-dependencie | --no-conditional-dependenci | --no-conditional-dependenc | --no-conditional-dependen | --no-conditional-depende | --no-conditional-depend | --no-conditional-depen | --no-conditional-depe | --no-conditional-dep | --no-conditional-de | --no-conditional-d | --no-conditional- | --no-conditional | --no-conditiona | --no-condition | --no-conditio | --no-conditi | --no-condit | --no-condi | --no-cond | --no-con | --no-co)
1191         cond_dependencies=false
1192         shift ;;
1193       --lgpl )
1194         lgpl=yes
1195         shift ;;
1196       --lgpl=* )
1197         arg=`echo "X$1" | sed -e 's/^X--lgpl=//'`
1198         case "$arg" in
1199           2 | 3) ;;
1200           *) func_fatal_error "invalid LGPL version number for --lgpl" ;;
1201         esac
1202         lgpl=$arg
1203         shift ;;
1204       --makefile-name )
1205         shift
1206         if test $# = 0; then
1207           func_fatal_error "missing argument for --makefile-name"
1208         fi
1209         makefile_name="$1"
1210         shift ;;
1211       --makefile-name=* )
1212         makefile_name=`echo "X$1" | sed -e 's/^X--makefile-name=//'`
1213         shift ;;
1214       --libtool )
1215         libtool=true
1216         shift ;;
1217       --no-libtool )
1218         libtool=false
1219         shift ;;
1220       --macro-prefix )
1221         shift
1222         if test $# = 0; then
1223           func_fatal_error "missing argument for --macro-prefix"
1224         fi
1225         macro_prefix="$1"
1226         shift ;;
1227       --macro-prefix=* )
1228         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
1229         shift ;;
1230       --po-domain )
1231         shift
1232         if test $# = 0; then
1233           func_fatal_error "missing argument for --po-domain"
1234         fi
1235         po_domain="$1"
1236         shift ;;
1237       --po-domain=* )
1238         po_domain=`echo "X$1" | sed -e 's/^X--po-domain=//'`
1239         shift ;;
1240       --witness-c-macro )
1241         shift
1242         if test $# = 0; then
1243           func_fatal_error "missing argument for --witness-c-macro"
1244         fi
1245         witness_c_macro="$1"
1246         shift ;;
1247       --witness-c-macro=* )
1248         witness_c_macro=`echo "X$1" | sed -e 's/^X--witness-c-macro=//'`
1249         shift ;;
1250       --vc-files )
1251         vc_files=true
1252         shift ;;
1253       --no-vc-files )
1254         vc_files=false
1255         shift ;;
1256       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch )
1257         do_changelog=false
1258         shift ;;
1259       --dry-run )
1260         doit=false
1261         shift ;;
1262       -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy )
1263         symbolic=true
1264         shift ;;
1265       --local-symlink | --local-symlin | --local-symli | --local-syml | --local-sym | --local-sy | --local-s )
1266         lsymbolic=true
1267         shift ;;
1268       -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | --more-syml | --more-sym | --more-sy | --more-s | --more- | --more | --mor | --mo )
1269         symbolic=true
1270         do_copyrights=
1271         shift ;;
1272       --help | --hel | --he | --h )
1273         func_usage
1274         func_exit $? ;;
1275       --version | --versio | --versi | --vers )
1276         func_version
1277         func_exit $? ;;
1278       -- )
1279         # Stop option processing
1280         shift
1281         break ;;
1282       -* )
1283         echo "gnulib-tool: unknown option $1" 1>&2
1284         echo "Try 'gnulib-tool --help' for more information." 1>&2
1285         func_exit 1 ;;
1286       * )
1287         break ;;
1288     esac
1289   done
1290
1291   if case "$mode" in import | add-import | remove-import) true;; *) false;; esac; then
1292     if test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \
1293        || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \
1294        || test "$single_configure" != false; then
1295       echo "gnulib-tool: invalid options for '$mode' mode" 1>&2
1296       echo "Try 'gnulib-tool --help' for more information." 1>&2
1297       func_exit 1
1298     fi
1299   fi
1300   # This code helps migrating from --import to --add-import or --update. It can
1301   # be removed on 2012-01-01.
1302   if test "$mode" = import && test $# = 0; then
1303     echo "gnulib-tool: cowardly refusing to erase the module list." 1>&2
1304     echo "The meaning of the option '--import' has changed." 1>&2
1305     echo "See the documentation at" 1>&2
1306     echo "<http://www.gnu.org/software/gnulib/manual/html_node/Modified-imports.html>." 1>&2
1307     echo "For updating to a newer version of gnulib, use" 1>&2
1308     echo "  gnulib-tool --add-import" 1>&2
1309     echo "For restoring files that were omitted from version control, use" 1>&2
1310     echo "  gnulib-tool --update" 1>&2
1311     func_exit 1
1312   fi
1313   if test "$mode" = update; then
1314     if test $# != 0; then
1315       echo "gnulib-tool: too many arguments in 'update' mode" 1>&2
1316       echo "Try 'gnulib-tool --help' for more information." 1>&2
1317       echo "If you really want to modify the gnulib configuration of your project," 1>&2
1318       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
1319       func_exit 1
1320     fi
1321     if test -n "$local_gnulib_dir" || test -n "$supplied_libname" \
1322        || test -n "$sourcebase" || test -n "$m4base" || test -n "$pobase" \
1323        || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \
1324        || test -n "$inctests" || test -n "$incobsolete" \
1325        || test -n "$inc_cxx_tests" || test -n "$inc_longrunning_tests" \
1326        || test -n "$inc_privileged_tests" || test -n "$inc_unportable_tests" \
1327        || test -n "$inc_all_tests" \
1328        || test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \
1329        || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \
1330        || test -n "$avoidlist" || test -n "$lgpl" || test -n "$makefile_name" \
1331        || test -n "$macro_prefix" || test -n "$po_domain" \
1332        || test -n "$witness_c_macro" || test -n "$vc_files"; then
1333       echo "gnulib-tool: invalid options for 'update' mode" 1>&2
1334       echo "Try 'gnulib-tool --help' for more information." 1>&2
1335       echo "If you really want to modify the gnulib configuration of your project," 1>&2
1336       echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
1337       func_exit 1
1338     fi
1339     do_changelog=false
1340   fi
1341   if test -n "$pobase" && test -z "$po_domain"; then
1342     echo "gnulib-tool: together with --po-base, you need to specify --po-domain" 1>&2
1343     echo "Try 'gnulib-tool --help' for more information." 1>&2
1344     func_exit 1
1345   fi
1346   if test -z "$pobase" && test -n "$po_domain"; then
1347     func_warning "--po-domain has no effect without a --po-base option"
1348   fi
1349   if test "$cond_dependencies" = true && test -n "$inctests"; then
1350     echo "gnulib-tool: option --conditional-dependencies is not supported with --with-tests" 1>&2
1351     func_exit 1
1352   fi
1353
1354   # Determine the minimum supported autoconf version from the project's
1355   # configure.ac.
1356   DEFAULT_AUTOCONF_MINVERSION="2.59"
1357   autoconf_minversion=
1358   configure_ac=
1359   if case "$mode" in import | add-import | remove-import | update) true;; *) false;; esac \
1360      && test -n "$destdir"; then
1361     if test -f "$destdir"/configure.ac; then
1362       configure_ac="$destdir/configure.ac"
1363     else
1364       if test -f "$destdir"/configure.in; then
1365         configure_ac="$destdir/configure.in"
1366       fi
1367     fi
1368   else
1369     if test -f configure.ac; then
1370       configure_ac="configure.ac"
1371     else
1372       if test -f configure.in; then
1373         configure_ac="configure.in"
1374       fi
1375     fi
1376   fi
1377   if test -n "$configure_ac"; then
1378     # Use sed, not autoconf --trace, to look for the AC_PREREQ invocation,
1379     # because when some m4 files are omitted from a version control repository,
1380     # "autoconf --trace=AC_PREREQ" fails with an error message like this:
1381     #   m4: aclocal.m4:851: Cannot open m4/absolute-header.m4: No such file or directory
1382     #   autom4te: m4 failed with exit status: 1
1383     prereqs=
1384     my_sed_traces='
1385       s,#.*$,,
1386       s,^dnl .*$,,
1387       s, dnl .*$,,
1388       /AC_PREREQ/ {
1389         s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,\1,p
1390       }'
1391     prereqs=`sed -n -e "$my_sed_traces" < "$configure_ac"`
1392     if test -n "$prereqs"; then
1393       autoconf_minversion=`
1394         for version in $prereqs; do echo $version; done |
1395         LC_ALL=C sort -nru | sed -e 1q
1396       `
1397     fi
1398   fi
1399   if test -z "$autoconf_minversion"; then
1400     autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION
1401   fi
1402   case "$autoconf_minversion" in
1403     1.* | 2.[0-4]* | 2.5[0-8]*)
1404       func_fatal_error "minimum supported autoconf version is 2.59. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;;
1405   esac
1406
1407   # Remove trailing slashes from the directory names. This is necessary for
1408   # m4base (to avoid an error in func_import) and optional for the others.
1409   sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
1410   case "$local_gnulib_dir" in
1411     */ ) local_gnulib_dir=`echo "$local_gnulib_dir" | sed -e "$sed_trimtrailingslashes"` ;;
1412   esac
1413   case "$sourcebase" in
1414     */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
1415   esac
1416   case "$m4base" in
1417     */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
1418   esac
1419   case "$pobase" in
1420     */ ) pobase=`echo "$pobase" | sed -e "$sed_trimtrailingslashes"` ;;
1421   esac
1422   case "$docbase" in
1423     */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;;
1424   esac
1425   case "$testsbase" in
1426     */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
1427   esac
1428   case "$auxdir" in
1429     */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
1430   esac
1431 }
1432
1433 func_gnulib_dir
1434 func_tmpdir
1435 trap 'exit_status=$?
1436       if test "$signal" != 0; then
1437         echo "caught signal $signal" >&2
1438       fi
1439       rm -rf "$tmp"
1440       exit $exit_status' 0
1441 for signal in 1 2 3 13 15; do
1442   trap '{ signal='$signal'; func_exit 1; }' $signal
1443 done
1444 signal=0
1445
1446 # Note: The 'eval' silences stderr output in dash.
1447 if (declare -A x && { x[f/2]='foo'; x[f/3]='bar'; eval test '${x[f/2]}' = foo; }) 2>/dev/null; then
1448   # Zsh 4 and Bash 4 have associative arrays.
1449   have_associative=true
1450 else
1451   # For other shells, use 'eval' with computed shell variable names.
1452   have_associative=false
1453 fi
1454
1455 # func_lookup_file file
1456 # looks up a file in $local_gnulib_dir or $gnulib_dir, or combines it through
1457 # 'patch'.
1458 # Input:
1459 # - local_gnulib_dir  from --local-dir
1460 # Output:
1461 # - lookedup_file   name of the merged (combined) file
1462 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
1463 func_lookup_file ()
1464 {
1465   lkfile="$1"
1466   if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile"; then
1467     lookedup_file="$local_gnulib_dir/$lkfile"
1468     lookedup_tmp=
1469   else
1470     if test -f "$gnulib_dir/$lkfile"; then
1471       if test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$lkfile.diff"; then
1472         lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'`
1473         rm -f "$tmp/$lkbase"
1474         cp "$gnulib_dir/$lkfile" "$tmp/$lkbase"
1475         patch -s "$tmp/$lkbase" < "$local_gnulib_dir/$lkfile.diff" \
1476           || func_fatal_error "patch file $local_gnulib_dir/$lkfile.diff didn't apply cleanly"
1477         lookedup_file="$tmp/$lkbase"
1478         lookedup_tmp=true
1479       else
1480         lookedup_file="$gnulib_dir/$lkfile"
1481         lookedup_tmp=
1482       fi
1483     else
1484       func_fatal_error "file $gnulib_dir/$lkfile not found"
1485     fi
1486   fi
1487 }
1488
1489 # func_sanitize_modulelist
1490 # receives a list of possible module names on standard input, one per line.
1491 # It removes those which are just file names unrelated to modules, and outputs
1492 # the resulting list to standard output, one per line.
1493 func_sanitize_modulelist ()
1494 {
1495   sed -e '/^CVS\//d' -e '/\/CVS\//d' \
1496       -e '/^ChangeLog$/d' -e '/\/ChangeLog$/d' \
1497       -e '/^COPYING$/d' -e '/\/COPYING$/d' \
1498       -e '/^README$/d' -e '/\/README$/d' \
1499       -e '/^TEMPLATE$/d' \
1500       -e '/^TEMPLATE-EXTENDED$/d' \
1501       -e '/^TEMPLATE-TESTS$/d' \
1502       -e '/^\..*/d' \
1503       -e '/~$/d'
1504 }
1505
1506 # func_all_modules
1507 # Input:
1508 # - local_gnulib_dir  from --local-dir
1509 func_all_modules ()
1510 {
1511   # Filter out metainformation files like README, which are not modules.
1512   # Filter out unit test modules; they can be retrieved through
1513   # --extract-tests-module if desired.
1514   {
1515     (cd "$gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,')
1516     if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
1517       (cd "$local_gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,' -e 's,\.diff$,,')
1518     fi
1519   } \
1520       | func_sanitize_modulelist \
1521       | sed -e '/-tests$/d' \
1522       | LC_ALL=C sort -u
1523 }
1524
1525 # func_exists_module module
1526 # tests whether a module, given by name, exists
1527 # Input:
1528 # - local_gnulib_dir  from --local-dir
1529 func_exists_module ()
1530 {
1531   { test -f "$gnulib_dir/modules/$1" \
1532     || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
1533          && test -f "$local_gnulib_dir/modules/$1"; }; } \
1534   && test "CVS" != "$1" \
1535   && test "ChangeLog" != "$1" \
1536   && test "COPYING" != "$1" \
1537   && test "README" != "$1" \
1538   && test "TEMPLATE" != "$1" \
1539   && test "TEMPLATE-EXTENDED" != "$1" \
1540   && test "TEMPLATE-TESTS" != "$1"
1541 }
1542
1543 # func_verify_module
1544 # verifies a module name
1545 # Input:
1546 # - local_gnulib_dir  from --local-dir
1547 # - module          module name argument
1548 func_verify_module ()
1549 {
1550   if func_exists_module "$module"; then
1551     # OK, $module is a correct module name.
1552     # Verify that building the module description with 'patch' succeeds.
1553     func_lookup_file "modules/$module"
1554   else
1555     func_warning "module $module doesn't exist"
1556     module=
1557   fi
1558 }
1559
1560 # func_verify_nontests_module
1561 # verifies a module name, excluding tests modules
1562 # Input:
1563 # - local_gnulib_dir  from --local-dir
1564 # - module          module name argument
1565 func_verify_nontests_module ()
1566 {
1567   case "$module" in
1568     *-tests ) module= ;;
1569     * ) func_verify_module ;;
1570   esac
1571 }
1572
1573 # func_verify_tests_module
1574 # verifies a module name, considering only tests modules
1575 # Input:
1576 # - local_gnulib_dir  from --local-dir
1577 # - module          module name argument
1578 func_verify_tests_module ()
1579 {
1580   case "$module" in
1581     *-tests ) func_verify_module ;;
1582     * ) module= ;;
1583   esac
1584 }
1585
1586 # Suffix of a sed expression that extracts a particular field from a
1587 # module description.
1588 # A field starts with a line that contains a keyword, such as 'Description',
1589 # followed by a colon and optional whitespace. All following lines, up to
1590 # the next field (or end of file if there is none) form the contents of the
1591 # field.
1592 # An absent field is equivalent to a field with empty contents.
1593 # NOTE: Keep this in sync with sed_extract_cache_prog below!
1594 sed_extract_prog=':[     ]*$/ {
1595   :a
1596     n
1597     s/^Description:[     ]*$//
1598     s/^Comment:[         ]*$//
1599     s/^Status:[  ]*$//
1600     s/^Notice:[  ]*$//
1601     s/^Applicability:[   ]*$//
1602     s/^Files:[   ]*$//
1603     s/^Depends-on:[      ]*$//
1604     s/^configure\.ac-early:[     ]*$//
1605     s/^configure\.ac:[   ]*$//
1606     s/^Makefile\.am:[    ]*$//
1607     s/^Include:[         ]*$//
1608     s/^Link:[    ]*$//
1609     s/^License:[         ]*$//
1610     s/^Maintainer:[      ]*$//
1611     tb
1612     p
1613     ba
1614   :b
1615 }'
1616
1617 # Piece of a sed expression that converts a field header line to a shell
1618 # variable name,
1619 # NOTE: Keep this in sync with sed_extract_prog above!
1620 sed_extract_field_header='
1621   s/^Description:[       ]*$/description/
1622   s/^Comment:[   ]*$/comment/
1623   s/^Status:[    ]*$/status/
1624   s/^Notice:[    ]*$/notice/
1625   s/^Applicability:[     ]*$/applicability/
1626   s/^Files:[     ]*$/files/
1627   s/^Depends-on:[        ]*$/dependson/
1628   s/^configure\.ac-early:[       ]*$/configureac_early/
1629   s/^configure\.ac:[     ]*$/configureac/
1630   s/^Makefile\.am:[      ]*$/makefile/
1631   s/^Include:[   ]*$/include/
1632   s/^Link:[      ]*$/link/
1633   s/^License:[   ]*$/license/
1634   s/^Maintainer:[        ]*$/maintainer/'
1635
1636 if $modcache; then
1637
1638   if $have_associative; then
1639
1640     # Declare the associative arrays.
1641     declare -A modcache_cached
1642     sed_to_declare_statement='s|^.*/\([a-zA-Z0-9_]*\)/$|declare -A modcache_\1|p'
1643     declare_script=`echo "$sed_extract_field_header" | sed -n -e "$sed_to_declare_statement"`
1644     eval "$declare_script"
1645
1646   else
1647
1648     # func_cache_var module
1649     # computes the cache variable name corresponding to $module.
1650     # Note: This computation can map different module names to the same
1651     # cachevar (such as 'foo-bar', 'foo_bar', or 'foo/bar'); the caller has
1652     # to protect against this case.
1653     # Output:
1654     # - cachevar               a shell variable name
1655     if (f=foo; eval echo '${f//o/e}') < /dev/null 2>/dev/null | grep fee >/dev/null; then
1656       # Bash 2.0 and newer, ksh, and zsh support the syntax
1657       #   ${param//pattern/replacement}
1658       # as a shorthand for
1659       #   `echo "$param" | sed -e "s/pattern/replacement/g"`.
1660       # Note: The 'eval' is necessary for dash and NetBSD /bin/sh.
1661       eval 'func_cache_var ()
1662       {
1663         cachevar=c_${1//[!a-zA-Z0-9_]/_}
1664       }'
1665     else
1666       func_cache_var ()
1667       {
1668         case $1 in
1669           *[!a-zA-Z0-9_]*)
1670             cachevar=c_`echo "$1" | LC_ALL=C sed -e 's/[^a-zA-Z0-9_]/_/g'` ;;
1671           *)
1672             cachevar=c_$1 ;;
1673         esac
1674       }
1675     fi
1676
1677   fi
1678
1679   # func_init_sed_convert_to_cache_statements
1680   # Input:
1681   # - modcachevar_assignment
1682   # Output:
1683   # - sed_convert_to_cache_statements
1684   func_init_sed_convert_to_cache_statements ()
1685   {
1686     # 'sed' script that turns a module description into shell script
1687     # assignments, suitable to be eval'ed.  All active characters are escaped.
1688     # This script turns
1689     #   Description:
1690     #   Some module's description
1691     #
1692     #   Files:
1693     #   lib/file.h
1694     # into:
1695     #   modcache_description[$1]=\
1696     #   'Some module'"'"'s description
1697     #   '
1698     #   modcache_files[$1]=\
1699     #   'lib/file.h'
1700     # or:
1701     #   c_MODULE_description_set=set; c_MODULE_description=\
1702     #   'Some module'"'"'s description
1703     #   '
1704     #   c_MODULE_files_set=set; c_MODULE_files=\
1705     #   'lib/file.h'
1706     # The script consists of two parts:
1707     # 1) Ignore the lines before the first field header.
1708     # 2) A loop, treating non-field-header lines by escaping single quotes
1709     #    and adding a closing quote in the last line,
1710     sed_convert_to_cache_statements="
1711       :llla
1712         # Here we have not yet seen a field header.
1713
1714         # See if the current line contains a field header.
1715         t llla1
1716         :llla1
1717         ${sed_extract_field_header}
1718         t lllb
1719
1720         # No field header. Ignore the line.
1721
1722         # Read the next line. Upon EOF, just exit.
1723         n
1724       b llla
1725
1726       :lllb
1727         # The current line contains a field header.
1728
1729         # Turn it into the beginning of an assignment.
1730         s/^\\(.*\\)\$/${modcachevar_assignment}\\\\/
1731
1732         # Move it to the hold space. Don't print it yet,
1733         # because we want no assignment if the field is empty.
1734         h
1735
1736         # Read the next line.
1737         # Upon EOF, the field was empty. Print no assignment. Just exit.
1738         n
1739
1740         # See if the current line contains a field header.
1741         t lllb1
1742         :lllb1
1743         ${sed_extract_field_header}
1744         # If it is, the previous field was empty. Print no assignment.
1745         t lllb
1746
1747         # Not a field header.
1748
1749         # Print the previous line, held in the hold space.
1750         x
1751         p
1752         x
1753
1754         # Transform single quotes.
1755         s/'/'\"'\"'/g
1756
1757         # Prepend a single quote.
1758         s/^/'/
1759
1760         :lllc
1761
1762           # Move it to the hold space.
1763           h
1764
1765           # Read the next line.
1766           # Upon EOF, branch.
1767           \${
1768             b llle
1769           }
1770           n
1771
1772           # See if the current line contains a field header.
1773           t lllc1
1774           :lllc1
1775           ${sed_extract_field_header}
1776           t llld
1777
1778           # Print the previous line, held in the hold space.
1779           x
1780           p
1781           x
1782
1783           # Transform single quotes.
1784           s/'/'\"'\"'/g
1785
1786         b lllc
1787
1788         :llld
1789         # A field header.
1790         # Print the previous line, held in the hold space, with a single quote
1791         # to end the assignment.
1792         x
1793         s/\$/'/
1794         p
1795         x
1796
1797       b lllb
1798
1799       :llle
1800       # EOF seen.
1801       # Print the previous line, held in the hold space, with a single quote
1802       # to end the assignment.
1803       x
1804       s/\$/'/
1805       p
1806       # Exit.
1807       n
1808       "
1809     if ! $sed_comments; then
1810       # Remove comments.
1811       sed_convert_to_cache_statements=`echo "$sed_convert_to_cache_statements" \
1812                                        | sed -e 's/^ *//' -e 's/^#.*//'`
1813     fi
1814   }
1815
1816   if $have_associative; then
1817     # sed_convert_to_cache_statements does not depend on the module.
1818     modcachevar_assignment='modcache_\1[$1]='
1819     func_init_sed_convert_to_cache_statements
1820   fi
1821
1822   # func_cache_lookup_module module
1823   #
1824   # looks up a module, like 'func_lookup_file modules/$module', and stores all
1825   # of its relevant data in a cache in the memory of the processing shell.  If
1826   # already cached, it does not look it up again, thus saving file access time.
1827   # Parameters:
1828   # - module                             non-empty string
1829   # Output if $have_associative:
1830   # - modcache_cached[$module]           set to yes
1831   # - modcache_description[$module] ==
1832   # - modcache_status[$module]        \  set to the field's value, minus the
1833   # - ...                             /  final newline,
1834   # - modcache_maintainer[$module]  ==   or unset if the field's value is empty
1835   # Output if ! $have_associative:
1836   # - cachevar                           a shell variable name
1837   # - ${cachevar}_cached                 set to $module
1838   # - ${cachevar}_description       ==
1839   # - ${cachevar}_status              \  set to the field's value, minus the
1840   # - ...                             /  final newline,
1841   # - ${cachevar}_maintainer        ==   or unset if the field's value is empty
1842   # - ${cachevar}_description_set   ==
1843   # - ${cachevar}_status_set          \  set to non-empty if the field's value
1844   # - ...                             /  is non-empty,
1845   # - ${cachevar}_maintainer_set    ==   or unset if the field's value is empty
1846   func_cache_lookup_module ()
1847   {
1848     if $have_associative; then
1849       eval 'cached=${modcache_cached[$1]}'
1850     else
1851       func_cache_var "$1"
1852       eval "cached=\"\$${cachevar}_cached\""
1853     fi
1854     if test -z "$cached"; then
1855       # Not found in cache. Look it up on the file system.
1856       func_lookup_file "modules/$1"
1857       if $have_associative; then
1858         eval 'modcache_cached[$1]=yes'
1859       else
1860         eval "${cachevar}_cached=\"\$1\""
1861       fi
1862       if ! $have_associative; then
1863         # sed_convert_to_cache_statements depends on the module.
1864         modcachevar_assignment="${cachevar}"'_\1_set=set; '"${cachevar}"'_\1='
1865         func_init_sed_convert_to_cache_statements
1866       fi
1867       cache_statements=`LC_ALL=C sed -n -e "$sed_convert_to_cache_statements" < "$lookedup_file"`
1868       eval "$cache_statements"
1869     else
1870       if ! $have_associative; then
1871         if test "$1" != "$cached"; then
1872           func_fatal_error "cache variable collision between $1 and $cached"
1873         fi
1874       fi
1875     fi
1876   }
1877
1878 fi
1879
1880 # func_get_description module
1881 # Input:
1882 # - local_gnulib_dir  from --local-dir
1883 # - modcache          true or false, from --cache-modules/--no-cache-modules
1884 func_get_description ()
1885 {
1886   if ! $modcache; then
1887     func_lookup_file "modules/$1"
1888     sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file"
1889   else
1890     func_cache_lookup_module "$1"
1891     # Output the field's value, including the final newline (if any).
1892     if $have_associative; then
1893       if eval 'test -n "${modcache_description[$1]+set}"'; then
1894         eval 'echo "${modcache_description[$1]}"'
1895       fi
1896     else
1897       eval "field_set=\"\$${cachevar}_description_set\""
1898       if test -n "$field_set"; then
1899         eval "field_value=\"\$${cachevar}_description\""
1900         echo "${field_value}"
1901       fi
1902     fi
1903   fi
1904 }
1905
1906 # func_get_comment module
1907 # Input:
1908 # - local_gnulib_dir  from --local-dir
1909 # - modcache          true or false, from --cache-modules/--no-cache-modules
1910 func_get_comment ()
1911 {
1912   if ! $modcache; then
1913     func_lookup_file "modules/$1"
1914     sed -n -e "/^Comment$sed_extract_prog" < "$lookedup_file"
1915   else
1916     func_cache_lookup_module "$1"
1917     # Output the field's value, including the final newline (if any).
1918     if $have_associative; then
1919       if eval 'test -n "${modcache_comment[$1]+set}"'; then
1920         eval 'echo "${modcache_comment[$1]}"'
1921       fi
1922     else
1923       eval "field_set=\"\$${cachevar}_comment_set\""
1924       if test -n "$field_set"; then
1925         eval "field_value=\"\$${cachevar}_comment\""
1926         echo "${field_value}"
1927       fi
1928     fi
1929   fi
1930 }
1931
1932 # func_get_status module
1933 # Input:
1934 # - local_gnulib_dir  from --local-dir
1935 # - modcache          true or false, from --cache-modules/--no-cache-modules
1936 func_get_status ()
1937 {
1938   if ! $modcache; then
1939     func_lookup_file "modules/$1"
1940     sed -n -e "/^Status$sed_extract_prog" < "$lookedup_file"
1941   else
1942     func_cache_lookup_module "$1"
1943     # Output the field's value, including the final newline (if any).
1944     if $have_associative; then
1945       if eval 'test -n "${modcache_status[$1]+set}"'; then
1946         eval 'echo "${modcache_status[$1]}"'
1947       fi
1948     else
1949       eval "field_set=\"\$${cachevar}_status_set\""
1950       if test -n "$field_set"; then
1951         eval "field_value=\"\$${cachevar}_status\""
1952         echo "${field_value}"
1953       fi
1954     fi
1955   fi
1956 }
1957
1958 # func_get_notice module
1959 # Input:
1960 # - local_gnulib_dir  from --local-dir
1961 # - modcache          true or false, from --cache-modules/--no-cache-modules
1962 func_get_notice ()
1963 {
1964   if ! $modcache; then
1965     func_lookup_file "modules/$1"
1966     sed -n -e "/^Notice$sed_extract_prog" < "$lookedup_file"
1967   else
1968     func_cache_lookup_module "$1"
1969     # Output the field's value, including the final newline (if any).
1970     if $have_associative; then
1971       if eval 'test -n "${modcache_notice[$1]+set}"'; then
1972         eval 'echo "${modcache_notice[$1]}"'
1973       fi
1974     else
1975       eval "field_set=\"\$${cachevar}_notice_set\""
1976       if test -n "$field_set"; then
1977         eval "field_value=\"\$${cachevar}_notice\""
1978         echo "${field_value}"
1979       fi
1980     fi
1981   fi
1982 }
1983
1984 # func_get_applicability module
1985 # Input:
1986 # - local_gnulib_dir  from --local-dir
1987 # - modcache          true or false, from --cache-modules/--no-cache-modules
1988 # The expected result (on stdout) is either 'main', or 'tests', or 'all'.
1989 func_get_applicability ()
1990 {
1991   if ! $modcache; then
1992     func_lookup_file "modules/$1"
1993     my_applicability=`sed -n -e "/^Applicability$sed_extract_prog" < "$lookedup_file"`
1994   else
1995     func_cache_lookup_module "$1"
1996     # Get the field's value, without the final newline.
1997     if $have_associative; then
1998       eval 'my_applicability="${modcache_applicability[$1]}"'
1999     else
2000       eval "my_applicability=\"\$${cachevar}_applicability\""
2001     fi
2002   fi
2003   if test -n "$my_applicability"; then
2004     echo $my_applicability
2005   else
2006     # The default is 'main' or 'tests', depending on the module's name.
2007     case $1 in
2008       *-tests) echo "tests";;
2009       *)       echo "main";;
2010     esac
2011   fi
2012 }
2013
2014 # func_get_filelist module
2015 # Input:
2016 # - local_gnulib_dir  from --local-dir
2017 # - modcache          true or false, from --cache-modules/--no-cache-modules
2018 func_get_filelist ()
2019 {
2020   if ! $modcache; then
2021     func_lookup_file "modules/$1"
2022     sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file"
2023   else
2024     func_cache_lookup_module "$1"
2025     # Output the field's value, including the final newline (if any).
2026     if $have_associative; then
2027       if eval 'test -n "${modcache_files[$1]+set}"'; then
2028         eval 'echo "${modcache_files[$1]}"'
2029       fi
2030     else
2031       eval "field_set=\"\$${cachevar}_files_set\""
2032       if test -n "$field_set"; then
2033         eval "field_value=\"\$${cachevar}_files\""
2034         echo "${field_value}"
2035       fi
2036     fi
2037   fi
2038   echo m4/00gnulib.m4
2039   echo m4/gnulib-common.m4
2040   case "$autoconf_minversion" in
2041     2.59)
2042       echo m4/onceonly.m4
2043       ;;
2044   esac
2045 }
2046
2047 # func_filter_filelist outputvar separator filelist prefix suffix removed_prefix removed_suffix [added_prefix [added_suffix]]
2048 # stores in outputvar the filtered and processed filelist. Filtering: Only the
2049 # elements starting with prefix and ending with suffix are considered.
2050 # Processing: removed_prefix and removed_suffix are removed from each element,
2051 # added_prefix and added_suffix are added to each element.
2052 # prefix, suffix should not contain shell-special characters.
2053 # removed_prefix, removed_suffix should not contain the characters "$`\{}[]^|.
2054 # added_prefix, added_suffix should not contain the characters \|&.
2055 func_filter_filelist ()
2056 {
2057   if test "$2" != "$nl" \
2058      || { $fast_func_append \
2059           && { test -z "$6" || $fast_func_remove_prefix; } \
2060           && { test -z "$7" || $fast_func_remove_suffix; }; \
2061         }; then
2062     ffflist=
2063     for fff in $3; do
2064       # Do not quote possibly-empty parameters in case patterns,
2065       # AIX and HP-UX ksh won't match them if they are empty.
2066       case "$fff" in
2067         $4*$5)
2068           if test -n "$6"; then
2069             func_remove_prefix fff "$6"
2070           fi
2071           if test -n "$7"; then
2072             func_remove_suffix fff "$7"
2073           fi
2074           fff="$8${fff}$9"
2075           if test -z "$ffflist"; then
2076             ffflist="${fff}"
2077           else
2078             func_append ffflist "$2${fff}"
2079           fi
2080           ;;
2081       esac
2082     done
2083   else
2084     sed_fff_filter="s|^$6\(.*\)$7\$|$8\\1$9|"
2085     ffflist=`for fff in $3; do
2086                case "$fff" in
2087                  $4*$5) echo "$fff" ;;
2088                esac
2089              done | sed -e "$sed_fff_filter"`
2090   fi
2091   eval "$1=\"\$ffflist\""
2092 }
2093
2094 # func_get_dependencies module
2095 # Input:
2096 # - local_gnulib_dir  from --local-dir
2097 # - modcache          true or false, from --cache-modules/--no-cache-modules
2098 func_get_dependencies ()
2099 {
2100   # ${module}-tests implicitly depends on ${module}, if that module exists.
2101   case "$1" in
2102     *-tests)
2103       fgd1="$1"
2104       func_remove_suffix fgd1 '-tests'
2105       if func_exists_module "$fgd1"; then
2106         echo "$fgd1"
2107       fi
2108       ;;
2109   esac
2110   # Then the explicit dependencies listed in the module description.
2111   { if ! $modcache; then
2112       func_lookup_file "modules/$1"
2113       sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file"
2114     else
2115       func_cache_lookup_module "$1"
2116       # Output the field's value, including the final newline (if any).
2117       if $have_associative; then
2118         if eval 'test -n "${modcache_dependson[$1]+set}"'; then
2119           eval 'echo "${modcache_dependson[$1]}"'
2120         fi
2121       else
2122         eval "field_set=\"\$${cachevar}_dependson_set\""
2123         if test -n "$field_set"; then
2124           eval "field_value=\"\$${cachevar}_dependson\""
2125           echo "${field_value}"
2126         fi
2127       fi
2128     fi
2129   } \
2130   | sed -e '/^#/d'
2131 }
2132
2133 # func_get_autoconf_early_snippet module
2134 # Input:
2135 # - local_gnulib_dir  from --local-dir
2136 # - modcache          true or false, from --cache-modules/--no-cache-modules
2137 func_get_autoconf_early_snippet ()
2138 {
2139   if ! $modcache; then
2140     func_lookup_file "modules/$1"
2141     sed -n -e "/^configure\.ac-early$sed_extract_prog" < "$lookedup_file"
2142   else
2143     func_cache_lookup_module "$1"
2144     # Output the field's value, including the final newline (if any).
2145     if $have_associative; then
2146       if eval 'test -n "${modcache_configureac_early[$1]+set}"'; then
2147         eval 'echo "${modcache_configureac_early[$1]}"'
2148       fi
2149     else
2150       eval "field_set=\"\$${cachevar}_configureac_early_set\""
2151       if test -n "$field_set"; then
2152         eval "field_value=\"\$${cachevar}_configureac_early\""
2153         echo "${field_value}"
2154       fi
2155     fi
2156   fi
2157 }
2158
2159 # func_get_autoconf_snippet module
2160 # Input:
2161 # - local_gnulib_dir  from --local-dir
2162 # - modcache          true or false, from --cache-modules/--no-cache-modules
2163 func_get_autoconf_snippet ()
2164 {
2165   if ! $modcache; then
2166     func_lookup_file "modules/$1"
2167     sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file"
2168   else
2169     func_cache_lookup_module "$1"
2170     # Output the field's value, including the final newline (if any).
2171     if $have_associative; then
2172       if eval 'test -n "${modcache_configureac[$1]+set}"'; then
2173         eval 'echo "${modcache_configureac[$1]}"'
2174       fi
2175     else
2176       eval "field_set=\"\$${cachevar}_configureac_set\""
2177       if test -n "$field_set"; then
2178         eval "field_value=\"\$${cachevar}_configureac\""
2179         echo "${field_value}"
2180       fi
2181     fi
2182   fi
2183 }
2184
2185 # func_get_automake_snippet_conditional module
2186 # returns the part of the Makefile.am snippet that can be put inside Automake
2187 # conditionals.
2188 # Input:
2189 # - local_gnulib_dir  from --local-dir
2190 # - modcache          true or false, from --cache-modules/--no-cache-modules
2191 func_get_automake_snippet_conditional ()
2192 {
2193   if ! $modcache; then
2194     func_lookup_file "modules/$1"
2195     sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
2196   else
2197     func_cache_lookup_module "$1"
2198     # Output the field's value, including the final newline (if any).
2199     if $have_associative; then
2200       if eval 'test -n "${modcache_makefile[$1]+set}"'; then
2201         eval 'echo "${modcache_makefile[$1]}"'
2202       fi
2203     else
2204       eval "field_set=\"\$${cachevar}_makefile_set\""
2205       if test -n "$field_set"; then
2206         eval "field_value=\"\$${cachevar}_makefile\""
2207         echo "${field_value}"
2208       fi
2209     fi
2210   fi
2211 }
2212
2213 # func_get_automake_snippet_unconditional module
2214 # returns the part of the Makefile.am snippet that must stay outside of
2215 # Automake conditionals.
2216 # Input:
2217 # - local_gnulib_dir  from --local-dir
2218 # - modcache          true or false, from --cache-modules/--no-cache-modules
2219 func_get_automake_snippet_unconditional ()
2220 {
2221   case "$1" in
2222     *-tests)
2223       # *-tests module live in tests/, not lib/.
2224       # Synthesize an EXTRA_DIST augmentation.
2225       all_files=`func_get_filelist $1`
2226       func_filter_filelist tests_files " " "$all_files" 'tests/' '' 'tests/' ''
2227       extra_files="$tests_files"
2228       if test -n "$extra_files"; then
2229         echo "EXTRA_DIST +=" $extra_files
2230         echo
2231       fi
2232       ;;
2233     *)
2234       # Synthesize an EXTRA_DIST augmentation.
2235       sed_combine_lines='/\\$/{
2236         :a
2237         N
2238         s/\\\n/ /
2239         s/\\$/\\/
2240         ta
2241       }'
2242       sed_extract_mentioned_files='s/^lib_SOURCES[       ]*+=[   ]*//p'
2243       already_mentioned_files=` \
2244         { if ! $modcache; then
2245             func_lookup_file "modules/$1"
2246             sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
2247           else
2248             func_cache_lookup_module "$1"
2249             if $have_associative; then
2250               if eval 'test -n "${modcache_makefile[$1]+set}"'; then
2251                 eval 'echo "${modcache_makefile[$1]}"'
2252               fi
2253             else
2254               eval 'field_set="$'"${cachevar}"'_makefile_set"'
2255               if test -n "$field_set"; then
2256                 eval 'field_value="$'"${cachevar}"'_makefile"'
2257                 echo "${field_value}"
2258               fi
2259             fi
2260           fi
2261         } \
2262         | sed -e "$sed_combine_lines" \
2263         | sed -n -e "$sed_extract_mentioned_files" | sed -e 's/#.*//'`
2264       all_files=`func_get_filelist $1`
2265       func_filter_filelist lib_files "$nl" "$all_files" 'lib/' '' 'lib/' ''
2266       # Remove $already_mentioned_files from $lib_files.
2267       echo "$lib_files" | LC_ALL=C sort -u > "$tmp"/lib-files
2268       extra_files=`for f in $already_mentioned_files; do echo $f; done \
2269                    | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/lib-files`
2270       if test -n "$extra_files"; then
2271         echo "EXTRA_DIST +=" $extra_files
2272         echo
2273       fi
2274       # Synthesize also an EXTRA_lib_SOURCES augmentation.
2275       # This is necessary so that automake can generate the right list of
2276       # dependency rules.
2277       # A possible approach would be to use autom4te --trace of the redefined
2278       # AC_LIBOBJ and AC_REPLACE_FUNCS macros when creating the Makefile.am
2279       # (use autom4te --trace, not just grep, so that AC_LIBOBJ invocations
2280       # inside autoconf's built-in macros are not missed).
2281       # But it's simpler and more robust to do it here, based on the file list.
2282       # If some .c file exists and is not used with AC_LIBOBJ - for example,
2283       # a .c file is preprocessed into another .c file for BUILT_SOURCES -,
2284       # automake will generate a useless dependency; this is harmless.
2285       case "$1" in
2286         relocatable-prog-wrapper) ;;
2287         pt_chown) ;;
2288         *)
2289           func_filter_filelist extra_files "$nl" "$extra_files" '' '.c' '' ''
2290           if test -n "$extra_files"; then
2291             echo "EXTRA_lib_SOURCES +=" $extra_files
2292             echo
2293           fi
2294           ;;
2295       esac
2296       # Synthesize an EXTRA_DIST augmentation also for the files in build-aux/.
2297       func_filter_filelist buildaux_files "$nl" "$all_files" 'build-aux/' '' 'build-aux/' ''
2298       if test -n "$buildaux_files"; then
2299         sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
2300         echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"`
2301         echo
2302       fi
2303       # Synthesize an EXTRA_DIST augmentation also for the files from top/.
2304       func_filter_filelist top_files "$nl" "$all_files" 'top/' '' 'top/' ''
2305       if test -n "$top_files"; then
2306         sed_prepend_topdir='s,^,$(top_srcdir)/,'
2307         echo "EXTRA_DIST += "`echo "$top_files" | sed -e "$sed_prepend_topdir"`
2308         echo
2309       fi
2310       ;;
2311   esac
2312 }
2313
2314 # func_get_automake_snippet module
2315 # Input:
2316 # - local_gnulib_dir  from --local-dir
2317 # - modcache          true or false, from --cache-modules/--no-cache-modules
2318 func_get_automake_snippet ()
2319 {
2320   func_get_automake_snippet_conditional "$1"
2321   func_get_automake_snippet_unconditional "$1"
2322 }
2323
2324 # func_get_include_directive module
2325 # Input:
2326 # - local_gnulib_dir  from --local-dir
2327 # - modcache          true or false, from --cache-modules/--no-cache-modules
2328 func_get_include_directive ()
2329 {
2330   {
2331     if ! $modcache; then
2332       func_lookup_file "modules/$1"
2333       sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file"
2334     else
2335       func_cache_lookup_module "$1"
2336       # Output the field's value, including the final newline (if any).
2337       if $have_associative; then
2338         if eval 'test -n "${modcache_include[$1]+set}"'; then
2339           eval 'echo "${modcache_include[$1]}"'
2340         fi
2341       else
2342         eval "field_set=\"\$${cachevar}_include_set\""
2343         if test -n "$field_set"; then
2344           eval "field_value=\"\$${cachevar}_include\""
2345           echo "${field_value}"
2346         fi
2347       fi
2348     fi
2349   } | sed -e 's/^\(["<]\)/#include \1/'
2350 }
2351
2352 # func_get_link_directive module
2353 # Input:
2354 # - local_gnulib_dir  from --local-dir
2355 # - modcache          true or false, from --cache-modules/--no-cache-modules
2356 func_get_link_directive ()
2357 {
2358   if ! $modcache; then
2359     func_lookup_file "modules/$1"
2360     sed -n -e "/^Link$sed_extract_prog" < "$lookedup_file"
2361   else
2362     func_cache_lookup_module "$1"
2363     # Output the field's value, including the final newline (if any).
2364     if $have_associative; then
2365       if eval 'test -n "${modcache_link[$1]+set}"'; then
2366         eval 'echo "${modcache_link[$1]}"'
2367       fi
2368     else
2369       eval "field_set=\"\$${cachevar}_link_set\""
2370       if test -n "$field_set"; then
2371         eval "field_value=\"\$${cachevar}_link\""
2372         echo "${field_value}"
2373       fi
2374     fi
2375   fi
2376 }
2377
2378 # func_get_license module
2379 # Input:
2380 # - local_gnulib_dir  from --local-dir
2381 # - modcache          true or false, from --cache-modules/--no-cache-modules
2382 func_get_license ()
2383 {
2384   {
2385     if ! $modcache; then
2386       func_lookup_file "modules/$1"
2387       sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
2388     else
2389       func_cache_lookup_module "$1"
2390       # Output the field's value, including the final newline (if any).
2391       if $have_associative; then
2392         if eval 'test -n "${modcache_license[$1]+set}"'; then
2393           eval 'echo "${modcache_license[$1]}"'
2394         fi
2395       else
2396         eval "field_set=\"\$${cachevar}_license_set\""
2397         if test -n "$field_set"; then
2398           eval "field_value=\"\$${cachevar}_license\""
2399           echo "${field_value}"
2400         fi
2401       fi
2402     fi
2403     # The default is GPL.
2404     echo "GPL"
2405   } | sed -e 's,^ *$,,' | sed -e 1q
2406 }
2407
2408 # func_get_maintainer module
2409 # Input:
2410 # - local_gnulib_dir  from --local-dir
2411 # - modcache          true or false, from --cache-modules/--no-cache-modules
2412 func_get_maintainer ()
2413 {
2414   if ! $modcache; then
2415     func_lookup_file "modules/$1"
2416     sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
2417   else
2418     func_cache_lookup_module "$1"
2419     # Output the field's value, including the final newline (if any).
2420     if $have_associative; then
2421       if eval 'test -n "${modcache_maintainer[$1]+set}"'; then
2422         eval 'echo "${modcache_maintainer[$1]}"'
2423       fi
2424     else
2425       eval "field_set=\"\$${cachevar}_maintainer_set\""
2426       if test -n "$field_set"; then
2427         eval "field_value=\"\$${cachevar}_maintainer\""
2428         echo "${field_value}"
2429       fi
2430     fi
2431   fi
2432 }
2433
2434 # func_get_tests_module module
2435 # Input:
2436 # - local_gnulib_dir  from --local-dir
2437 func_get_tests_module ()
2438 {
2439   # The naming convention for tests modules is hardwired: ${module}-tests.
2440   if test -f "$gnulib_dir/modules/$1"-tests \
2441      || { test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules" \
2442           && test -f "$local_gnulib_dir/modules/$1"-tests; }; then
2443     echo "$1"-tests
2444   fi
2445 }
2446
2447 # func_acceptable module
2448 # tests whether a module is acceptable.
2449 # Input:
2450 # - avoidlist       list of modules to avoid
2451 func_acceptable ()
2452 {
2453   for avoid in $avoidlist; do
2454     if test "$avoid" = "$1"; then
2455       return 1
2456     fi
2457   done
2458   return 0
2459 }
2460
2461 # sed expression to keep the first 32 characters of each line.
2462 sed_first_32_chars='s/^\(................................\).*/\1/'
2463
2464 # func_module_shellfunc_name module
2465 # computes the shell function name that will contain the m4 macros for the module.
2466 # Input:
2467 # - macro_prefix    prefix to use
2468 # Output:
2469 # - shellfunc       shell function name
2470 func_module_shellfunc_name ()
2471 {
2472   case $1 in
2473     *[!a-zA-Z0-9_]*)
2474       shellfunc=func_${macro_prefix}_gnulib_m4code_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2475     *)
2476       shellfunc=func_${macro_prefix}_gnulib_m4code_$1 ;;
2477   esac
2478 }
2479
2480 # func_module_shellvar_name module
2481 # computes the shell variable name the will be set to true once the m4 macros
2482 # for the module have been executed.
2483 # Output:
2484 # - shellvar        shell variable name
2485 func_module_shellvar_name ()
2486 {
2487   case $1 in
2488     *[!a-zA-Z0-9_]*)
2489       shellvar=${macro_prefix}_gnulib_enabled_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2490     *)
2491       shellvar=${macro_prefix}_gnulib_enabled_$1 ;;
2492   esac
2493 }
2494
2495 # func_module_conditional_name module
2496 # computes the automake conditional name for the module.
2497 # Output:
2498 # - conditional     name of automake conditional
2499 func_module_conditional_name ()
2500 {
2501   case $1 in
2502     *[!a-zA-Z0-9_]*)
2503       conditional=${macro_prefix}_GNULIB_ENABLED_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2504     *)
2505       conditional=${macro_prefix}_GNULIB_ENABLED_$1 ;;
2506   esac
2507 }
2508
2509 # func_uncond_add_module B
2510 # notes the presence of B as an unconditional module.
2511 #
2512 # func_conddep_add_module A B cond
2513 # notes the presence of a conditional dependency from module A to module B,
2514 # subject to the condition that A is enabled and cond is true.
2515 #
2516 # func_cond_module_p B
2517 # tests whether module B is conditional.
2518 #
2519 # func_cond_module_condition A B
2520 # returns the condition when B should be enabled as a dependency of A, once the
2521 # m4 code for A has been executed.
2522 # Output: - condition
2523 #
2524 if $have_associative; then
2525   declare -A conddep_isuncond
2526   declare -A conddep_dependers
2527   declare -A conddep_condition
2528   func_uncond_add_module ()
2529   {
2530     eval 'conddep_isuncond[$1]=true'
2531     eval 'unset conddep_dependers[$1]'
2532   }
2533   func_conddep_add_module ()
2534   {
2535     eval 'isuncond="${conddep_isuncond[$2]}"'
2536     if test -z "$isuncond"; then
2537       # No unconditional dependency to B known at this point.
2538       eval 'conddep_dependers[$2]="${conddep_dependers[$2]} $1"'
2539       eval 'conddep_condition[$1---$2]="$3"'
2540     fi
2541   }
2542   func_cond_module_p ()
2543   {
2544     eval 'previous_dependers="${conddep_dependers[$1]}"'
2545     test -n "$previous_dependers"
2546   }
2547   func_cond_module_condition ()
2548   {
2549     eval 'condition="${conddep_condition[$1---$2]}"'
2550   }
2551 else
2552   func_uncond_add_module ()
2553   {
2554     case $1 in
2555       *[!a-zA-Z0-9_]*)
2556         suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2557       *)
2558         suffix=$1 ;;
2559     esac
2560     eval 'conddep_isuncond_'"$suffix"'=true'
2561     eval 'unset conddep_dependers_'"$suffix"
2562   }
2563   func_conddep_add_module ()
2564   {
2565     case $2 in
2566       *[!a-zA-Z0-9_]*)
2567         suffix=`echo "$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2568       *)
2569         suffix=$2 ;;
2570     esac
2571     eval 'isuncond="${conddep_isuncond_'"$suffix"'}"'
2572     if test -z "$isuncond"; then
2573       eval 'conddep_dependers_'"$suffix"'="${conddep_dependers_'"$suffix"'} $1"'
2574       suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"`
2575       eval 'conddep_condition_'"$suffix"'="$3"'
2576     fi
2577   }
2578   func_cond_module_p ()
2579   {
2580     case $1 in
2581       *[!a-zA-Z0-9_]*)
2582         suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
2583       *)
2584         suffix=$1 ;;
2585     esac
2586     eval 'previous_dependers="${conddep_dependers_'"$suffix"'}"'
2587     test -n "$previous_dependers"
2588   }
2589   func_cond_module_condition ()
2590   {
2591     suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"`
2592     eval 'condition="${conddep_condition_'"$suffix"'}"'
2593   }
2594 fi
2595
2596 sed_dependencies_without_conditions='s/ *\[.*//'
2597
2598 # func_modules_transitive_closure
2599 # Input:
2600 # - local_gnulib_dir  from --local-dir
2601 # - modcache        true or false, from --cache-modules/--no-cache-modules
2602 # - modules         list of specified modules
2603 # - inctests        true if tests should be included, blank otherwise
2604 # - incobsolete     true if obsolete modules among dependencies should be
2605 #                   included, blank otherwise
2606 # - inc_cxx_tests   true if C++ interoperability tests should be included,
2607 #                   blank otherwise
2608 # - inc_longrunning_tests  true if long-runnings tests should be included,
2609 #                          blank otherwise
2610 # - inc_privileged_tests  true if tests that require root privileges should be
2611 #                         included, blank otherwise
2612 # - inc_unportable_tests  true if tests that fail on some platforms should be
2613 #                         included, blank otherwise
2614 # - inc_all_direct_tests   true if all kinds of problematic unit tests among
2615 #                          the unit tests of the specified modules should be
2616 #                          included, blank otherwise
2617 # - inc_all_indirect_tests   true if all kinds of problematic unit tests among
2618 #                            the unit tests of the dependencies should be
2619 #                            included, blank otherwise
2620 # - excl_cxx_tests   true if C++ interoperability tests should be excluded,
2621 #                    blank otherwise
2622 # - excl_longrunning_tests  true if long-runnings tests should be excluded,
2623 #                           blank otherwise
2624 # - excl_privileged_tests  true if tests that require root privileges should be
2625 #                          excluded, blank otherwise
2626 # - excl_unportable_tests  true if tests that fail on some platforms should be
2627 #                          excluded, blank otherwise
2628 # - avoidlist       list of modules to avoid
2629 # - cond_dependencies  true if conditional dependencies shall be supported,
2630 #                      blank otherwise
2631 # - tmp             pathname of a temporary directory
2632 # Output:
2633 # - modules         list of modules, including dependencies
2634 # - conddep_dependers, conddep_condition  information about conditionally
2635 #                                         enabled modules
2636 func_modules_transitive_closure ()
2637 {
2638   sed_escape_dependency='s|\([/.]\)|\\\1|g'
2639   # In order to process every module only once (for speed), process an "input
2640   # list" of modules, producing an "output list" of modules. During each round,
2641   # more modules can be queued in the input list. Once a module on the input
2642   # list has been processed, it is added to the "handled list", so we can avoid
2643   # to process it again.
2644   handledmodules=
2645   inmodules="$modules"
2646   outmodules=
2647   fmtc_inc_all_tests="$inc_all_direct_tests"
2648   if test "$cond_dependencies" = true; then
2649     for module in $inmodules; do
2650       func_verify_module
2651       if test -n "$module"; then
2652         if func_acceptable $module; then
2653           func_uncond_add_module $module
2654         fi
2655       fi
2656     done
2657   fi
2658   while test -n "$inmodules"; do
2659     inmodules_this_round="$inmodules"
2660     inmodules=                    # Accumulator, queue for next round
2661     for module in $inmodules_this_round; do
2662       func_verify_module
2663       if test -n "$module"; then
2664         if func_acceptable $module; then
2665           func_append outmodules " $module"
2666           if test "$cond_dependencies" = true; then
2667             if func_get_automake_snippet_conditional $module | grep '^if ' > /dev/null; then
2668               # A module whose Makefile.am snippet contains a reference to an
2669               # automake conditional. If we were to use it conditionally, we
2670               # would get an error
2671               #   configure: error: conditional "..." was never defined.
2672               # because automake 1.11.1 does not handle nested conditionals
2673               # correctly. As a workaround, make the module unconditional.
2674               func_uncond_add_module $module
2675             fi
2676             if func_cond_module_p $module; then
2677               conditional=true
2678             else
2679               conditional=false
2680             fi
2681           fi
2682           deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
2683           # Duplicate dependencies are harmless, but Jim wants a warning.
2684           duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d`
2685           if test -n "$duplicated_deps"; then
2686             func_warning "module $module has duplicated dependencies: "`echo $duplicated_deps`
2687           fi
2688           if test -n "$inctests"; then
2689             testsmodule=`func_get_tests_module $module`
2690             if test -n "$testsmodule"; then
2691               deps="$deps $testsmodule"
2692             fi
2693           fi
2694           for dep in $deps; do
2695             # Determine whether to include the dependency or tests module.
2696             inc=true
2697             for word in `func_get_status $dep`; do
2698               case "$word" in
2699                 obsolete)
2700                   test -n "$incobsolete" \
2701                     || inc=false
2702                   ;;
2703                 c++-test)
2704                   test -z "$excl_cxx_tests" \
2705                     || inc=false
2706                   test -n "$fmtc_inc_all_tests" || test -n "$inc_cxx_tests" \
2707                     || inc=false
2708                   ;;
2709                 longrunning-test)
2710                   test -z "$excl_longrunning_tests" \
2711                     || inc=false
2712                   test -n "$fmtc_inc_all_tests" || test -n "$inc_longrunning_tests" \
2713                     || inc=false
2714                   ;;
2715                 privileged-test)
2716                   test -z "$excl_privileged_tests" \
2717                     || inc=false
2718                   test -n "$fmtc_inc_all_tests" || test -n "$inc_privileged_tests" \
2719                     || inc=false
2720                   ;;
2721                 unportable-test)
2722                   test -z "$excl_unportable_tests" \
2723                     || inc=false
2724                   test -n "$fmtc_inc_all_tests" || test -n "$inc_unportable_tests" \
2725                     || inc=false
2726                   ;;
2727                 *-test)
2728                   test -n "$fmtc_inc_all_tests" \
2729                     || inc=false
2730                   ;;
2731               esac
2732             done
2733             if $inc; then
2734               func_append inmodules " $dep"
2735               if test "$cond_dependencies" = true; then
2736                 escaped_dep=`echo "$dep" | sed -e "$sed_escape_dependency"`
2737                 sed_extract_condition1='/^ *'"$escaped_dep"' *$/{
2738                   s/^.*$/true/p
2739                 }'
2740                 sed_extract_condition2='/^ *'"$escaped_dep"' *\[.*\] *$/{
2741                   s/^ *'"$escaped_dep"' *\[\(.*\)\] *$/\1/p
2742                 }'
2743                 condition=`func_get_dependencies $module | sed -n -e "$sed_extract_condition1" -e "$sed_extract_condition2"`
2744                 if test "$condition" = true; then
2745                   condition=
2746                 fi
2747                 if test -n "$condition"; then
2748                   func_conddep_add_module "$module" "$dep" "$condition"
2749                 else
2750                   if $conditional; then
2751                     func_conddep_add_module "$module" "$dep" true
2752                   else
2753                     func_uncond_add_module "$dep"
2754                   fi
2755                 fi
2756               fi
2757             fi
2758           done
2759         fi
2760       fi
2761     done
2762     handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
2763     # Remove $handledmodules from $inmodules.
2764     for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
2765     inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
2766     fmtc_inc_all_tests="$inc_all_indirect_tests"
2767   done
2768   modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u`
2769   rm -f "$tmp"/queued-modules
2770 }
2771
2772 # func_show_module_list
2773 # Input:
2774 # - specified_modules  list of specified modules (one per line, sorted)
2775 # - modules         complete list of modules (one per line, sorted)
2776 # - tmp             pathname of a temporary directory
2777 func_show_module_list ()
2778 {
2779   if case "$TERM" in
2780        xterm*) test -t 1;;
2781        *) false;;
2782      esac; then
2783     # Assume xterm compatible escape sequences.
2784     bold_on=`printf '\x1b[1m'`
2785     bold_off=`printf '\x1b[0m'`
2786   else
2787     bold_on=
2788     bold_off=
2789   fi
2790   echo "Module list with included dependencies (indented):"
2791   echo "$specified_modules" | sed -e '/^$/d' -e 's/$/| /' > "$tmp"/specified-modules
2792   echo "$modules" | sed -e '/^$/d' \
2793     | LC_ALL=C join -t '|' -a2 "$tmp"/specified-modules - \
2794     | sed -e 's/^\(.*\)|.*/|\1/' -e 's/^/    /' -e 's/^    |\(.*\)$/  '"${bold_on}"'\1'"${bold_off}"'/'
2795 }
2796
2797 # func_modules_transitive_closure_separately
2798 # Determine main module list and tests-related module list separately.
2799 # The main module list is the transitive closure of the specified modules,
2800 # ignoring tests modules. Its lib/* sources go into $sourcebase/. If --lgpl
2801 # is specified, it will consist only of LGPLed source.
2802 # The tests-related module list is the transitive closure of the specified
2803 # modules, including tests modules, minus the main module list excluding
2804 # modules of applicability 'all'. Its lib/* sources (brought in through
2805 # dependencies of *-tests modules) go into $testsbase/. It may contain GPLed
2806 # source, even if --lgpl is specified.
2807 # Input:
2808 # - local_gnulib_dir  from --local-dir
2809 # - modcache        true or false, from --cache-modules/--no-cache-modules
2810 # - specified_modules  list of specified modules
2811 # - inctests        true if tests should be included, blank otherwise
2812 # - incobsolete     true if obsolete modules among dependencies should be
2813 #                   included, blank otherwise
2814 # - inc_cxx_tests   true if C++ interoperability tests should be included,
2815 #                   blank otherwise
2816 # - inc_longrunning_tests  true if long-runnings tests should be included,
2817 #                          blank otherwise
2818 # - inc_privileged_tests  true if tests that require root privileges should be
2819 #                         included, blank otherwise
2820 # - inc_unportable_tests  true if tests that fail on some platforms should be
2821 #                         included, blank otherwise
2822 # - inc_all_direct_tests   true if all kinds of problematic unit tests among
2823 #                          the unit tests of the specified modules should be
2824 #                          included, blank otherwise
2825 # - inc_all_indirect_tests   true if all kinds of problematic unit tests among
2826 #                            the unit tests of the dependencies should be
2827 #                            included, blank otherwise
2828 # - excl_cxx_tests   true if C++ interoperability tests should be excluded,
2829 #                    blank otherwise
2830 # - excl_longrunning_tests  true if long-runnings tests should be excluded,
2831 #                           blank otherwise
2832 # - excl_privileged_tests  true if tests that require root privileges should be
2833 #                          excluded, blank otherwise
2834 # - excl_unportable_tests  true if tests that fail on some platforms should be
2835 #                          excluded, blank otherwise
2836 # - avoidlist       list of modules to avoid
2837 # - cond_dependencies  true if conditional dependencies shall be supported,
2838 #                      blank otherwise
2839 # - tmp             pathname of a temporary directory
2840 # Output:
2841 # - main_modules    list of modules, including dependencies
2842 # - testsrelated_modules  list of tests-related modules, including dependencies
2843 # - conddep_dependers, conddep_condition  information about conditionally
2844 #                                         enabled modules
2845 func_modules_transitive_closure_separately ()
2846 {
2847   # Determine main module list.
2848   saved_inctests="$inctests"
2849   inctests=""
2850   modules="$specified_modules"
2851   func_modules_transitive_closure
2852   main_modules="$modules"
2853   inctests="$saved_inctests"
2854   if test $verbose -ge 1; then
2855     echo "Main module list:"
2856     echo "$main_modules" | sed -e 's/^/  /'
2857   fi
2858   # Determine tests-related module list.
2859   echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules
2860   testsrelated_modules=`for module in $main_modules; do
2861                           if test \`func_get_applicability $module\` = main; then
2862                             echo $module
2863                           fi
2864                         done \
2865                         | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/final-modules`
2866   if test $verbose -ge 1; then
2867     echo "Tests-related module list:"
2868     echo "$testsrelated_modules" | sed -e 's/^/  /'
2869   fi
2870 }
2871
2872 # func_determine_use_libtests
2873 # Determines whether a $testsbase/libtests.a is needed.
2874 # Input:
2875 # - local_gnulib_dir  from --local-dir
2876 # - modcache        true or false, from --cache-modules/--no-cache-modules
2877 # - testsrelated_modules  list of tests-related modules, including dependencies
2878 # Output:
2879 # - use_libtests    true if a $testsbase/libtests.a is needed, false otherwise
2880 func_determine_use_libtests ()
2881 {
2882   use_libtests=false
2883   for module in $testsrelated_modules; do
2884     func_verify_nontests_module
2885     if test -n "$module"; then
2886       all_files=`func_get_filelist $module`
2887       # Test whether some file in $all_files lies in lib/.
2888       for f in $all_files; do
2889         case $f in
2890           lib/*)
2891             use_libtests=true
2892             break 2
2893             ;;
2894         esac
2895       done
2896     fi
2897   done
2898 }
2899
2900 # func_modules_add_dummy
2901 # Input:
2902 # - local_gnulib_dir  from --local-dir
2903 # - modcache        true or false, from --cache-modules/--no-cache-modules
2904 # - modules         list of modules, including dependencies
2905 # Output:
2906 # - modules         list of modules, including 'dummy' if needed
2907 func_modules_add_dummy ()
2908 {
2909   # Determine whether any module provides a lib_SOURCES augmentation.
2910   have_lib_SOURCES=
2911   sed_remove_backslash_newline=':a
2912 /\\$/{
2913 s/\\$//
2914 N
2915 s/\n//
2916 ba
2917 }'
2918   for module in $modules; do
2919     func_verify_nontests_module
2920     if test -n "$module"; then
2921       # Extract the value of "lib_SOURCES += ...".
2922       for file in `func_get_automake_snippet "$module" | sed -e "$sed_remove_backslash_newline" | sed -n -e 's,^lib_SOURCES[     ]*+=\([^#]*\).*$,\1,p'`; do
2923         # Ignore .h files since they are not compiled.
2924         case "$file" in
2925           *.h) ;;
2926           *)
2927             have_lib_SOURCES=yes
2928             break 2
2929             ;;
2930         esac
2931       done
2932     fi
2933   done
2934   # Add the dummy module, to make sure the library will be non-empty.
2935   if test -z "$have_lib_SOURCES"; then
2936     if func_acceptable "dummy"; then
2937       func_append modules " dummy"
2938     fi
2939   fi
2940 }
2941
2942 # func_modules_add_dummy_separately
2943 # Input:
2944 # - local_gnulib_dir  from --local-dir
2945 # - modcache        true or false, from --cache-modules/--no-cache-modules
2946 # - main_modules    list of modules, including dependencies
2947 # - testsrelated_modules  list of tests-related modules, including dependencies
2948 # - use_libtests    true if a $testsbase/libtests.a is needed, false otherwise
2949 # Output:
2950 # - main_modules    list of modules, including 'dummy' if needed
2951 # - testsrelated_modules  list of tests-related modules, including 'dummy' if
2952 #                         needed
2953 func_modules_add_dummy_separately ()
2954 {
2955   # Add the dummy module to the main module list if needed.
2956   modules="$main_modules"
2957   func_modules_add_dummy
2958   main_modules="$modules"
2959
2960   # Add the dummy module to the tests-related module list if needed.
2961   if $use_libtests; then
2962     modules="$testsrelated_modules"
2963     func_modules_add_dummy
2964     testsrelated_modules="$modules"
2965   fi
2966 }
2967
2968 # func_modules_notice
2969 # Input:
2970 # - local_gnulib_dir  from --local-dir
2971 # - modcache        true or false, from --cache-modules/--no-cache-modules
2972 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
2973 # - modules         list of modules, including dependencies
2974 func_modules_notice ()
2975 {
2976   if test $verbose -ge -1; then
2977     for module in $modules; do
2978       func_verify_module
2979       if test -n "$module"; then
2980         msg=`func_get_notice $module`
2981         if test -n "$msg"; then
2982           echo "Notice from module $module:"
2983           echo "$msg" | sed -e 's/^/  /'
2984         fi
2985       fi
2986     done
2987   fi
2988 }
2989
2990 # func_modules_to_filelist
2991 # Input:
2992 # - local_gnulib_dir  from --local-dir
2993 # - modcache        true or false, from --cache-modules/--no-cache-modules
2994 # - modules         list of modules, including dependencies
2995 # Output:
2996 # - files           list of files
2997 func_modules_to_filelist ()
2998 {
2999   files=
3000   for module in $modules; do
3001     func_verify_module
3002     if test -n "$module"; then
3003       fs=`func_get_filelist $module`
3004       func_append files " $fs"
3005     fi
3006   done
3007   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
3008 }
3009
3010 # func_modules_to_filelist_separately
3011 # Determine the final file lists.
3012 # They must be computed separately, because files in lib/* go into
3013 # $sourcebase/ if they are in the main file list but into $testsbase/
3014 # if they are in the tests-related file list. Furthermore lib/dummy.c
3015 # can be in both.
3016 # Input:
3017 # - local_gnulib_dir  from --local-dir
3018 # - modcache        true or false, from --cache-modules/--no-cache-modules
3019 # - main_modules    list of modules, including dependencies
3020 # - testsrelated_modules  list of tests-related modules, including dependencies
3021 func_modules_to_filelist_separately ()
3022 {
3023   # Determine final main file list.
3024   modules="$main_modules"
3025   func_modules_to_filelist
3026   main_files="$files"
3027   # Determine final tests-related file list.
3028   modules="$testsrelated_modules"
3029   func_modules_to_filelist
3030   testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'`
3031   # Merge both file lists.
3032   sed_remove_empty_lines='/^$/d'
3033   files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u`
3034   if test $verbose -ge 0; then
3035     echo "File list:"
3036     sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,'
3037     echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/  /'
3038   fi
3039 }
3040
3041 # func_compute_include_guard_prefix
3042 # Determine include_guard_prefix.
3043 # Input:
3044 # - macro_prefix    prefix of gl_LIBOBJS macros to use
3045 # Output:
3046 # - include_guard_prefix  replacement for ${gl_include_guard_prefix}
3047 # - sed_replace_include_guard_prefix
3048 #                   sed expression for resolving ${gl_include_guard_prefix}
3049 func_compute_include_guard_prefix ()
3050 {
3051   if test "$macro_prefix" = gl; then
3052     include_guard_prefix='GL'
3053   else
3054     include_guard_prefix='GL_'`echo "$macro_prefix" | LC_ALL=C tr '[a-z]' '[A-Z]'`
3055   fi
3056   sed_replace_include_guard_prefix='s/\${gl_include_guard_prefix}/'"${include_guard_prefix}"'/g'
3057 }
3058
3059 # func_execute_command command [args...]
3060 # Executes a command.
3061 # Uses also the variables
3062 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
3063 func_execute_command ()
3064 {
3065   if test $verbose -ge 0; then
3066     echo "executing $*"
3067     "$@"
3068   else
3069     # Commands like automake produce output to stderr even when they succeed.
3070     # Turn this output off if the command succeeds.
3071     "$@" > "$tmp"/cmdout 2>&1
3072     cmdret=$?
3073     if test $cmdret = 0; then
3074       rm -f "$tmp"/cmdout
3075     else
3076       echo "executing $*"
3077       cat "$tmp"/cmdout 1>&2
3078       rm -f "$tmp"/cmdout
3079       (exit $cmdret)
3080     fi
3081   fi
3082 }
3083
3084 # func_dest_tmpfilename file
3085 # determines the name of a temporary file (file is relative to destdir).
3086 # Input:
3087 # - destdir         target directory
3088 # - doit            : if actions shall be executed, false if only to be printed
3089 # - tmp             pathname of a temporary directory
3090 # Sets variable:
3091 #   - tmpfile       absolute filename of the temporary file
3092 func_dest_tmpfilename ()
3093 {
3094   if $doit; then
3095     # Put the new contents of $file in a file in the same directory (needed
3096     # to guarantee that an 'mv' to "$destdir/$file" works).
3097     tmpfile="$destdir/$1.tmp"
3098   else
3099     # Put the new contents of $file in a file in a temporary directory
3100     # (because the directory of "$file" might not exist).
3101     tmpfile="$tmp"/`basename "$1"`.tmp
3102   fi
3103 }
3104
3105 # func_add_file
3106 # copies a file from gnulib into the destination directory. The destination
3107 # is known to not exist.
3108 # Input:
3109 # - destdir         target directory
3110 # - local_gnulib_dir  from --local-dir
3111 # - modcache        true or false, from --cache-modules/--no-cache-modules
3112 # - f               the original file name
3113 # - lookedup_file   name of the merged (combined) file
3114 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
3115 # - g               the rewritten file name
3116 # - tmpfile         absolute filename of the temporary file
3117 # - doit            : if actions shall be executed, false if only to be printed
3118 # - symbolic        true if files should be symlinked, copied otherwise
3119 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
3120 #                   copied otherwise
3121 func_add_file ()
3122 {
3123   if $doit; then
3124     echo "Copying file $g"
3125     if { test -n "$symbolic" \
3126          || { test -n "$lsymbolic" \
3127               && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
3128        && test -z "$lookedup_tmp" \
3129        && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
3130       func_ln_if_changed "$lookedup_file" "$destdir/$g"
3131     else
3132       mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
3133     fi
3134   else
3135     echo "Copy file $g"
3136   fi
3137 }
3138
3139 # func_update_file
3140 # copies a file from gnulib into the destination directory. The destination
3141 # is known to exist.
3142 # Input:
3143 # - destdir         target directory
3144 # - local_gnulib_dir  from --local-dir
3145 # - modcache        true or false, from --cache-modules/--no-cache-modules
3146 # - f               the original file name
3147 # - lookedup_file   name of the merged (combined) file
3148 # - lookedup_tmp    true if it is located in the tmp directory, blank otherwise
3149 # - g               the rewritten file name
3150 # - tmpfile         absolute filename of the temporary file
3151 # - doit            : if actions shall be executed, false if only to be printed
3152 # - symbolic        true if files should be symlinked, copied otherwise
3153 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
3154 #                   copied otherwise
3155 # - already_present  nonempty if the file should already exist, empty otherwise
3156 func_update_file ()
3157 {
3158   if cmp "$destdir/$g" "$tmpfile" > /dev/null; then
3159     : # The file has not changed.
3160   else
3161     # Replace the file.
3162     if $doit; then
3163       if test -n "$already_present"; then
3164         echo "Updating file $g (backup in ${g}~)"
3165       else
3166         echo "Replacing file $g (non-gnulib code backed up in ${g}~) !!"
3167       fi
3168       mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
3169       if { test -n "$symbolic" \
3170            || { test -n "$lsymbolic" \
3171                 && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; } \
3172          && test -z "$lookedup_tmp" \
3173          && cmp "$lookedup_file" "$tmpfile" > /dev/null; then
3174         func_ln_if_changed "$lookedup_file" "$destdir/$g"
3175       else
3176         mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
3177       fi
3178     else
3179       if test -n "$already_present"; then
3180         echo "Update file $g (backup in ${g}~)"
3181       else
3182         echo "Replace file $g (non-gnulib code backed up in ${g}~) !!"
3183       fi
3184     fi
3185   fi
3186 }
3187
3188 # func_emit_lib_Makefile_am
3189 # emits the contents of library makefile to standard output.
3190 # Input:
3191 # - local_gnulib_dir  from --local-dir
3192 # - modcache        true or false, from --cache-modules/--no-cache-modules
3193 # - modules         list of modules, including dependencies
3194 # - libname         library name
3195 # - pobase          directory relative to destdir where to place *.po files
3196 # - auxdir          directory relative to destdir where to place build aux files
3197 # - makefile_name   from --makefile-name
3198 # - libtool         true if libtool will be used, false or blank otherwise
3199 # - macro_prefix    prefix of gl_LIBOBJS macros to use
3200 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
3201 # - witness_c_macro  from --witness-c-macro
3202 # - actioncmd       (optional) command that will reproduce this invocation
3203 # - for_test        true if creating a package for testing, false otherwise
3204 # - sed_replace_include_guard_prefix
3205 #                   sed expression for resolving ${gl_include_guard_prefix}
3206 # - destfile        filename relative to destdir of makefile being generated
3207 # Input/Output:
3208 # - makefile_am_edits and makefile_am_edit${edit}_{dir,var,val}
3209 #                   list of edits to be done to Makefile.am variables
3210 # Output:
3211 # - uses_subdirs    nonempty if object files in subdirs exist
3212 func_emit_lib_Makefile_am ()
3213 {
3214   # When creating an includable Makefile.am snippet, augment variables with
3215   # += instead of assigning them.
3216   if test -n "$makefile_name"; then
3217     assign='+='
3218   else
3219     assign='='
3220   fi
3221   if test "$libtool" = true; then
3222     libext=la
3223     perhapsLT=LT
3224     sed_eliminate_LDFLAGS="$sed_noop"
3225   else
3226     libext=a
3227     perhapsLT=
3228     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
3229   fi
3230   if $for_test; then
3231     # When creating a package for testing: Attempt to provoke failures,
3232     # especially link errors, already during "make" rather than during
3233     # "make check", because "make check" is not possible in a cross-compiling
3234     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
3235     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
3236   else
3237     sed_transform_check_PROGRAMS="$sed_noop"
3238   fi
3239   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
3240   echo "## Process this file with automake to produce Makefile.in."
3241   func_emit_copyright_notice
3242   if test -n "$actioncmd"; then
3243     # The maximum line length (excluding the terminating newline) of any file
3244     # that is to be preprocessed by config.status is 3070.  config.status uses
3245     # awk, and the HP-UX 11.00 awk fails if a line has length >= 3071;
3246     # similarly, the IRIX 6.5 awk fails if a line has length >= 3072.
3247     len=`echo "$actioncmd" | wc -c`
3248     if test -n "$len" && test "$len" -le 3000; then
3249       echo "# Reproduce by: $actioncmd"
3250     fi
3251   fi
3252   echo
3253   uses_subdirs=
3254   {
3255     for module in $modules; do
3256       func_verify_nontests_module
3257       if test -n "$module"; then
3258         {
3259           func_get_automake_snippet_conditional "$module" |
3260             LC_ALL=C \
3261             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
3262                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
3263                 -e "$sed_eliminate_LDFLAGS" \
3264                 -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \
3265                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
3266                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
3267                 -e "$sed_transform_check_PROGRAMS" \
3268                 -e "$sed_replace_include_guard_prefix"
3269           if test "$module" = 'alloca'; then
3270             echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
3271             echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@"
3272           fi
3273         } > "$tmp"/amsnippet1
3274         {
3275           func_get_automake_snippet_unconditional "$module" |
3276             LC_ALL=C sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
3277         } > "$tmp"/amsnippet2
3278         # Skip the contents if it's entirely empty.
3279         if grep '[^      ]' "$tmp"/amsnippet1 "$tmp"/amsnippet2 > /dev/null ; then
3280           echo "## begin gnulib module $module"
3281           echo
3282           if test "$cond_dependencies" = true; then
3283             if func_cond_module_p "$module"; then
3284               func_module_conditional_name "$module"
3285               echo "if $conditional"
3286             fi
3287           fi
3288           cat "$tmp"/amsnippet1
3289           if test "$cond_dependencies" = true; then
3290             if func_cond_module_p "$module"; then
3291               echo "endif"
3292             fi
3293           fi
3294           cat "$tmp"/amsnippet2
3295           echo "## end   gnulib module $module"
3296           echo
3297         fi
3298         rm -f "$tmp"/amsnippet1 "$tmp"/amsnippet2
3299         # Test whether there are some source files in subdirectories.
3300         for f in `func_get_filelist "$module"`; do
3301           case $f in
3302             lib/*/*.c)
3303               uses_subdirs=yes
3304               break
3305               ;;
3306           esac
3307         done
3308       fi
3309     done
3310   } > "$tmp"/allsnippets
3311   if test -z "$makefile_name"; then
3312     # If there are source files in subdirectories, prevent collision of the
3313     # object files (example: hash.c and libxml/hash.c).
3314     subdir_options=
3315     if test -n "$uses_subdirs"; then
3316       subdir_options=' subdir-objects'
3317     fi
3318     echo "AUTOMAKE_OPTIONS = 1.5 gnits${subdir_options}"
3319   fi
3320   echo
3321   if test -z "$makefile_name"; then
3322     echo "SUBDIRS ="
3323     echo "noinst_HEADERS ="
3324     echo "noinst_LIBRARIES ="
3325     echo "noinst_LTLIBRARIES ="
3326     # Automake versions < 1.9b create an empty pkgdatadir at installation time
3327     # if you specify pkgdata_DATA to empty. This is a workaround.
3328     if grep '^pkgdata_DATA *+=' "$tmp"/allsnippets > /dev/null; then
3329       echo "pkgdata_DATA ="
3330     fi
3331     echo "EXTRA_DIST ="
3332     echo "BUILT_SOURCES ="
3333     echo "SUFFIXES ="
3334   fi
3335   echo "MOSTLYCLEANFILES $assign core *.stackdump"
3336   if test -z "$makefile_name"; then
3337     echo "MOSTLYCLEANDIRS ="
3338     echo "CLEANFILES ="
3339     echo "DISTCLEANFILES ="
3340     echo "MAINTAINERCLEANFILES ="
3341   fi
3342   # Execute edits that apply to the Makefile.am being generated.
3343   edit=0
3344   while test $edit != $makefile_am_edits; do
3345     edit=`expr $edit + 1`
3346     eval dir=\"\$makefile_am_edit${edit}_dir\"
3347     eval var=\"\$makefile_am_edit${edit}_var\"
3348     eval val=\"\$makefile_am_edit${edit}_val\"
3349     if test -n "$var"; then
3350       if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then
3351         echo "${var} += ${val}"
3352         eval "makefile_am_edit${edit}_var="
3353       fi
3354     fi
3355   done
3356   if test -n "$witness_c_macro"; then
3357     cppflags_part1=" -D$witness_c_macro=1"
3358   else
3359     cppflags_part1=
3360   fi
3361   if $for_test; then
3362     cppflags_part2=" -DGNULIB_STRICT_CHECKING=1"
3363   else
3364     cppflags_part2=
3365   fi
3366   if test -z "$makefile_name"; then
3367     echo
3368     echo "AM_CPPFLAGS =$cppflags_part1$cppflags_part2"
3369     echo "AM_CFLAGS ="
3370   else
3371     if test -n "$cppflags_part1$cppflags_part2"; then
3372       echo
3373       echo "AM_CPPFLAGS +=$cppflags_part1$cppflags_part2"
3374     fi
3375   fi
3376   echo
3377   if LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$tmp"/allsnippets > /dev/null \
3378      || { test -n "$makefile_name" \
3379           && test -f "$sourcebase/Makefile.am" \
3380           && LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$sourcebase/Makefile.am" > /dev/null; \
3381         }; then
3382     # One of the snippets or the user's Makefile.am already specifies an
3383     # installation location for the library. Don't confuse automake by saying
3384     # it should not be installed.
3385     :
3386   else
3387     # By default, the generated library should not be installed.
3388     echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext"
3389   fi
3390   echo
3391   echo "${libname}_${libext}_SOURCES ="
3392   # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
3393   # automake during its analysis looks for $(LIBOBJS), not for @LIBOBJS@.
3394   echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
3395   echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
3396   echo "EXTRA_${libname}_${libext}_SOURCES ="
3397   if test "$libtool" = true; then
3398     echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)"
3399     echo "${libname}_${libext}_LDFLAGS += -no-undefined"
3400     # Synthesize an ${libname}_${libext}_LDFLAGS augmentation by combining
3401     # the link dependencies of all modules.
3402     for module in $modules; do
3403       func_verify_nontests_module
3404       if test -n "$module"; then
3405         func_get_link_directive "$module"
3406       fi
3407     done \
3408       | LC_ALL=C sed -e '/^$/d' -e 's/ when linking with libtool.*//' \
3409       | LC_ALL=C sort -u \
3410       | LC_ALL=C sed -e 's/^/'"${libname}_${libext}"'_LDFLAGS += /'
3411   fi
3412   echo
3413   if test -n "$pobase"; then
3414     echo "AM_CPPFLAGS += -DDEFAULT_TEXT_DOMAIN=\\\"${po_domain}-gnulib\\\""
3415     echo
3416   fi
3417   cat "$tmp"/allsnippets \
3418     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
3419   echo
3420   echo "mostlyclean-local: mostlyclean-generic"
3421   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
3422   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
3423   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
3424   echo "          fi; \\"
3425   echo "        done; \\"
3426   echo "        :"
3427   rm -f "$tmp"/allsnippets
3428 }
3429
3430 # func_emit_po_Makevars
3431 # emits the contents of po/ makefile parameterization to standard output.
3432 # Input:
3433 # - local_gnulib_dir  from --local-dir
3434 # - modcache        true or false, from --cache-modules/--no-cache-modules
3435 # - sourcebase      directory relative to destdir where to place source code
3436 # - pobase          directory relative to destdir where to place *.po files
3437 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
3438 func_emit_po_Makevars ()
3439 {
3440   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
3441   func_emit_copyright_notice
3442   echo
3443   echo "# Usually the message domain is the same as the package name."
3444   echo "# But here it has a '-gnulib' suffix."
3445   echo "DOMAIN = ${po_domain}-gnulib"
3446   echo
3447   echo "# These two variables depend on the location of this directory."
3448   echo "subdir = ${pobase}"
3449   echo "top_builddir = "`echo "$pobase" | sed -e 's,//*,/,g' -e 's,[^/][^/]*,..,g'`
3450   echo
3451   cat <<\EOF
3452 # These options get passed to xgettext.
3453 XGETTEXT_OPTIONS = \
3454   --keyword=_ --flag=_:1:pass-c-format \
3455   --keyword=N_ --flag=N_:1:pass-c-format \
3456   --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."' \
3457   --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."' \
3458   --flag=error:3:c-format --flag=error_at_line:5:c-format
3459
3460 # This is the copyright holder that gets inserted into the header of the
3461 # $(DOMAIN).pot file.  gnulib is copyrighted by the FSF.
3462 COPYRIGHT_HOLDER = Free Software Foundation, Inc.
3463
3464 # This is the email address or URL to which the translators shall report
3465 # bugs in the untranslated strings:
3466 # - Strings which are not entire sentences, see the maintainer guidelines
3467 #   in the GNU gettext documentation, section 'Preparing Strings'.
3468 # - Strings which use unclear terms or require additional context to be
3469 #   understood.
3470 # - Strings which make invalid assumptions about notation of date, time or
3471 #   money.
3472 # - Pluralisation problems.
3473 # - Incorrect English spelling.
3474 # - Incorrect formatting.
3475 # It can be your email address, or a mailing list address where translators
3476 # can write to without being subscribed, or the URL of a web page through
3477 # which the translators can contact you.
3478 MSGID_BUGS_ADDRESS = bug-gnulib@gnu.org
3479
3480 # This is the list of locale categories, beyond LC_MESSAGES, for which the
3481 # message catalogs shall be used.  It is usually empty.
3482 EXTRA_LOCALE_CATEGORIES =
3483
3484 # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
3485 # context.  Possible values are "yes" and "no".  Set this to yes if the
3486 # package uses functions taking also a message context, like pgettext(), or
3487 # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
3488 USE_MSGCTXT = no
3489 EOF
3490 }
3491
3492 # func_emit_po_POTFILES_in
3493 # emits the file list to be passed to xgettext to standard output.
3494 # Input:
3495 # - local_gnulib_dir  from --local-dir
3496 # - modcache        true or false, from --cache-modules/--no-cache-modules
3497 # - sourcebase      directory relative to destdir where to place source code
3498 # - files           list of new files
3499 func_emit_po_POTFILES_in ()
3500 {
3501   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
3502   func_emit_copyright_notice
3503   echo
3504   echo "# List of files which contain translatable strings."
3505   echo "$files" | sed -n -e "s,^lib/,$sourcebase/,p"
3506 }
3507
3508 # func_emit_tests_Makefile_am witness_macro
3509 # emits the contents of tests makefile to standard output.
3510 # Input:
3511 # - local_gnulib_dir  from --local-dir
3512 # - modcache        true or false, from --cache-modules/--no-cache-modules
3513 # - modules         list of modules, including dependencies
3514 # - libname         library name
3515 # - auxdir          directory relative to destdir where to place build aux files
3516 # - makefile_name   from --makefile-name
3517 # - libtool         true if libtool will be used, false or blank otherwise
3518 # - sourcebase      relative directory containing lib source code
3519 # - m4base          relative directory containing autoconf macros
3520 # - testsbase       relative directory containing unit test code
3521 # - macro_prefix    prefix of gl_LIBOBJS macros to use
3522 # - witness_c_macro  from --witness-c-macro
3523 # - for_test        true if creating a package for testing, false otherwise
3524 # - single_configure  true if a single configure file should be generated,
3525 #                     false for a separate configure file for the tests
3526 # - use_libtests    true if a libtests.a should be built, false otherwise
3527 # - sed_replace_include_guard_prefix
3528 #                   sed expression for resolving ${gl_include_guard_prefix}
3529 # - destfile        filename relative to destdir of makefile being generated
3530 # Input/Output:
3531 # - makefile_am_edits and makefile_am_edit${edit}_{dir,var,val}
3532 #                   list of edits to be done to Makefile.am variables
3533 # Output:
3534 # - uses_subdirs    nonempty if object files in subdirs exist
3535 func_emit_tests_Makefile_am ()
3536 {
3537   witness_macro="$1"
3538   if test "$libtool" = true; then
3539     libext=la
3540     sed_eliminate_LDFLAGS="$sed_noop"
3541   else
3542     libext=a
3543     sed_eliminate_LDFLAGS='/^lib_LDFLAGS[        ]*+=/d'
3544   fi
3545   if $for_test; then
3546     # When creating a package for testing: Attempt to provoke failures,
3547     # especially link errors, already during "make" rather than during
3548     # "make check", because "make check" is not possible in a cross-compiling
3549     # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
3550     sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
3551   else
3552     sed_transform_check_PROGRAMS="$sed_noop"
3553   fi
3554   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
3555   echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
3556   echo "## Process this file with automake to produce Makefile.in."
3557   func_emit_copyright_notice
3558   echo
3559   uses_subdirs=
3560   {
3561     for module in $modules; do
3562       if $for_test && ! $single_configure; then
3563         func_verify_tests_module
3564       else
3565         func_verify_module
3566       fi
3567       if test -n "$module"; then
3568         {
3569           func_get_automake_snippet "$module" |
3570             LC_ALL=C \
3571             sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
3572                 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
3573                 -e "$sed_eliminate_LDFLAGS" \
3574                 -e 's,lib_\([A-Z][A-Z]*\),libtests_a_\1,g' \
3575                 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
3576                 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
3577                 -e "$sed_transform_check_PROGRAMS" \
3578                 -e "$sed_replace_include_guard_prefix"
3579           if $use_libtests && test "$module" = 'alloca'; then
3580             echo "libtests_a_LIBADD += @${perhapsLT}ALLOCA@"
3581             echo "libtests_a_DEPENDENCIES += @${perhapsLT}ALLOCA@"
3582           fi
3583         } > "$tmp"/amsnippet
3584         # Skip the contents if it's entirely empty.
3585         if grep '[^      ]' "$tmp"/amsnippet > /dev/null ; then
3586           # Mention long-running tests at the end.
3587           ofd=3
3588           for word in `func_get_status "$module"`; do
3589             if test "$word" = 'longrunning-test'; then
3590               ofd=4
3591               break
3592             fi
3593           done
3594           { echo "## begin gnulib module $module"
3595             echo
3596             cat "$tmp"/amsnippet
3597             echo "## end   gnulib module $module"
3598             echo
3599           } >&$ofd
3600         fi
3601         rm -f "$tmp"/amsnippet
3602         # Test whether there are some source files in subdirectories.
3603         for f in `func_get_filelist "$module"`; do
3604           case $f in
3605             lib/*/*.c | tests/*/*.c)
3606               uses_subdirs=yes
3607               break
3608               ;;
3609           esac
3610         done
3611       fi
3612     done
3613   } 3> "$tmp"/main_snippets 4> "$tmp"/longrunning_snippets
3614   # Generate dependencies here, since it eases the debugging of test failures.
3615   # If there are source files in subdirectories, prevent collision of the
3616   # object files (example: hash.c and libxml/hash.c).
3617   subdir_options=
3618   if test -n "$uses_subdirs"; then
3619     subdir_options=' subdir-objects'
3620   fi
3621   echo "AUTOMAKE_OPTIONS = 1.5 foreign${subdir_options}"
3622   echo
3623   if $for_test && ! $single_configure; then
3624     echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
3625     echo
3626   fi
3627   # Nothing is being added to SUBDIRS; nevertheless the existence of this
3628   # variable is needed to avoid an error from automake:
3629   #   "AM_GNU_GETTEXT used but SUBDIRS not defined"
3630   echo "SUBDIRS = ."
3631   echo "TESTS ="
3632   echo "XFAIL_TESTS ="
3633   echo "TESTS_ENVIRONMENT ="
3634   echo "noinst_PROGRAMS ="
3635   if ! $for_test; then
3636     echo "check_PROGRAMS ="
3637   fi
3638   echo "noinst_HEADERS ="
3639   echo "noinst_LIBRARIES ="
3640   if $use_libtests; then
3641     if $for_test; then
3642       echo "noinst_LIBRARIES += libtests.a"
3643     else
3644       echo "check_LIBRARIES = libtests.a"
3645     fi
3646   fi
3647   # Automake versions < 1.9b create an empty pkgdatadir at installation time
3648   # if you specify pkgdata_DATA to empty. This is a workaround.
3649   if grep '^pkgdata_DATA *+=' "$tmp"/main_snippets "$tmp"/longrunning_snippets > /dev/null; then
3650     echo "pkgdata_DATA ="
3651   fi
3652   echo "EXTRA_DIST ="
3653   echo "BUILT_SOURCES ="
3654   echo "SUFFIXES ="
3655   echo "MOSTLYCLEANFILES = core *.stackdump"
3656   echo "MOSTLYCLEANDIRS ="
3657   echo "CLEANFILES ="
3658   echo "DISTCLEANFILES ="
3659   echo "MAINTAINERCLEANFILES ="
3660   # Execute edits that apply to the Makefile.am being generated.
3661   edit=0
3662   while test $edit != $makefile_am_edits; do
3663     edit=`expr $edit + 1`
3664     eval dir=\"\$makefile_am_edit${edit}_dir\"
3665     eval var=\"\$makefile_am_edit${edit}_var\"
3666     eval val=\"\$makefile_am_edit${edit}_val\"
3667     if test -n "$var"; then
3668       if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then
3669         echo "${var} += ${val}"
3670         eval "makefile_am_edit${edit}_var="
3671       fi
3672     fi
3673   done
3674   echo
3675   echo "AM_CPPFLAGS = \\"
3676   if $for_test; then
3677     echo "  -DGNULIB_STRICT_CHECKING=1 \\"
3678   fi
3679   if test -n "$witness_c_macro"; then
3680     echo "  -D$witness_c_macro=1 \\"
3681   fi
3682   if test -n "${witness_macro}"; then
3683     echo "  -D@${witness_macro}@=1 \\"
3684   fi
3685   echo "  -I. -I\$(srcdir) \\"
3686   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
3687   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
3688   echo
3689   local_ldadd_before=''
3690   local_ldadd_after=''
3691   if $use_libtests; then
3692     # All test programs need to be linked with libtests.a.
3693     # It needs to be passed to the linker before ${libname}.${libext}, since
3694     # the tests-related modules depend on the main modules.
3695     # It also needs to be passed to the linker after ${libname}.${libext}
3696     # because the latter might contain incomplete modules (such as the 'error'
3697     # module whose dependency to 'progname' is voluntarily omitted).
3698     # The LIBTESTS_LIBDEPS can be passed to the linker once or twice, it does
3699     # not matter.
3700     local_ldadd_before=' libtests.a'
3701     local_ldadd_after=' libtests.a $(LIBTESTS_LIBDEPS)'
3702   fi
3703   echo "LDADD =${local_ldadd_before} ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}${local_ldadd_after}"
3704   echo
3705   if $use_libtests; then
3706     echo "libtests_a_SOURCES ="
3707     # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
3708     # automake during its analysis looks for $(LIBOBJS), not for @LIBOBJS@.
3709     echo "libtests_a_LIBADD = \$(${macro_prefix}tests_LIBOBJS)"
3710     echo "libtests_a_DEPENDENCIES = \$(${macro_prefix}tests_LIBOBJS)"
3711     echo "EXTRA_libtests_a_SOURCES ="
3712     # The circular dependency in LDADD requires this.
3713     echo "AM_LIBTOOLFLAGS = --preserve-dup-deps"
3714     echo
3715   fi
3716   # Many test scripts use ${EXEEXT} or ${srcdir}.
3717   # EXEEXT is defined by AC_PROG_CC through autoconf.
3718   # srcdir is defined by autoconf and automake.
3719   echo "TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='\$(srcdir)'"
3720   echo
3721   cat "$tmp"/main_snippets "$tmp"/longrunning_snippets \
3722     | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
3723   echo "# Clean up after Solaris cc."
3724   echo "clean-local:"
3725   echo "        rm -rf SunWS_cache"
3726   echo
3727   echo "mostlyclean-local: mostlyclean-generic"
3728   echo "        @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
3729   echo "          if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
3730   echo "            echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
3731   echo "          fi; \\"
3732   echo "        done; \\"
3733   echo "        :"
3734   rm -f "$tmp"/main_snippets "$tmp"/longrunning_snippets
3735 }
3736
3737 # func_emit_initmacro_start macro_prefix
3738 # emits the first few statements of the gl_INIT macro to standard output.
3739 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
3740 func_emit_initmacro_start ()
3741 {
3742   macro_prefix_arg="$1"
3743   # Overriding AC_LIBOBJ and AC_REPLACE_FUNCS has the effect of storing
3744   # platform-dependent object files in ${macro_prefix_arg}_LIBOBJS instead of
3745   # LIBOBJS.  The purpose is to allow several gnulib instantiations under
3746   # a single configure.ac file.  (AC_CONFIG_LIBOBJ_DIR does not allow this
3747   # flexibility.)
3748   # Furthermore it avoids an automake error like this when a Makefile.am
3749   # that uses pieces of gnulib also uses $(LIBOBJ):
3750   #   automatically discovered file `error.c' should not be explicitly mentioned
3751   echo "  m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix_arg}_LIBOBJ]))"
3752   echo "  m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix_arg}_REPLACE_FUNCS]))"
3753   # Overriding AC_LIBSOURCES has the same purpose of avoiding the automake
3754   # error when a Makefile.am that uses pieces of gnulib also uses $(LIBOBJ):
3755   #   automatically discovered file `error.c' should not be explicitly mentioned
3756   # We let automake know about the files to be distributed through the
3757   # EXTRA_lib_SOURCES variable.
3758   echo "  m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix_arg}_LIBSOURCES]))"
3759   # Create data variables for checking the presence of files that are mentioned
3760   # as AC_LIBSOURCES arguments. These are m4 variables, not shell variables,
3761   # because we want the check to happen when the configure file is created,
3762   # not when it is run. ${macro_prefix_arg}_LIBSOURCES_LIST is the list of
3763   # files to check for. ${macro_prefix_arg}_LIBSOURCES_DIR is the subdirectory
3764   # in which to expect them.
3765   echo "  m4_pushdef([${macro_prefix_arg}_LIBSOURCES_LIST], [])"
3766   echo "  m4_pushdef([${macro_prefix_arg}_LIBSOURCES_DIR], [])"
3767   echo "  gl_COMMON"
3768 }
3769
3770 # func_emit_initmacro_end macro_prefix
3771 # emits the last few statements of the gl_INIT macro to standard output.
3772 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
3773 func_emit_initmacro_end ()
3774 {
3775   macro_prefix_arg="$1"
3776   # Check the presence of files that are mentioned as AC_LIBSOURCES arguments.
3777   # The check is performed only when autoconf is run from the directory where
3778   # the configure.ac resides; if it is run from a different directory, the
3779   # check is skipped.
3780   echo "  m4_ifval(${macro_prefix_arg}_LIBSOURCES_LIST, ["
3781   echo "    m4_syscmd([test ! -d ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[ ||"
3782   echo "      for gl_file in ]${macro_prefix_arg}_LIBSOURCES_LIST[ ; do"
3783   echo "        if test ! -r ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file ; then"
3784   echo "          echo \"missing file ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file\" >&2"
3785   echo "          exit 1"
3786   echo "        fi"
3787   echo "      done])dnl"
3788   echo "      m4_if(m4_sysval, [0], [],"
3789   echo "        [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])"
3790   echo "  ])"
3791   echo "  m4_popdef([${macro_prefix_arg}_LIBSOURCES_DIR])"
3792   echo "  m4_popdef([${macro_prefix_arg}_LIBSOURCES_LIST])"
3793   echo "  m4_popdef([AC_LIBSOURCES])"
3794   echo "  m4_popdef([AC_REPLACE_FUNCS])"
3795   echo "  m4_popdef([AC_LIBOBJ])"
3796   echo "  AC_CONFIG_COMMANDS_PRE(["
3797   echo "    ${macro_prefix_arg}_libobjs="
3798   echo "    ${macro_prefix_arg}_ltlibobjs="
3799   echo "    if test -n \"\$${macro_prefix_arg}_LIBOBJS\"; then"
3800   echo "      # Remove the extension."
3801   echo "      sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
3802   echo "      for i in \`for i in \$${macro_prefix_arg}_LIBOBJS; do echo \"\$i\"; done | sed -e \"\$sed_drop_objext\" | sort | uniq\`; do"
3803   echo "        ${macro_prefix_arg}_libobjs=\"\$${macro_prefix_arg}_libobjs \$i.\$ac_objext\""
3804   echo "        ${macro_prefix_arg}_ltlibobjs=\"\$${macro_prefix_arg}_ltlibobjs \$i.lo\""
3805   echo "      done"
3806   echo "    fi"
3807   echo "    AC_SUBST([${macro_prefix_arg}_LIBOBJS], [\$${macro_prefix_arg}_libobjs])"
3808   echo "    AC_SUBST([${macro_prefix_arg}_LTLIBOBJS], [\$${macro_prefix_arg}_ltlibobjs])"
3809   echo "  ])"
3810 }
3811
3812 # func_emit_initmacro_done macro_prefix sourcebase
3813 # emits a few statements after the gl_INIT macro to standard output.
3814 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
3815 # - sourcebase      directory relative to destdir where to place source code
3816 func_emit_initmacro_done ()
3817 {
3818   macro_prefix_arg="$1"
3819   sourcebase_arg="$2"
3820   echo
3821   echo "# Like AC_LIBOBJ, except that the module name goes"
3822   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
3823   echo "AC_DEFUN([${macro_prefix_arg}_LIBOBJ], ["
3824   echo "  AS_LITERAL_IF([\$1], [${macro_prefix_arg}_LIBSOURCES([\$1.c])])dnl"
3825   echo "  ${macro_prefix_arg}_LIBOBJS=\"\$${macro_prefix_arg}_LIBOBJS \$1.\$ac_objext\""
3826   echo "])"
3827   echo
3828   echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
3829   echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
3830   echo "AC_DEFUN([${macro_prefix_arg}_REPLACE_FUNCS], ["
3831   echo "  m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl"
3832   echo "  AC_CHECK_FUNCS([\$1], , [${macro_prefix_arg}_LIBOBJ(\$ac_func)])"
3833   echo "])"
3834   echo
3835   echo "# Like AC_LIBSOURCES, except the directory where the source file is"
3836   echo "# expected is derived from the gnulib-tool parameterization,"
3837   echo "# and alloca is special cased (for the alloca-opt module)."
3838   echo "# We could also entirely rely on EXTRA_lib..._SOURCES."
3839   echo "AC_DEFUN([${macro_prefix_arg}_LIBSOURCES], ["
3840   echo "  m4_foreach([_gl_NAME], [\$1], ["
3841   echo "    m4_if(_gl_NAME, [alloca.c], [], ["
3842   echo "      m4_define([${macro_prefix_arg}_LIBSOURCES_DIR], [$sourcebase_arg])"
3843   echo "      m4_append([${macro_prefix_arg}_LIBSOURCES_LIST], _gl_NAME, [ ])"
3844   echo "    ])"
3845   echo "  ])"
3846   echo "])"
3847 }
3848
3849 # func_emit_autoconf_snippet indentation
3850 # emits the autoconf snippet of a module.
3851 # Input:
3852 # - local_gnulib_dir  from --local-dir
3853 # - modcache          true or false, from --cache-modules/--no-cache-modules
3854 # - sed_replace_build_aux  sed expression that replaces reference to build-aux
3855 # - module            the module name
3856 # - toplevel          true or false. 'false' means a subordinate use of
3857 #                     gnulib-tool.
3858 # - disable_libtool   true or false. It tells whether to disable libtool
3859 #                     handling even if it has been specified through the
3860 #                     command line options.
3861 # - disable_gettext   true or false. It tells whether to disable AM_GNU_GETTEXT
3862 #                     invocations.
3863 # - indentation       spaces to prepend on each line
3864 func_emit_autoconf_snippet ()
3865 {
3866   if { case $module in
3867          gnumakefile | maintainer-makefile)
3868            # These modules are meant to be used only in the top-level directory.
3869            $toplevel ;;
3870          *)
3871            true ;;
3872        esac
3873      }; then
3874     func_get_autoconf_snippet "$module" \
3875       | sed -e '/^$/d;' -e "s/^/$indentation/" \
3876             -e "$sed_replace_build_aux" \
3877       | { if $disable_libtool; then
3878             sed -e 's/\$gl_cond_libtool/false/g' \
3879                 -e 's/gl_libdeps/gltests_libdeps/g' \
3880                 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
3881           else
3882             cat
3883           fi
3884         } \
3885       | { if $disable_gettext; then
3886             sed -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
3887           else
3888             cat
3889           fi
3890         }
3891     if test "$module" = 'alloca' && test "$libtool" = true && ! $disable_libtool; then
3892       echo 'changequote(,)dnl'
3893       echo 'LTALLOCA=`echo "$ALLOCA" | sed -e '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
3894       echo 'changequote([, ])dnl'
3895       echo 'AC_SUBST([LTALLOCA])'
3896     fi
3897   fi
3898 }
3899
3900 # func_emit_autoconf_snippets modules verifier toplevel disable_libtool disable_gettext
3901 # collects and emit the autoconf snippets of a set of modules.
3902 # Input:
3903 # - local_gnulib_dir  from --local-dir
3904 # - modcache          true or false, from --cache-modules/--no-cache-modules
3905 # - sed_replace_build_aux  sed expression that replaces reference to build-aux
3906 # - modules           the list of modules.
3907 # - verifier          one of func_verify_module, func_verify_nontests_module,
3908 #                     func_verify_tests_module. It selects the subset of
3909 #                     $modules to consider.
3910 # - toplevel          true or false. 'false' means a subordinate use of
3911 #                     gnulib-tool.
3912 # - disable_libtool   true or false. It tells whether to disable libtool
3913 #                     handling even if it has been specified through the
3914 #                     command line options.
3915 # - disable_gettext   true or false. It tells whether to disable AM_GNU_GETTEXT
3916 #                     invocations.
3917 func_emit_autoconf_snippets ()
3918 {
3919   verifier="$2"
3920   toplevel="$3"
3921   disable_libtool="$4"
3922   disable_gettext="$5"
3923   if test "$cond_dependencies" = true; then
3924     # Emit the autoconf code for the unconditional modules.
3925     for module in $1; do
3926       eval $verifier
3927       if test -n "$module"; then
3928         if func_cond_module_p "$module"; then
3929           :
3930         else
3931           func_emit_autoconf_snippet "  "
3932         fi
3933       fi
3934     done
3935     # Initialize the shell variables indicating that the modules are enabled.
3936     for module in $1; do
3937       eval $verifier
3938       if test -n "$module"; then
3939         if func_cond_module_p "$module"; then
3940           func_module_shellvar_name "$module"
3941           echo "  $shellvar=false"
3942         fi
3943       fi
3944     done
3945     # Emit the autoconf code for the conditional modules, each in a separate
3946     # function. This makes it possible to support cycles among conditional
3947     # modules.
3948     for module in $1; do
3949       eval $verifier
3950       if test -n "$module"; then
3951         if func_cond_module_p "$module"; then
3952           func_module_shellfunc_name "$module"
3953           func_module_shellvar_name "$module"
3954           echo "  $shellfunc ()"
3955           echo '  {'
3956           echo "    if ! \$$shellvar; then"
3957           func_emit_autoconf_snippet "      "
3958           echo "      $shellvar=true"
3959           deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
3960           for dep in $deps; do
3961             if func_cond_module_p "$dep"; then
3962               func_module_shellfunc_name "$dep"
3963               func_cond_module_condition "$module" "$dep"
3964               if test "$condition" != true; then
3965                 echo "      if $condition; then"
3966                 echo "        $shellfunc"
3967                 echo '      fi'
3968               else
3969                 echo "      $shellfunc"
3970               fi
3971             else
3972               # The autoconf code for $dep has already been emitted above and
3973               # therefore is already executed when this function is run.
3974               :
3975             fi
3976           done
3977           echo '    fi'
3978           echo '  }'
3979         fi
3980       fi
3981     done
3982     # Emit the dependencies from the unconditional to the conditional modules.
3983     for module in $1; do
3984       eval $verifier
3985       if test -n "$module"; then
3986         if func_cond_module_p "$module"; then
3987           :
3988         else
3989           deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
3990           for dep in $deps; do
3991             if func_cond_module_p "$dep"; then
3992               func_module_shellfunc_name "$dep"
3993               func_cond_module_condition "$module" "$dep"
3994               if test "$condition" != true; then
3995                 echo "  if $condition; then"
3996                 echo "    $shellfunc"
3997                 echo '  fi'
3998               else
3999                 echo "  $shellfunc"
4000               fi
4001             else
4002               # The autoconf code for $dep has already been emitted above and
4003               # therefore is already executed when this code is run.
4004               :
4005             fi
4006           done
4007         fi
4008       fi
4009     done
4010     # Define the Automake conditionals.
4011     echo "  m4_pattern_allow([^${macro_prefix}_GNULIB_ENABLED_])"
4012     for module in $1; do
4013       eval $verifier
4014       if test -n "$module"; then
4015         if func_cond_module_p "$module"; then
4016           func_module_conditional_name "$module"
4017           func_module_shellvar_name "$module"
4018           echo "  AM_CONDITIONAL([$conditional], [\$$shellvar])"
4019         fi
4020       fi
4021     done
4022   else
4023     # Ignore the conditions, and enable all modules unconditionally.
4024     for module in $1; do
4025       eval $verifier
4026       if test -n "$module"; then
4027         func_emit_autoconf_snippet "  "
4028       fi
4029     done
4030   fi
4031 }
4032
4033 # func_import modules
4034 # Uses also the variables
4035 # - mode            import or add-import or remove-import or update
4036 # - destdir         target directory
4037 # - local_gnulib_dir  from --local-dir
4038 # - modcache        true or false, from --cache-modules/--no-cache-modules
4039 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
4040 # - libname         library name
4041 # - supplied_libname  true if --lib was given, blank otherwise
4042 # - sourcebase      directory relative to destdir where to place source code
4043 # - m4base          directory relative to destdir where to place *.m4 macros
4044 # - pobase          directory relative to destdir where to place *.po files
4045 # - docbase         directory relative to destdir where to place doc files
4046 # - testsbase       directory relative to destdir where to place unit test code
4047 # - auxdir          directory relative to destdir where to place build aux files
4048 # - inctests        true if --with-tests was given, blank otherwise
4049 # - incobsolete     true if --with-obsolete was given, blank otherwise
4050 # - inc_cxx_tests   true if --with-c++-tests was given, blank otherwise
4051 # - inc_longrunning_tests  true if --with-longrunning-tests was given, blank
4052 #                          otherwise
4053 # - inc_privileged_tests  true if --with-privileged-tests was given, blank
4054 #                         otherwise
4055 # - inc_unportable_tests  true if --with-unportable-tests was given, blank
4056 #                         otherwise
4057 # - inc_all_tests   true if --with-all-tests was given, blank otherwise
4058 # - avoidlist       list of modules to avoid, from --avoid
4059 # - cond_dependencies  true if --conditional-dependencies was given, false if
4060 #                      --no-conditional-dependencies was given, blank otherwise
4061 # - lgpl            yes or a number if library's license shall be LGPL,
4062 #                   blank otherwise
4063 # - makefile_name   from --makefile-name
4064 # - libtool         true if --libtool was given, false if --no-libtool was
4065 #                   given, blank otherwise
4066 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
4067 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
4068 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
4069 # - witness_c_macro  from --witness-c-macro
4070 # - vc_files        true if --vc-files was given, false if --no-vc-files was
4071 #                   given, blank otherwise
4072 # - autoconf_minversion  minimum supported autoconf version
4073 # - doit            : if actions shall be executed, false if only to be printed
4074 # - symbolic        true if files should be symlinked, copied otherwise
4075 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
4076 #                   copied otherwise
4077 # - do_copyrights   true if copyright notices in files should be replaced,
4078 #                   blank otherwise
4079 func_import ()
4080 {
4081   # Get the cached settings.
4082   # In 'import' mode, we read them only for the purpose of knowing the old
4083   # installed file list, and don't use them as defaults.
4084   cached_local_gnulib_dir=
4085   cached_specified_modules=
4086   cached_incobsolete=
4087   cached_inc_cxx_tests=
4088   cached_inc_longrunning_tests=
4089   cached_inc_privileged_tests=
4090   cached_inc_unportable_tests=
4091   cached_inc_all_tests=
4092   cached_avoidlist=
4093   cached_sourcebase=
4094   cached_m4base=
4095   cached_pobase=
4096   cached_docbase=
4097   cached_testsbase=
4098   cached_inctests=
4099   cached_libname=
4100   cached_lgpl=
4101   cached_makefile_name=
4102   cached_cond_dependencies=
4103   cached_libtool=
4104   cached_macro_prefix=
4105   cached_po_domain=
4106   cached_witness_c_macro=
4107   cached_vc_files=
4108   cached_files=
4109   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
4110     cached_libtool=false
4111     my_sed_traces='
4112       s,#.*$,,
4113       s,^dnl .*$,,
4114       s, dnl .*$,,
4115       /gl_LOCAL_DIR(/ {
4116         s,^.*gl_LOCAL_DIR([[ ]*\([^]"$`\\)]*\).*$,cached_local_gnulib_dir="\1",p
4117       }
4118       /gl_MODULES(/ {
4119         ta
4120         :a
4121           s/)/)/
4122           tb
4123           N
4124           ba
4125         :b
4126         s,^.*gl_MODULES([[ ]*\([^]"$`\\)]*\).*$,cached_specified_modules="\1",p
4127       }
4128       /gl_WITH_OBSOLETE/ {
4129         s,^.*$,cached_incobsolete=true,p
4130       }
4131       /gl_WITH_CXX_TESTS/ {
4132         s,^.*$,cached_inc_cxx_tests=true,p
4133       }
4134       /gl_WITH_LONGRUNNING_TESTS/ {
4135         s,^.*$,cached_inc_longrunning_tests=true,p
4136       }
4137       /gl_WITH_PRIVILEGED_TESTS/ {
4138         s,^.*$,cached_inc_privileged_tests=true,p
4139       }
4140       /gl_WITH_UNPORTABLE_TESTS/ {
4141         s,^.*$,cached_inc_unportable_tests=true,p
4142       }
4143       /gl_WITH_ALL_TESTS/ {
4144         s,^.*$,cached_inc_all_tests=true,p
4145       }
4146       /gl_AVOID(/ {
4147         s,^.*gl_AVOID([[ ]*\([^]"$`\\)]*\).*$,cached_avoidlist="\1",p
4148       }
4149       /gl_SOURCE_BASE(/ {
4150         s,^.*gl_SOURCE_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_sourcebase="\1",p
4151       }
4152       /gl_M4_BASE(/ {
4153         s,^.*gl_M4_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_m4base="\1",p
4154       }
4155       /gl_PO_BASE(/ {
4156         s,^.*gl_PO_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_pobase="\1",p
4157       }
4158       /gl_DOC_BASE(/ {
4159         s,^.*gl_DOC_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_docbase="\1",p
4160       }
4161       /gl_TESTS_BASE(/ {
4162         s,^.*gl_TESTS_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_testsbase="\1",p
4163       }
4164       /gl_WITH_TESTS/ {
4165         s,^.*$,cached_inctests=true,p
4166       }
4167       /gl_LIB(/ {
4168         s,^.*gl_LIB([[ ]*\([^]"$`\\)]*\).*$,cached_libname="\1",p
4169       }
4170       /gl_LGPL(/ {
4171         s,^.*gl_LGPL([[ ]*\([^]"$`\\)]*\).*$,cached_lgpl="\1",p
4172       }
4173       /gl_LGPL/ {
4174         s,^.*$,cached_lgpl=yes,p
4175       }
4176       /gl_MAKEFILE_NAME(/ {
4177         s,^.*gl_MAKEFILE_NAME([[ ]*\([^]"$`\\)]*\).*$,cached_makefile_name="\1",p
4178       }
4179       /gl_CONDITIONAL_DEPENDENCIES/ {
4180         s,^.*$,cached_cond_dependencies=true,p
4181       }
4182       /gl_LIBTOOL/ {
4183         s,^.*$,cached_libtool=true,p
4184       }
4185       /gl_MACRO_PREFIX(/ {
4186         s,^.*gl_MACRO_PREFIX([[ ]*\([^]"$`\\)]*\).*$,cached_macro_prefix="\1",p
4187       }
4188       /gl_PO_DOMAIN(/ {
4189         s,^.*gl_PO_DOMAIN([[ ]*\([^]"$`\\)]*\).*$,cached_po_domain="\1",p
4190       }
4191       /gl_WITNESS_C_MACRO(/ {
4192         s,^.*gl_WITNESS_C_MACRO([[ ]*\([^]"$`\\)]*\).*$,cached_witness_c_macro="\1",p
4193       }
4194       /gl_VC_FILES(/ {
4195         s,^.*gl_VC_FILES([[ ]*\([^]"$`\\)]*\).*$,cached_vc_files="\1",p
4196       }'
4197     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
4198     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
4199       my_sed_traces='
4200         s,#.*$,,
4201         s,^dnl .*$,,
4202         s, dnl .*$,,
4203         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
4204           s,^.*$,cached_files=",p
4205           n
4206           ta
4207           :a
4208           s,^\]).*$,",
4209           tb
4210           s,["$`\\],,g
4211           p
4212           n
4213           ba
4214           :b
4215           p
4216         }'
4217       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
4218     fi
4219   fi
4220
4221   if test "$mode" = import; then
4222     # In 'import' mode, the new set of specified modules overrides the cached
4223     # set of modules. Ignore the cached settings.
4224     specified_modules="$1"
4225   else
4226     # Merge the cached settings with the specified ones.
4227     # The m4base must be the same as expected from the pathname.
4228     if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
4229       func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
4230     fi
4231     # The local_gnulib_dir defaults to the cached one. Recall that the cached one
4232     # is relative to $destdir, whereas the one we use is relative to . or absolute.
4233     if test -z "$local_gnulib_dir"; then
4234       if test -n "$cached_local_gnulib_dir"; then
4235         case "$destdir" in
4236           /*)
4237             local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
4238           *)
4239             case "$cached_local_gnulib_dir" in
4240               /*)
4241                 local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
4242               *)
4243                 func_relconcat "$destdir" "$cached_local_gnulib_dir"
4244                 local_gnulib_dir="$relconcat" ;;
4245             esac ;;
4246         esac
4247       fi
4248     fi
4249     case $mode in
4250       add-import)
4251         # Append the cached and the specified module names. So that
4252         # "gnulib-tool --add-import foo" means to add the module foo.
4253         specified_modules="$cached_specified_modules $1"
4254         ;;
4255       remove-import)
4256         # Take the cached module names, minus the specified module names.
4257         specified_modules=
4258         if $have_associative; then
4259           # Use an associative array, for O(N) worst-case run time.
4260           declare -A to_remove
4261           for m in $1; do
4262             eval 'to_remove[$m]=yes'
4263           done
4264           for module in $cached_specified_modules; do
4265             if eval 'test -z "${to_remove[$module]}"'; then
4266               func_append specified_modules "$module "
4267             fi
4268           done
4269         else
4270           # This loop has O(N²) worst-case run time.
4271           for module in $cached_specified_modules; do
4272             to_remove=
4273             for m in $1; do
4274               if test "$m" = "$module"; then
4275                 to_remove=yes
4276                 break
4277               fi
4278             done
4279             if test -z "$to_remove"; then
4280               func_append specified_modules "$module "
4281             fi
4282           done
4283         fi
4284         ;;
4285       update)
4286         # Take the cached module names. There are no specified module names.
4287         specified_modules="$cached_specified_modules"
4288         ;;
4289     esac
4290     # Included obsolete modules among the dependencies if specified either way.
4291     if test -z "$incobsolete"; then
4292       incobsolete="$cached_incobsolete"
4293     fi
4294     # Included special kinds of tests modules among the dependencies if specified
4295     # either way.
4296     if test -z "$inc_cxx_tests"; then
4297       inc_cxx_tests="$cached_inc_cxx_tests"
4298     fi
4299     if test -z "$inc_longrunning_tests"; then
4300       inc_longrunning_tests="$cached_inc_longrunning_tests"
4301     fi
4302     if test -z "$inc_privileged_tests"; then
4303       inc_privileged_tests="$cached_inc_privileged_tests"
4304     fi
4305     if test -z "$inc_unportable_tests"; then
4306       inc_unportable_tests="$cached_inc_unportable_tests"
4307     fi
4308     if test -z "$inc_all_tests"; then
4309       inc_all_tests="$cached_inc_all_tests"
4310     fi
4311     # Append the cached and the specified avoidlist. This is probably better
4312     # than dropping the cached one when --avoid is specified at least once.
4313     avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
4314     avoidlist=`echo $avoidlist`
4315
4316     # The sourcebase defaults to the cached one.
4317     if test -z "$sourcebase"; then
4318       sourcebase="$cached_sourcebase"
4319       if test -z "$sourcebase"; then
4320         func_fatal_error "missing --source-base option"
4321       fi
4322     fi
4323     # The pobase defaults to the cached one.
4324     if test -z "$pobase"; then
4325       pobase="$cached_pobase"
4326     fi
4327     # The docbase defaults to the cached one.
4328     if test -z "$docbase"; then
4329       docbase="$cached_docbase"
4330       if test -z "$docbase"; then
4331         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."
4332       fi
4333     fi
4334     # The testsbase defaults to the cached one.
4335     if test -z "$testsbase"; then
4336       testsbase="$cached_testsbase"
4337       if test -z "$testsbase"; then
4338         func_fatal_error "missing --tests-base option"
4339       fi
4340     fi
4341     # Require the tests if specified either way.
4342     if test -z "$inctests"; then
4343       inctests="$cached_inctests"
4344     fi
4345     # The libname defaults to the cached one.
4346     if test -z "$supplied_libname"; then
4347       libname="$cached_libname"
4348       if test -z "$libname"; then
4349         func_fatal_error "missing --lib option"
4350       fi
4351     fi
4352     # Require LGPL if specified either way.
4353     if test -z "$lgpl"; then
4354       lgpl="$cached_lgpl"
4355     fi
4356     # The makefile_name defaults to the cached one.
4357     if test -z "$makefile_name"; then
4358       makefile_name="$cached_makefile_name"
4359     fi
4360     # Use conditional dependencies if specified either way.
4361     if test -z "$cond_dependencies"; then
4362       cond_dependencies="$cached_cond_dependencies"
4363     fi
4364     # Use libtool if specified either way, or if guessed.
4365     if test -z "$libtool"; then
4366       if test -n "$cached_m4base"; then
4367         libtool="$cached_libtool"
4368       else
4369         libtool="$guessed_libtool"
4370       fi
4371     fi
4372     # The macro_prefix defaults to the cached one.
4373     if test -z "$macro_prefix"; then
4374       macro_prefix="$cached_macro_prefix"
4375       if test -z "$macro_prefix"; then
4376         func_fatal_error "missing --macro-prefix option"
4377       fi
4378     fi
4379     # The po_domain defaults to the cached one.
4380     if test -z "$po_domain"; then
4381       po_domain="$cached_po_domain"
4382     fi
4383     # The witness_c_macro defaults to the cached one.
4384     if test -z "$witness_c_macro"; then
4385       witness_c_macro="$cached_witness_c_macro"
4386     fi
4387     # The vc_files defaults to the cached one.
4388     if test -z "$vc_files"; then
4389       vc_files="$cached_vc_files"
4390     fi
4391     # Ensure constraints.
4392     if test "$cond_dependencies" = true && test -n "$inctests"; then
4393       echo "gnulib-tool: option --conditional-dependencies is not supported with --with-tests" 1>&2
4394       func_exit 1
4395     fi
4396   fi
4397   # --without-*-tests options are not supported here.
4398   excl_cxx_tests=
4399   excl_longrunning_tests=
4400   excl_privileged_tests=
4401   excl_unportable_tests=
4402
4403   # Canonicalize the list of specified modules.
4404   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
4405
4406   # Include all kinds of tests modules if --with-all-tests was specified.
4407   inc_all_direct_tests="$inc_all_tests"
4408   inc_all_indirect_tests="$inc_all_tests"
4409
4410   # Determine final module list.
4411   modules="$specified_modules"
4412   func_modules_transitive_closure
4413   if test $verbose -ge 0; then
4414     func_show_module_list
4415   fi
4416   final_modules="$modules"
4417
4418   # Determine main module list and tests-related module list separately.
4419   func_modules_transitive_closure_separately
4420
4421   # Determine whether a $testsbase/libtests.a is needed.
4422   func_determine_use_libtests
4423
4424   # Add the dummy module to the main module list or to the tests-related module
4425   # list if needed.
4426   func_modules_add_dummy_separately
4427
4428   # If --lgpl, verify that the licenses of modules are compatible.
4429   if test -n "$lgpl"; then
4430     license_incompatibilities=
4431     for module in $main_modules; do
4432       license=`func_get_license $module`
4433       case $license in
4434         'GPLed build tool') ;;
4435         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
4436         *)
4437           case "$lgpl" in
4438             yes | 3)
4439               case $license in
4440                 LGPL | LGPLv2+ | LGPLv3+) ;;
4441                 *) func_append license_incompatibilities "$module $license$nl" ;;
4442               esac
4443               ;;
4444             2)
4445               case $license in
4446                 LGPLv2+) ;;
4447                 *) func_append license_incompatibilities "$module $license$nl" ;;
4448               esac
4449               ;;
4450             *) func_fatal_error "invalid value lgpl=$lgpl" ;;
4451           esac
4452           ;;
4453       esac
4454     done
4455     if test -n "$license_incompatibilities"; then
4456       # Format the license incompatibilities as a table.
4457       sed_expand_column1_width50_indent17='s,^\([^ ]*\) ,\1                                                   ,
4458 s,^\(.................................................[^ ]*\) *,                 \1 ,'
4459       license_incompatibilities=`echo "$license_incompatibilities" | sed -e "$sed_expand_column1_width50_indent17"`
4460       func_fatal_error "incompatible license on modules:$nl$license_incompatibilities"
4461     fi
4462   fi
4463
4464   # Show banner notice of every module.
4465   modules="$main_modules"
4466   func_modules_notice
4467
4468   # Determine script to apply to imported library files.
4469   sed_transform_lib_file=
4470   for module in $main_modules; do
4471     if test $module = config-h; then
4472       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
4473       sed_transform_lib_file=$sed_transform_lib_file'
4474         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
4475       '
4476       break
4477     fi
4478   done
4479   sed_transform_main_lib_file="$sed_transform_lib_file"
4480   if test -n "$do_copyrights"; then
4481     if test -n "$lgpl"; then
4482       # Update license.
4483       case "$lgpl" in
4484         yes | 3)
4485           sed_transform_main_lib_file=$sed_transform_main_lib_file'
4486             s/GNU General/GNU Lesser General/g
4487             s/General Public License/Lesser General Public License/g
4488             s/Lesser Lesser General Public License/Lesser General Public License/g
4489           '
4490           ;;
4491         2)
4492           sed_transform_main_lib_file=$sed_transform_main_lib_file'
4493             s/GNU General/GNU Lesser General/g
4494             s/General Public License/Lesser General Public License/g
4495             s/Lesser Lesser General Public License/Lesser General Public License/g
4496
4497             s/version [23]\([ ,]\)/version 2.1\1/g
4498           '
4499           ;;
4500         *) func_fatal_error "invalid value lgpl=$lgpl" ;;
4501       esac
4502     else
4503       # Update license.
4504       sed_transform_main_lib_file=$sed_transform_main_lib_file'
4505         s/GNU Lesser General/GNU General/g
4506         s/Lesser General Public License/General Public License/g
4507
4508         s/GNU Library General/GNU General/g
4509         s/Library General Public License/General Public License/g
4510
4511         s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4512       '
4513     fi
4514   fi
4515
4516   # Determine script to apply to auxiliary files that go into $auxdir/.
4517   sed_transform_build_aux_file=
4518   if test -n "$do_copyrights"; then
4519     # Update license.
4520     sed_transform_build_aux_file=$sed_transform_build_aux_file'
4521       s/GNU Lesser General/GNU General/g
4522       s/Lesser General Public License/General Public License/g
4523
4524       s/GNU Library General/GNU General/g
4525       s/Library General Public License/General Public License/g
4526
4527       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4528     '
4529   fi
4530
4531   # Determine script to apply to library files that go into $testsbase/.
4532   sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
4533   if test -n "$do_copyrights"; then
4534     # Update license.
4535     sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
4536       s/GNU Lesser General/GNU General/g
4537       s/Lesser General Public License/General Public License/g
4538
4539       s/GNU Library General/GNU General/g
4540       s/Library General Public License/General Public License/g
4541
4542       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4543     '
4544   fi
4545
4546   # Determine the final file lists.
4547   func_modules_to_filelist_separately
4548
4549   test -n "$files" \
4550     || func_fatal_error "refusing to do nothing"
4551
4552   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
4553   new_files="$files m4/gnulib-tool.m4"
4554   old_files="$cached_files"
4555   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
4556     func_append old_files " m4/gnulib-tool.m4"
4557   fi
4558
4559   rewritten='%REWRITTEN%'
4560   sed_rewrite_old_files="\
4561     s,^build-aux/,$rewritten$auxdir/,
4562     s,^doc/,$rewritten$cached_docbase/,
4563     s,^lib/,$rewritten$cached_sourcebase/,
4564     s,^m4/,$rewritten$cached_m4base/,
4565     s,^tests/,$rewritten$cached_testsbase/,
4566     s,^tests=lib/,$rewritten$cached_testsbase/,
4567     s,^top/,$rewritten,
4568     s,^$rewritten,,"
4569   sed_rewrite_new_files="\
4570     s,^build-aux/,$rewritten$auxdir/,
4571     s,^doc/,$rewritten$docbase/,
4572     s,^lib/,$rewritten$sourcebase/,
4573     s,^m4/,$rewritten$m4base/,
4574     s,^tests/,$rewritten$testsbase/,
4575     s,^tests=lib/,$rewritten$testsbase/,
4576     s,^top/,$rewritten,
4577     s,^$rewritten,,"
4578
4579   # Create directories.
4580   { echo "$sourcebase"
4581     echo "$m4base"
4582     if test -n "$pobase"; then
4583       echo "$pobase"
4584     fi
4585     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
4586     if test -n "$docfiles"; then
4587       echo "$docbase"
4588     fi
4589     if test -n "$inctests"; then
4590       echo "$testsbase"
4591     fi
4592     echo "$auxdir"
4593     for f in $files; do echo $f; done \
4594       | sed -e "$sed_rewrite_new_files" \
4595       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
4596       | LC_ALL=C sort -u
4597   } > "$tmp"/dirs
4598   { # Rearrange file descriptors. Needed because "while ... done < ..."
4599     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4600     exec 5<&0 < "$tmp"/dirs
4601     while read d; do
4602       if test ! -d "$destdir/$d"; then
4603         if $doit; then
4604           echo "Creating directory $destdir/$d"
4605           mkdir -p "$destdir/$d" || func_fatal_error "failed"
4606         else
4607           echo "Create directory $destdir/$d"
4608         fi
4609       fi
4610     done
4611     exec 0<&5 5<&-
4612   }
4613
4614   # Copy files or make symbolic links. Remove obsolete files.
4615   added_files=''
4616   removed_files=''
4617   delimiter='   '
4618   # Construct a table with 2 columns: rewritten-file-name original-file-name,
4619   # representing the files according to the last gnulib-tool invocation.
4620   for f in $old_files; do echo $f; done \
4621     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
4622     | LC_ALL=C sort \
4623     > "$tmp"/old-files
4624   # Construct a table with 2 columns: rewritten-file-name original-file-name,
4625   # representing the files after this gnulib-tool invocation.
4626   for f in $new_files; do echo $f; done \
4627     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
4628     | LC_ALL=C sort \
4629     > "$tmp"/new-files
4630   # First the files that are in old-files, but not in new-files:
4631   sed_take_first_column='s,'"$delimiter"'.*,,'
4632   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
4633     # Remove the file. Do nothing if the user already removed it.
4634     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
4635       if $doit; then
4636         echo "Removing file $g (backup in ${g}~)"
4637         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
4638       else
4639         echo "Remove file $g (backup in ${g}~)"
4640       fi
4641       func_append removed_files "$g$nl"
4642     fi
4643   done
4644   # func_add_or_update handles a file that ought to be present afterwards.
4645   # Uses parameters
4646   # - f             the original file name
4647   # - g             the rewritten file name
4648   # - already_present  nonempty if the file should already exist, empty
4649   #                    otherwise
4650   func_add_or_update ()
4651   {
4652     of="$f"
4653     case "$f" in
4654       tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
4655     esac
4656     func_dest_tmpfilename "$g"
4657     func_lookup_file "$f"
4658     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
4659     if test -n "$sed_transform_main_lib_file"; then
4660       case "$of" in
4661         lib/*)
4662           sed -e "$sed_transform_main_lib_file" \
4663             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4664           ;;
4665       esac
4666     fi
4667     if test -n "$sed_transform_build_aux_file"; then
4668       case "$of" in
4669         build-aux/*)
4670           sed -e "$sed_transform_build_aux_file" \
4671             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4672           ;;
4673       esac
4674     fi
4675     if test -n "$sed_transform_testsrelated_lib_file"; then
4676       case "$of" in
4677         tests=lib/*)
4678           sed -e "$sed_transform_testsrelated_lib_file" \
4679             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4680           ;;
4681       esac
4682     fi
4683     if test -f "$destdir/$g"; then
4684       # The file already exists.
4685       func_update_file
4686     else
4687       # Install the file.
4688       # Don't protest if the file should be there but isn't: it happens
4689       # frequently that developers don't put autogenerated files under version control.
4690       func_add_file
4691       func_append added_files "$g$nl"
4692     fi
4693     rm -f "$tmpfile"
4694   }
4695   # Then the files that are in new-files, but not in old-files:
4696   sed_take_last_column='s,^.*'"$delimiter"',,'
4697   already_present=
4698   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
4699     | sed -e "$sed_take_last_column" \
4700     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
4701   { # Rearrange file descriptors. Needed because "while ... done < ..."
4702     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4703     exec 5<&0 < "$tmp"/added-files
4704     while read g f; do
4705       func_add_or_update
4706     done
4707     exec 0<&5 5<&-
4708   }
4709   # Then the files that are in new-files and in old-files:
4710   already_present=true
4711   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
4712     | sed -e "$sed_take_last_column" \
4713     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
4714   { # Rearrange file descriptors. Needed because "while ... done < ..."
4715     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4716     exec 5<&0 < "$tmp"/kept-files
4717     while read g f; do
4718       func_add_or_update
4719     done
4720     exec 0<&5 5<&-
4721   }
4722
4723   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
4724   actioncmd="gnulib-tool --import"
4725   func_append actioncmd " --dir=$destdir"
4726   if test -n "$local_gnulib_dir"; then
4727     func_append actioncmd " --local-dir=$local_gnulib_dir"
4728   fi
4729   func_append actioncmd " --lib=$libname"
4730   func_append actioncmd " --source-base=$sourcebase"
4731   func_append actioncmd " --m4-base=$m4base"
4732   if test -n "$pobase"; then
4733     func_append actioncmd " --po-base=$pobase"
4734   fi
4735   func_append actioncmd " --doc-base=$docbase"
4736   func_append actioncmd " --tests-base=$testsbase"
4737   func_append actioncmd " --aux-dir=$auxdir"
4738   if test -n "$inctests"; then
4739     func_append actioncmd " --with-tests"
4740   fi
4741   if test -n "$incobsolete"; then
4742     func_append actioncmd " --with-obsolete"
4743   fi
4744   if test -n "$inc_cxx_tests"; then
4745     func_append actioncmd " --with-c++-tests"
4746   fi
4747   if test -n "$inc_longrunning_tests"; then
4748     func_append actioncmd " --with-longrunning-tests"
4749   fi
4750   if test -n "$inc_privileged_tests"; then
4751     func_append actioncmd " --with-privileged-tests"
4752   fi
4753   if test -n "$inc_unportable_tests"; then
4754     func_append actioncmd " --with-unportable-tests"
4755   fi
4756   if test -n "$inc_all_tests"; then
4757     func_append actioncmd " --with-all-tests"
4758   fi
4759   for module in $avoidlist; do
4760     func_append actioncmd " --avoid=$module"
4761   done
4762   if test -n "$lgpl"; then
4763     if test "$lgpl" = yes; then
4764       func_append actioncmd " --lgpl"
4765     else
4766       func_append actioncmd " --lgpl=$lgpl"
4767     fi
4768   fi
4769   if test -n "$makefile_name"; then
4770     func_append actioncmd " --makefile-name=$makefile_name"
4771   fi
4772   if test "$cond_dependencies" = true; then
4773     func_append actioncmd " --conditional-dependencies"
4774   else
4775     func_append actioncmd " --no-conditional-dependencies"
4776   fi
4777   if test "$libtool" = true; then
4778     func_append actioncmd " --libtool"
4779   else
4780     func_append actioncmd " --no-libtool"
4781   fi
4782   func_append actioncmd " --macro-prefix=$macro_prefix"
4783   if test -n "$po_domain"; then
4784     func_append actioncmd " --po-domain=$po_domain"
4785   fi
4786   if test -n "$witness_c_macro"; then
4787     func_append actioncmd " --witness-c-macro=$witness_c_macro"
4788   fi
4789   if test -n "$vc_files"; then
4790     if test "$vc_files" = true; then
4791       func_append actioncmd " --vc-files"
4792     else
4793       func_append actioncmd " --no-vc-files"
4794     fi
4795   fi
4796   func_append actioncmd " `echo $specified_modules`"
4797
4798   # Determine include_guard_prefix.
4799   func_compute_include_guard_prefix
4800
4801   # Default the makefile name to Makefile.am.
4802   if test -n "$makefile_name"; then
4803     makefile_am=$makefile_name
4804   else
4805     makefile_am=Makefile.am
4806   fi
4807
4808   # Create normal Makefile.ams.
4809   for_test=false
4810
4811   # Setup list of Makefile.am edits that are to be performed afterwards.
4812   # Some of these edits apply to files that we will generate; others are
4813   # under the responsibility of the developer.
4814   makefile_am_edits=0
4815   # func_note_Makefile_am_edit dir var value
4816   # remembers that ${dir}Makefile.am needs to be edited to that ${var} mentions
4817   # ${value}.
4818   func_note_Makefile_am_edit ()
4819   {
4820     makefile_am_edits=`expr $makefile_am_edits + 1`
4821     eval makefile_am_edit${makefile_am_edits}_dir=\"\$1\"
4822     eval makefile_am_edit${makefile_am_edits}_var=\"\$2\"
4823     eval makefile_am_edit${makefile_am_edits}_val=\"\$3\"
4824   }
4825   if test "$makefile_am" = Makefile.am; then
4826     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
4827     sourcebase_base=`basename "$sourcebase"`
4828     func_note_Makefile_am_edit "$sourcebase_dir" SUBDIRS "$sourcebase_base"
4829   fi
4830   if test -n "$pobase"; then
4831     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
4832     pobase_base=`basename "$pobase"`
4833     func_note_Makefile_am_edit "$pobase_dir" SUBDIRS "$pobase_base"
4834   fi
4835   if test -n "$inctests"; then
4836     if test "$makefile_am" = Makefile.am; then
4837       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
4838       testsbase_base=`basename "$testsbase"`
4839       func_note_Makefile_am_edit "$testsbase_dir" SUBDIRS "$testsbase_base"
4840     fi
4841   fi
4842   func_note_Makefile_am_edit "" ACLOCAL_AMFLAGS "-I ${m4base}"
4843   {
4844     # Find the first parent directory of $m4base that contains or will contain
4845     # a Makefile.am.
4846     sed_last='s,^.*/\([^/][^/]*\)//*$,\1/,
4847 s,//*$,/,'
4848     sed_butlast='s,[^/][^/]*//*$,,'
4849     dir1="${m4base}/"; dir2=""
4850     while test -n "$dir1" \
4851           && ! { test -f "${destdir}/${dir1}Makefile.am" \
4852                  || test "${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
4853                  || test "./${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
4854                  || { test -n "$inctests" \
4855                       && { test "${dir1}Makefile.am" = "$testsbase/$makefile_am" \
4856                            || test "./${dir1}Makefile.am" = "$testsbase/$makefile_am"; }; }; }; do
4857       dir2=`echo "$dir1" | sed -e "$sed_last"`"$dir2"
4858       dir1=`echo "$dir1" | sed -e "$sed_butlast"`
4859     done
4860     func_note_Makefile_am_edit "$dir1" EXTRA_DIST "${dir2}gnulib-cache.m4"
4861   }
4862
4863   # Create library makefile.
4864   func_dest_tmpfilename $sourcebase/$makefile_am
4865   destfile="$sourcebase/$makefile_am"
4866   modules="$main_modules"
4867   func_emit_lib_Makefile_am > "$tmpfile"
4868   if test -f "$destdir"/$sourcebase/$makefile_am; then
4869     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
4870       rm -f "$tmpfile"
4871     else
4872       if $doit; then
4873         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
4874         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
4875         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
4876       else
4877         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
4878         rm -f "$tmpfile"
4879       fi
4880     fi
4881   else
4882     if $doit; then
4883       echo "Creating $sourcebase/$makefile_am"
4884       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
4885     else
4886       echo "Create $sourcebase/$makefile_am"
4887       rm -f "$tmpfile"
4888     fi
4889     func_append added_files "$sourcebase/$makefile_am$nl"
4890   fi
4891
4892   # Create po/ directory.
4893   if test -n "$pobase"; then
4894     # Create po makefile and auxiliary files.
4895     for file in Makefile.in.in remove-potcdate.sin; do
4896       func_dest_tmpfilename $pobase/$file
4897       func_lookup_file build-aux/po/$file
4898       cat "$lookedup_file" > "$tmpfile"
4899       if test -f "$destdir"/$pobase/$file; then
4900         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
4901           rm -f "$tmpfile"
4902         else
4903           if $doit; then
4904             echo "Updating $pobase/$file (backup in $pobase/$file~)"
4905             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
4906             mv -f "$tmpfile" "$destdir"/$pobase/$file
4907           else
4908             echo "Update $pobase/$file (backup in $pobase/$file~)"
4909             rm -f "$tmpfile"
4910           fi
4911         fi
4912       else
4913         if $doit; then
4914           echo "Creating $pobase/$file"
4915           mv -f "$tmpfile" "$destdir"/$pobase/$file
4916         else
4917           echo "Create $pobase/$file"
4918           rm -f "$tmpfile"
4919         fi
4920         func_append added_files "$pobase/$file$nl"
4921       fi
4922     done
4923     # Create po makefile parameterization, part 1.
4924     func_dest_tmpfilename $pobase/Makevars
4925     func_emit_po_Makevars > "$tmpfile"
4926     if test -f "$destdir"/$pobase/Makevars; then
4927       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
4928         rm -f "$tmpfile"
4929       else
4930         if $doit; then
4931           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
4932           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
4933           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
4934         else
4935           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
4936           rm -f "$tmpfile"
4937         fi
4938       fi
4939     else
4940       if $doit; then
4941         echo "Creating $pobase/Makevars"
4942         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
4943       else
4944         echo "Create $pobase/Makevars"
4945         rm -f "$tmpfile"
4946       fi
4947       func_append added_files "$pobase/Makevars$nl"
4948     fi
4949     # Create po makefile parameterization, part 2.
4950     func_dest_tmpfilename $pobase/POTFILES.in
4951     func_emit_po_POTFILES_in > "$tmpfile"
4952     if test -f "$destdir"/$pobase/POTFILES.in; then
4953       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
4954         rm -f "$tmpfile"
4955       else
4956         if $doit; then
4957           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
4958           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
4959           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
4960         else
4961           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
4962           rm -f "$tmpfile"
4963         fi
4964       fi
4965     else
4966       if $doit; then
4967         echo "Creating $pobase/POTFILES.in"
4968         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
4969       else
4970         echo "Create $pobase/POTFILES.in"
4971         rm -f "$tmpfile"
4972       fi
4973       func_append added_files "$pobase/POTFILES.in$nl"
4974     fi
4975     # Fetch PO files.
4976     TP_URL="http://translationproject.org/latest/"
4977     TP_RSYNC_URI="translationproject.org::tp/latest/"
4978     if $doit; then
4979       echo "Fetching gnulib PO files from $TP_URL"
4980       (cd "$destdir"/$pobase \
4981        && { # Prefer rsync over wget if it is available, since it consumes
4982             # less network bandwidth, due to compression.
4983             if type rsync 2>/dev/null | grep / > /dev/null; then
4984               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
4985             else
4986               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
4987             fi
4988           }
4989       )
4990     else
4991       echo "Fetch gnulib PO files from $TP_URL"
4992     fi
4993     # Create po/LINGUAS.
4994     if $doit; then
4995       func_dest_tmpfilename $pobase/LINGUAS
4996       (cd "$destdir"/$pobase \
4997        && { echo '# Set of available languages.'
4998             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
4999           }
5000       ) > "$tmpfile"
5001       if test -f "$destdir"/$pobase/LINGUAS; then
5002         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
5003           rm -f "$tmpfile"
5004         else
5005           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
5006           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
5007           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
5008         fi
5009       else
5010         echo "Creating $pobase/LINGUAS"
5011         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
5012         func_append added_files "$pobase/LINGUAS$nl"
5013       fi
5014     else
5015       if test -f "$destdir"/$pobase/LINGUAS; then
5016         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
5017       else
5018         echo "Create $pobase/LINGUAS"
5019       fi
5020     fi
5021   fi
5022
5023   # Create m4/gnulib-cache.m4.
5024   func_dest_tmpfilename $m4base/gnulib-cache.m4
5025   (
5026     func_emit_copyright_notice
5027     echo "#"
5028     echo "# This file represents the specification of how gnulib-tool is used."
5029     echo "# It acts as a cache: It is written and read by gnulib-tool."
5030     echo "# In projects that use version control, this file is meant to be put under"
5031     echo "# version control, like the configure.ac and various Makefile.am files."
5032     echo
5033     echo
5034     echo "# Specification in the form of a command-line invocation:"
5035     echo "#   $actioncmd"
5036     echo
5037     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
5038     # Store the local_gnulib_dir relative to destdir.
5039     case "$local_gnulib_dir" in
5040       "" | /*)
5041         relative_local_gnulib_dir="$local_gnulib_dir" ;;
5042       * )
5043         case "$destdir" in
5044           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
5045           *)
5046             # destdir, local_gnulib_dir are both relative.
5047             func_relativize "$destdir" "$local_gnulib_dir"
5048             relative_local_gnulib_dir="$reldir" ;;
5049         esac ;;
5050     esac
5051     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
5052     echo "gl_MODULES(["
5053     echo "$specified_modules" | sed -e 's/^/  /g'
5054     echo "])"
5055     test -z "$incobsolete" || echo "gl_WITH_OBSOLETE"
5056     test -z "$inc_cxx_tests" || echo "gl_WITH_CXX_TESTS"
5057     test -z "$inc_longrunning_tests" || echo "gl_WITH_LONGRUNNING_TESTS"
5058     test -z "$inc_privileged_tests" || echo "gl_WITH_PRIVILEGED_TESTS"
5059     test -z "$inc_unportable_tests" || echo "gl_WITH_UNPORTABLE_TESTS"
5060     test -z "$inc_all_tests" || echo "gl_WITH_ALL_TESTS"
5061     echo "gl_AVOID([$avoidlist])"
5062     echo "gl_SOURCE_BASE([$sourcebase])"
5063     echo "gl_M4_BASE([$m4base])"
5064     echo "gl_PO_BASE([$pobase])"
5065     echo "gl_DOC_BASE([$docbase])"
5066     echo "gl_TESTS_BASE([$testsbase])"
5067     test -z "$inctests" || echo "gl_WITH_TESTS"
5068     echo "gl_LIB([$libname])"
5069     if test -n "$lgpl"; then
5070       if test "$lgpl" = yes; then
5071         echo "gl_LGPL"
5072       else
5073         echo "gl_LGPL([$lgpl])"
5074       fi
5075     fi
5076     echo "gl_MAKEFILE_NAME([$makefile_name])"
5077     if test "$cond_dependencies" = true; then
5078       echo "gl_CONDITIONAL_DEPENDENCIES"
5079     fi
5080     if test "$libtool" = true; then
5081       echo "gl_LIBTOOL"
5082     fi
5083     echo "gl_MACRO_PREFIX([$macro_prefix])"
5084     echo "gl_PO_DOMAIN([$po_domain])"
5085     echo "gl_WITNESS_C_DOMAIN([$witness_c_macro])"
5086     if test -n "$vc_files"; then
5087       echo "gl_VC_FILES([$vc_files])"
5088     fi
5089   ) > "$tmpfile"
5090   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
5091     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
5092       rm -f "$tmpfile"
5093     else
5094       if $doit; then
5095         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
5096         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
5097         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
5098       else
5099         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
5100         if false; then
5101           cat "$tmpfile"
5102           echo
5103           echo "# gnulib-cache.m4 ends here"
5104         fi
5105         rm -f "$tmpfile"
5106       fi
5107     fi
5108   else
5109     if $doit; then
5110       echo "Creating $m4base/gnulib-cache.m4"
5111       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
5112     else
5113       echo "Create $m4base/gnulib-cache.m4"
5114       cat "$tmpfile"
5115       rm -f "$tmpfile"
5116     fi
5117   fi
5118
5119   # Create m4/gnulib-comp.m4.
5120   func_dest_tmpfilename $m4base/gnulib-comp.m4
5121   (
5122     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
5123     func_emit_copyright_notice
5124     echo "#"
5125     echo "# This file represents the compiled summary of the specification in"
5126     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
5127     echo "# to be invoked from configure.ac."
5128     echo "# In projects that use version control, this file can be treated like"
5129     echo "# other built files."
5130     echo
5131     echo
5132     echo "# This macro should be invoked from $configure_ac, in the section"
5133     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
5134     echo "# any checks for libraries, header files, types and library functions."
5135     echo "AC_DEFUN([${macro_prefix}_EARLY],"
5136     echo "["
5137     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
5138     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
5139     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
5140     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
5141     echo "  AC_REQUIRE([gl_PROG_AR_RANLIB])"
5142     if test -n "$uses_subdirs"; then
5143       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
5144     fi
5145     for module in $final_modules; do
5146       func_verify_module
5147       if test -n "$module"; then
5148         echo "# Code from module $module:"
5149         func_get_autoconf_early_snippet "$module"
5150       fi
5151     done \
5152       | sed -e '/^$/d;' -e 's/^/  /'
5153     echo "])"
5154     echo
5155     echo "# This macro should be invoked from $configure_ac, in the section"
5156     echo "# \"Check for header files, types and library functions\"."
5157     echo "AC_DEFUN([${macro_prefix}_INIT],"
5158     echo "["
5159     if test "$libtool" = true; then
5160       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5161       echo "  gl_cond_libtool=true"
5162     else
5163       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5164       echo "  gl_cond_libtool=false"
5165       echo "  gl_libdeps="
5166       echo "  gl_ltlibdeps="
5167     fi
5168     if test "$auxdir" != "build-aux"; then
5169       sed_replace_build_aux='
5170         :a
5171         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5172           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5173           ba
5174         }'
5175     else
5176       sed_replace_build_aux="$sed_noop"
5177     fi
5178     echo "  gl_m4_base='$m4base'"
5179     func_emit_initmacro_start $macro_prefix
5180     echo "  gl_source_base='$sourcebase'"
5181     if test -n "$witness_c_macro"; then
5182       echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$witness_c_macro])"
5183     fi
5184     func_emit_autoconf_snippets "$main_modules" func_verify_module true false true
5185     if test -n "$witness_c_macro"; then
5186       echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5187     fi
5188     echo "  # End of code from modules"
5189     func_emit_initmacro_end $macro_prefix
5190     echo "  gltests_libdeps="
5191     echo "  gltests_ltlibdeps="
5192     func_emit_initmacro_start ${macro_prefix}tests
5193     echo "  gl_source_base='$testsbase'"
5194     # Define a tests witness macro that depends on the package.
5195     # PACKAGE is defined by AM_INIT_AUTOMAKE, PACKAGE_TARNAME is defined by AC_INIT.
5196     # See <http://lists.gnu.org/archive/html/automake/2009-05/msg00145.html>.
5197     echo "changequote(,)dnl"
5198     echo "  ${macro_prefix}tests_WITNESS=IN_\`echo \"\${PACKAGE-\$PACKAGE_TARNAME}\" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'\`_GNULIB_TESTS"
5199     echo "changequote([, ])dnl"
5200     echo "  AC_SUBST([${macro_prefix}tests_WITNESS])"
5201     echo "  gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
5202     echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
5203     func_emit_autoconf_snippets "$testsrelated_modules" func_verify_module true true true
5204     echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5205     func_emit_initmacro_end ${macro_prefix}tests
5206     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5207     # created using libtool, because libtool already handles the dependencies.
5208     if test "$libtool" != true; then
5209       libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5210       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5211       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5212       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5213       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5214     fi
5215     if $use_libtests; then
5216       echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
5217       echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
5218     fi
5219     echo "])"
5220     func_emit_initmacro_done $macro_prefix $sourcebase
5221     func_emit_initmacro_done ${macro_prefix}tests $testsbase
5222     echo
5223     echo "# This macro records the list of files which have been installed by"
5224     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
5225     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
5226     echo "$files" | sed -e 's,^,  ,'
5227     echo "])"
5228   ) > "$tmpfile"
5229   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
5230     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
5231       rm -f "$tmpfile"
5232     else
5233       if $doit; then
5234         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
5235         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
5236         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
5237       else
5238         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
5239         if false; then
5240           cat "$tmpfile"
5241           echo
5242           echo "# gnulib-comp.m4 ends here"
5243         fi
5244         rm -f "$tmpfile"
5245       fi
5246     fi
5247   else
5248     if $doit; then
5249       echo "Creating $m4base/gnulib-comp.m4"
5250       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
5251     else
5252       echo "Create $m4base/gnulib-comp.m4"
5253       cat "$tmpfile"
5254       rm -f "$tmpfile"
5255     fi
5256   fi
5257
5258   if test -n "$inctests"; then
5259     # Create tests makefile.
5260     func_dest_tmpfilename $testsbase/$makefile_am
5261     destfile="$testsbase/$makefile_am"
5262     modules="$testsrelated_modules"
5263     func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$tmpfile"
5264     if test -f "$destdir"/$testsbase/$makefile_am; then
5265       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
5266         rm -f "$tmpfile"
5267       else
5268         if $doit; then
5269           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
5270           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
5271           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
5272         else
5273           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
5274           rm -f "$tmpfile"
5275         fi
5276       fi
5277     else
5278       if $doit; then
5279         echo "Creating $testsbase/$makefile_am"
5280         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
5281       else
5282         echo "Create $testsbase/$makefile_am"
5283         rm -f "$tmpfile"
5284       fi
5285     func_append added_files "$testsbase/$makefile_am$nl"
5286     fi
5287   fi
5288
5289   if test "$vc_files" != false; then
5290     # Update the .cvsignore and .gitignore files.
5291     { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
5292       echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
5293       # Treat gnulib-comp.m4 like an added file, even if it already existed.
5294       echo "$m4base/|A|gnulib-comp.m4"
5295     } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
5296     { # Rearrange file descriptors. Needed because "while ... done < ..."
5297       # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5298       exec 5<&0 < "$tmp"/fileset-changes
5299       func_update_ignorelist ()
5300       {
5301         ignore="$1"
5302         if test "$ignore" = .gitignore; then
5303           # In a .gitignore file, "foo" applies to the current directory and all
5304           # subdirectories, whereas "/foo" applies to the current directory only.
5305           anchor='/'
5306           escaped_anchor='\/'
5307           doubly_escaped_anchor='\\/'
5308         else
5309           anchor=''
5310           escaped_anchor=''
5311           doubly_escaped_anchor=''
5312         fi
5313         if test -f "$destdir/$dir$ignore"; then
5314           if test -n "$dir_added" || test -n "$dir_removed"; then
5315             sed -e "s|^$anchor||" < "$destdir/$dir$ignore" | LC_ALL=C sort > "$tmp"/ignore
5316             (echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
5317                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-added
5318              echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
5319                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-removed
5320             )
5321             if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
5322               if $doit; then
5323                 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
5324                 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
5325                 { sed -e 's,/,\\/,g' -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed
5326                   if test -n "$anchor"; then sed -e 's,/,\\/,g' -e "s,^,/^${doubly_escaped_anchor}," -e 's,$,$/d,' < "$tmp"/ignore-removed; fi
5327                 } > "$tmp"/sed-ignore-removed
5328                 { cat "$destdir/$dir$ignore"~
5329                   sed -e "s|^|$anchor|" < "$tmp"/ignore-added
5330                 } | sed -f "$tmp"/sed-ignore-removed \
5331                   > "$destdir/$dir$ignore"
5332               else
5333                 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
5334               fi
5335             fi
5336           fi
5337         else
5338           if test -n "$dir_added"; then
5339             if $doit; then
5340               echo "Creating $destdir/$dir$ignore"
5341               {
5342                 if test "$ignore" = .cvsignore; then
5343                   echo ".deps"
5344                   # Automake generates Makefile rules that create .dirstamp files.
5345                   echo ".dirstamp"
5346                 fi
5347                 echo "$dir_added" | sed -e '/^$/d' -e "s|^|$anchor|" | LC_ALL=C sort -u
5348               } > "$destdir/$dir$ignore"
5349             else
5350               echo "Create $destdir/$dir$ignore"
5351             fi
5352           fi
5353         fi
5354       }
5355       func_done_dir ()
5356       {
5357         dir="$1"
5358         dir_added="$2"
5359         dir_removed="$3"
5360         if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
5361           func_update_ignorelist .cvsignore
5362         fi
5363         if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
5364           func_update_ignorelist .gitignore
5365         fi
5366       }
5367       last_dir=
5368       last_dir_added=
5369       last_dir_removed=
5370       while read line; do
5371         # Why not ''read next_dir op file'' ? Because the dir column can be empty.
5372         next_dir=`echo "$line" | sed -e 's,|.*,,'`
5373         op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
5374         file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
5375         if test "$next_dir" != "$last_dir"; then
5376           func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
5377           last_dir="$next_dir"
5378           last_dir_added=
5379           last_dir_removed=
5380         fi
5381         case $op in
5382           A) func_append last_dir_added "$file$nl";;
5383           R) func_append last_dir_removed "$file$nl";;
5384         esac
5385       done
5386       func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
5387       exec 0<&5 5<&-
5388     }
5389   fi
5390
5391   echo "Finished."
5392   echo
5393   echo "You may need to add #include directives for the following .h files."
5394   # Intersect $specified_modules and $main_modules
5395   # (since $specified_modules is not necessarily of subset of $main_modules
5396   # - some may have been skipped through --avoid, and since the elements of
5397   # $main_modules but not in $specified_modules can go away without explicit
5398   # notice - through changes in the module dependencies).
5399   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
5400   echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
5401   # First the #include <...> directives without #ifs, sorted for convenience,
5402   # then the #include "..." directives without #ifs, sorted for convenience,
5403   # then the #include directives that are surrounded by #ifs. Not sorted.
5404   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
5405     include_directive=`func_get_include_directive "$module"`
5406     case "$nl$include_directive" in
5407       *"$nl#if"*)
5408         echo "$include_directive" 1>&5
5409         ;;
5410       *)
5411         echo "$include_directive" | grep -v 'include "' 1>&6
5412         echo "$include_directive" | grep 'include "' 1>&7
5413         ;;
5414     esac
5415   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
5416   (
5417    LC_ALL=C sort -u "$tmp"/include-angles
5418    LC_ALL=C sort -u "$tmp"/include-quotes
5419    cat "$tmp"/include-if
5420   ) | sed -e '/^$/d' -e 's/^/  /'
5421   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
5422
5423   for module in $main_modules; do
5424     func_get_link_directive "$module"
5425   done \
5426     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
5427   if test `wc -l < "$tmp"/link` != 0; then
5428     echo
5429     echo "You may need to use the following Makefile variables when linking."
5430     echo "Use them in <program>_LDADD when linking a program, or"
5431     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
5432     cat "$tmp"/link
5433   fi
5434   rm -f "$tmp"/link
5435
5436   echo
5437   echo "Don't forget to"
5438   if test "$makefile_am" = Makefile.am; then
5439     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
5440   else
5441     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
5442   fi
5443   if test -n "$pobase"; then
5444     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
5445   fi
5446   if test -n "$inctests"; then
5447     if test "$makefile_am" = Makefile.am; then
5448       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
5449     else
5450       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
5451     fi
5452   fi
5453   edit=0
5454   while test $edit != $makefile_am_edits; do
5455     edit=`expr $edit + 1`
5456     eval dir=\"\$makefile_am_edit${edit}_dir\"
5457     eval var=\"\$makefile_am_edit${edit}_var\"
5458     eval val=\"\$makefile_am_edit${edit}_val\"
5459     if test -n "$var"; then
5460       echo "  - mention \"${val}\" in ${var} in ${dir}Makefile.am,"
5461     fi
5462   done
5463   if grep '^ *AC_PROG_CC_STDC' "$configure_ac" > /dev/null; then
5464     position_early_after=AC_PROG_CC_STDC
5465   else
5466     if grep '^ *AC_PROG_CC_C99' "$configure_ac" > /dev/null; then
5467       position_early_after=AC_PROG_CC_C99
5468     else
5469       position_early_after=AC_PROG_CC
5470     fi
5471   fi
5472   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after $position_early_after,"
5473   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
5474 }
5475
5476 # func_create_testdir testdir modules
5477 # Input:
5478 # - local_gnulib_dir  from --local-dir
5479 # - modcache        true or false, from --cache-modules/--no-cache-modules
5480 # - auxdir          directory relative to destdir where to place build aux files
5481 # - inctests        true if tests should be included, blank otherwise
5482 # - incobsolete     true if obsolete modules among dependencies should be
5483 #                   included, blank otherwise
5484 # - excl_cxx_tests   true if C++ interoperability tests should be excluded,
5485 #                    blank otherwise
5486 # - excl_longrunning_tests  true if long-runnings tests should be excluded,
5487 #                           blank otherwise
5488 # - excl_privileged_tests  true if tests that require root privileges should be
5489 #                          excluded, blank otherwise
5490 # - excl_unportable_tests  true if tests that fail on some platforms should be
5491 #                          excluded, blank otherwise
5492 # - single_configure  true if a single configure file should be generated,
5493 #                     false for a separate configure file for the tests
5494 # - avoidlist       list of modules to avoid
5495 # - cond_dependencies  true if --conditional-dependencies was given, false if
5496 #                      --no-conditional-dependencies was given, blank otherwise
5497 # - libtool         true if --libtool was given, false if --no-libtool was
5498 #                   given, blank otherwise
5499 # - symbolic        true if files should be symlinked, copied otherwise
5500 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
5501 #                   copied otherwise
5502 func_create_testdir ()
5503 {
5504   testdir="$1"
5505   modules="$2"
5506   if test -z "$modules"; then
5507     # All modules together.
5508     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
5509     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
5510     # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
5511     modules=`func_all_modules`
5512     modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
5513   fi
5514   specified_modules="$modules"
5515
5516   # Canonicalize the list of specified modules.
5517   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
5518
5519   # Unlike in func_import, here we want to include all kinds of tests for the
5520   # directly specified modules, but not for dependencies.
5521   inc_all_direct_tests=true
5522   inc_all_indirect_tests="$inc_all_tests"
5523
5524   # Check that the license of every module is consistent with the license of
5525   # its dependencies.
5526   saved_inctests="$inctests"
5527   # When computing transitive closures, don't consider $module to depend on
5528   # $module-tests. Need this becauses tests are implicitly GPL and may depend
5529   # on GPL modules - therefore we don't want a warning in this case.
5530   inctests=""
5531   for requested_module in $specified_modules; do
5532     requested_license=`func_get_license "$requested_module"`
5533     if test "$requested_license" != GPL; then
5534       # Here we use func_modules_transitive_closure, not just
5535       # func_get_dependencies, so that we also detect weird situations like
5536       # an LGPL module which depends on a GPLed build tool module which depends
5537       # on a GPL module.
5538       modules="$requested_module"
5539       func_modules_transitive_closure
5540       for module in $modules; do
5541         license=`func_get_license "$module"`
5542         case "$license" in
5543           'GPLed build tool') ;;
5544           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
5545           *)
5546             case "$requested_license" in
5547               GPLv2+)
5548                 case "$license" in
5549                   GPLv2+ | LGPLv2+) ;;
5550                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5551                 esac
5552                 ;;
5553               LGPL)
5554                 case "$license" in
5555                   LGPL | LGPLv2+) ;;
5556                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5557                 esac
5558                 ;;
5559               LGPLv2+)
5560                 case "$license" in
5561                   LGPLv2+) ;;
5562                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5563                 esac
5564                 ;;
5565             esac
5566             ;;
5567         esac
5568       done
5569     fi
5570   done
5571   inctests="$saved_inctests"
5572
5573   # Subdirectory names.
5574   sourcebase=gllib
5575   m4base=glm4
5576   pobase=
5577   docbase=gldoc
5578   testsbase=gltests
5579   macro_prefix=gl
5580   po_domain=
5581   witness_c_macro=
5582   vc_files=
5583
5584   # Determine final module list.
5585   modules="$specified_modules"
5586   func_modules_transitive_closure
5587   if test $verbose -ge 0; then
5588     func_show_module_list
5589   fi
5590   final_modules="$modules"
5591
5592   if $single_configure; then
5593     # Determine main module list and tests-related module list separately.
5594     func_modules_transitive_closure_separately
5595   fi
5596
5597   if $single_configure; then
5598     # Determine whether a $testsbase/libtests.a is needed.
5599     func_determine_use_libtests
5600   fi
5601
5602   # Add the dummy module if needed.
5603   if $single_configure; then
5604     func_modules_add_dummy_separately
5605   else
5606     func_modules_add_dummy
5607   fi
5608
5609   # Show banner notice of every module.
5610   if $single_configure; then
5611     modules="$main_modules"
5612     func_modules_notice
5613   else
5614     func_modules_notice
5615   fi
5616
5617   # Determine final file list.
5618   if $single_configure; then
5619     func_modules_to_filelist_separately
5620   else
5621     func_modules_to_filelist
5622     if test $verbose -ge 0; then
5623       echo "File list:"
5624       echo "$files" | sed -e 's/^/  /'
5625     fi
5626   fi
5627   # Add files for which the copy in gnulib is newer than the one that
5628   # "automake --add-missing --copy" would provide.
5629   files="$files build-aux/config.guess"
5630   files="$files build-aux/config.sub"
5631   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
5632
5633   rewritten='%REWRITTEN%'
5634   sed_rewrite_files="\
5635     s,^build-aux/,$rewritten$auxdir/,
5636     s,^doc/,$rewritten$docbase/,
5637     s,^lib/,$rewritten$sourcebase/,
5638     s,^m4/,$rewritten$m4base/,
5639     s,^tests/,$rewritten$testsbase/,
5640     s,^tests=lib/,$rewritten$testsbase/,
5641     s,^top/,$rewritten,
5642     s,^$rewritten,,"
5643
5644   # Create directories.
5645   for f in $files; do echo $f; done \
5646     | sed -e "$sed_rewrite_files" \
5647     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
5648     | LC_ALL=C sort -u \
5649     > "$tmp"/dirs
5650   { # Rearrange file descriptors. Needed because "while ... done < ..."
5651     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5652     exec 5<&0 < "$tmp"/dirs
5653     while read d; do
5654       mkdir -p "$testdir/$d"
5655     done
5656     exec 0<&5 5<&-
5657   }
5658
5659   # Copy files or make symbolic links.
5660   delimiter='   '
5661   for f in $files; do echo $f; done \
5662     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
5663     | LC_ALL=C sort \
5664     > "$tmp"/files
5665   { # Rearrange file descriptors. Needed because "while ... done < ..."
5666     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5667     exec 5<&0 < "$tmp"/files
5668     while read g f; do
5669       case "$f" in
5670         tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
5671       esac
5672       func_lookup_file "$f"
5673       if test -n "$lookedup_tmp"; then
5674         cp -p "$lookedup_file" "$testdir/$g"
5675       else
5676         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
5677         if { test -n "$symbolic" \
5678              || { test -n "$lsymbolic" \
5679                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
5680           func_ln "$lookedup_file" "$testdir/$g"
5681         else
5682           cp -p "$lookedup_file" "$testdir/$g"
5683         fi
5684       fi
5685     done
5686     exec 0<&5 5<&-
5687   }
5688
5689   # Determine include_guard_prefix.
5690   func_compute_include_guard_prefix
5691
5692   # Create Makefile.ams that are for testing.
5693   for_test=true
5694
5695   # No special edits are needed.
5696   makefile_am_edits=0
5697
5698   # Create $sourcebase/Makefile.am.
5699   mkdir -p "$testdir/$sourcebase"
5700   destfile="$sourcebase/Makefile.am"
5701   if $single_configure; then
5702     modules="$main_modules"
5703   fi
5704   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
5705   any_uses_subdirs="$uses_subdirs"
5706
5707   # Create $m4base/Makefile.am.
5708   mkdir -p "$testdir/$m4base"
5709   (echo "## Process this file with automake to produce Makefile.in."
5710    echo
5711    echo "EXTRA_DIST ="
5712    for f in $files; do
5713      case "$f" in
5714        m4/* )
5715          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
5716      esac
5717    done
5718   ) > "$testdir/$m4base/Makefile.am"
5719
5720   subdirs="$sourcebase $m4base"
5721   subdirs_with_configure_ac=""
5722
5723   if false && test -f "$testdir"/$m4base/gettext.m4; then
5724     # Avoid stupid error message from automake:
5725     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
5726     mkdir -p "$testdir/po"
5727     (echo "## Process this file with automake to produce Makefile.in."
5728     ) > "$testdir/po/Makefile.am"
5729     func_append subdirs " po"
5730   fi
5731
5732   if test -n "$inctests"; then
5733     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
5734     if $single_configure; then
5735       # Create $testsbase/Makefile.am.
5736       destfile="$testsbase/Makefile.am"
5737       modules="$testsrelated_modules"
5738       func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$testdir/$testsbase/Makefile.am"
5739     else
5740       # Viewed from the $testsbase subdirectory, $auxdir is different.
5741       saved_auxdir="$auxdir"
5742       auxdir=`echo "$testsbase/" | sed -e 's%[^/][^/]*//*%../%g'`"$auxdir"
5743       # Create $testsbase/Makefile.am.
5744       use_libtests=false
5745       destfile="$testsbase/Makefile.am"
5746       func_emit_tests_Makefile_am "" > "$testdir/$testsbase/Makefile.am"
5747       any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
5748       # Create $testsbase/configure.ac.
5749       (echo "# Process this file with autoconf to produce a configure script."
5750        echo "AC_INIT([dummy], [0])"
5751        echo "AC_CONFIG_AUX_DIR([$auxdir])"
5752        echo "AM_INIT_AUTOMAKE"
5753        echo
5754        echo "AC_CONFIG_HEADERS([config.h])"
5755        echo
5756        echo "AC_PROG_CC"
5757        echo "AC_PROG_INSTALL"
5758        echo "AC_PROG_MAKE_SET"
5759        echo "gl_PROG_AR_RANLIB"
5760        echo
5761        if test -n "$uses_subdirs"; then
5762          echo "AM_PROG_CC_C_O"
5763          echo
5764        fi
5765        for module in $modules; do
5766          func_verify_module
5767          if test -n "$module"; then
5768            case $module in
5769              gnumakefile | maintainer-makefile)
5770                # These modules are meant to be used only in the top-level directory.
5771                ;;
5772              *)
5773                func_get_autoconf_early_snippet "$module"
5774                ;;
5775            esac
5776          fi
5777        done \
5778          | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
5779        if test "$libtool" = true; then
5780          echo "LT_INIT([win32-dll])"
5781          echo "LT_LANG([C++])"
5782          echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5783          echo "gl_cond_libtool=true"
5784        else
5785          echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5786          echo "gl_cond_libtool=false"
5787          echo "gl_libdeps="
5788          echo "gl_ltlibdeps="
5789        fi
5790        # Wrap the set of autoconf snippets into an autoconf macro that is then
5791        # invoked. This is needed because autoconf does not support AC_REQUIRE
5792        # at the top level:
5793        #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
5794        # but we want the AC_REQUIRE to have its normal meaning (provide one
5795        # expansion of the required macro before the current point, and only one
5796        # expansion total).
5797        echo "AC_DEFUN([gl_INIT], ["
5798        sed_replace_build_aux='
5799          :a
5800          /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5801            s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5802            ba
5803          }'
5804        echo "gl_m4_base='../$m4base'"
5805        func_emit_initmacro_start $macro_prefix
5806        # We don't have explicit ordering constraints between the various
5807        # autoconf snippets. It's cleanest to put those of the library before
5808        # those of the tests.
5809        echo "gl_source_base='../$sourcebase'"
5810        func_emit_autoconf_snippets "$modules" func_verify_nontests_module false false false
5811        echo "gl_source_base='.'"
5812        func_emit_autoconf_snippets "$modules" func_verify_tests_module false false false
5813        func_emit_initmacro_end $macro_prefix
5814        # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5815        # created using libtool, because libtool already handles the dependencies.
5816        if test "$libtool" != true; then
5817          libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5818          echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5819          echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5820          echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5821          echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5822        fi
5823        echo "])"
5824        func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
5825        echo
5826        echo "gl_INIT"
5827        echo
5828        # Usually $testsbase/config.h will be a superset of config.h. Verify this
5829        # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
5830        echo "AH_TOP([#include \"../config.h\"])"
5831        echo
5832        echo "AC_CONFIG_FILES([Makefile])"
5833        echo "AC_OUTPUT"
5834       ) > "$testdir/$testsbase/configure.ac"
5835       auxdir="$saved_auxdir"
5836       subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
5837     fi
5838     func_append subdirs " $testsbase"
5839   fi
5840
5841   # Create Makefile.am.
5842   (echo "## Process this file with automake to produce Makefile.in."
5843    echo
5844    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
5845    echo
5846    echo "SUBDIRS = $subdirs"
5847    echo
5848    echo "ACLOCAL_AMFLAGS = -I $m4base"
5849   ) > "$testdir/Makefile.am"
5850
5851   # Create configure.ac.
5852   (echo "# Process this file with autoconf to produce a configure script."
5853    echo "AC_INIT([dummy], [0])"
5854    if test "$auxdir" != "."; then
5855      echo "AC_CONFIG_AUX_DIR([$auxdir])"
5856    fi
5857    echo "AM_INIT_AUTOMAKE"
5858    echo
5859    echo "AC_CONFIG_HEADERS([config.h])"
5860    echo
5861    echo "AC_PROG_CC"
5862    echo "AC_PROG_INSTALL"
5863    echo "AC_PROG_MAKE_SET"
5864    echo
5865    echo "# For autobuild."
5866    echo "AC_CANONICAL_BUILD"
5867    echo "AC_CANONICAL_HOST"
5868    echo
5869    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
5870    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
5871    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
5872    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
5873    echo
5874    echo "gl_PROG_AR_RANLIB"
5875    echo
5876    if test -n "$any_uses_subdirs"; then
5877      echo "AM_PROG_CC_C_O"
5878      echo
5879    fi
5880    for module in $final_modules; do
5881      if $single_configure; then
5882        func_verify_module
5883      else
5884        func_verify_nontests_module
5885      fi
5886      if test -n "$module"; then
5887        func_get_autoconf_early_snippet "$module"
5888      fi
5889    done \
5890      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
5891    if test "$libtool" = true; then
5892      echo "LT_INIT([win32-dll])"
5893      echo "LT_LANG([C++])"
5894      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5895      echo "gl_cond_libtool=true"
5896    else
5897      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5898      echo "gl_cond_libtool=false"
5899      echo "gl_libdeps="
5900      echo "gl_ltlibdeps="
5901    fi
5902    # Wrap the set of autoconf snippets into an autoconf macro that is then
5903    # invoked. This is needed because autoconf does not support AC_REQUIRE
5904    # at the top level:
5905    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
5906    # but we want the AC_REQUIRE to have its normal meaning (provide one
5907    # expansion of the required macro before the current point, and only one
5908    # expansion total).
5909    echo "AC_DEFUN([gl_INIT], ["
5910    if test "$auxdir" != "build-aux"; then
5911      sed_replace_build_aux='
5912        :a
5913        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5914          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5915          ba
5916        }'
5917    else
5918      sed_replace_build_aux="$sed_noop"
5919    fi
5920    echo "gl_m4_base='$m4base'"
5921    func_emit_initmacro_start $macro_prefix
5922    echo "gl_source_base='$sourcebase'"
5923    if $single_configure; then
5924      func_emit_autoconf_snippets "$main_modules" func_verify_module true false false
5925    else
5926      func_emit_autoconf_snippets "$modules" func_verify_nontests_module true false false
5927    fi
5928    func_emit_initmacro_end $macro_prefix
5929    if $single_configure; then
5930      echo "  gltests_libdeps="
5931      echo "  gltests_ltlibdeps="
5932      func_emit_initmacro_start ${macro_prefix}tests
5933      echo "  gl_source_base='$testsbase'"
5934      # Define a tests witness macro.
5935      echo "  ${macro_prefix}tests_WITNESS=IN_GNULIB_TESTS"
5936      echo "  AC_SUBST([${macro_prefix}tests_WITNESS])"
5937      echo "  gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
5938      echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
5939      func_emit_autoconf_snippets "$testsrelated_modules" func_verify_module true false false
5940      echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5941      func_emit_initmacro_end ${macro_prefix}tests
5942    fi
5943    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5944    # created using libtool, because libtool already handles the dependencies.
5945    if test "$libtool" != true; then
5946      libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5947      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5948      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5949      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5950      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5951    fi
5952    if $single_configure; then
5953      if $use_libtests; then
5954        echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
5955        echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
5956      fi
5957    fi
5958    echo "])"
5959    func_emit_initmacro_done $macro_prefix $sourcebase
5960    if $single_configure; then
5961      func_emit_initmacro_done ${macro_prefix}tests $testsbase
5962    fi
5963    echo
5964    echo "gl_INIT"
5965    echo
5966    if test -n "$subdirs_with_configure_ac"; then
5967      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
5968    fi
5969    makefiles="Makefile"
5970    for d in $subdirs; do
5971      # For subdirs that have a configure.ac by their own, it's the subdir's
5972      # configure.ac which creates the subdir's Makefile.am, not this one.
5973      case " $subdirs_with_configure_ac " in
5974        *" $d "*) ;;
5975        *) func_append makefiles " $d/Makefile" ;;
5976      esac
5977    done
5978    echo "AC_CONFIG_FILES([$makefiles])"
5979    echo "AC_OUTPUT"
5980   ) > "$testdir/configure.ac"
5981
5982   # Create autogenerated files.
5983   (cd "$testdir"
5984    # Do not use "${AUTORECONF} --force --install", because it may invoke
5985    # autopoint, which brings in older versions of some of our .m4 files.
5986    if test -f $m4base/gettext.m4; then
5987      func_execute_command ${AUTOPOINT} --force || func_exit 1
5988      for f in $m4base/*.m4~; do
5989        if test -f $f; then
5990          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
5991        fi
5992      done
5993    fi
5994    if test "$libtool" = true; then
5995      func_execute_command ${LIBTOOLIZE} --copy || func_exit 1
5996    fi
5997    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
5998    if ! test -d build-aux; then
5999      func_execute_command mkdir build-aux || func_exit 1
6000    fi
6001    func_execute_command ${AUTOCONF} || func_exit 1
6002    func_execute_command ${AUTOHEADER} || func_exit 1
6003    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6004   ) || func_exit 1
6005   if test -n "$inctests" && ! $single_configure; then
6006     # Create autogenerated files.
6007     (cd "$testdir/$testsbase" || func_exit 1
6008      # Do not use "${AUTORECONF} --force --install", because it may invoke
6009      # autopoint, which brings in older versions of some of our .m4 files.
6010      if test -f ../$m4base/gettext.m4; then
6011        func_execute_command ${AUTOPOINT} --force || func_exit 1
6012        for f in ../$m4base/*.m4~; do
6013          if test -f $f; then
6014            mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
6015          fi
6016        done
6017      fi
6018      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
6019      if ! test -d ../build-aux; then
6020        func_execute_command mkdir ../build-aux
6021      fi
6022      func_execute_command ${AUTOCONF} || func_exit 1
6023      func_execute_command ${AUTOHEADER} || func_exit 1
6024      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6025     ) || func_exit 1
6026   fi
6027   # Need to run configure and make once, to create built files that are to be
6028   # distributed (such as parse-datetime.c).
6029   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
6030   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
6031   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
6032                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
6033   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
6034   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
6035   # such $(FOO_H) because they don't refer to distributed files.
6036   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
6037                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
6038                  | sed -e "$sed_remove_make_variables"`
6039   distributed_built_sources=`for file in $built_sources; do
6040                                case "$cleaned_files" in
6041                                  *" "$file" "*) ;;
6042                                  *) echo $file ;;
6043                                esac;
6044                              done`
6045   tests_distributed_built_sources=
6046   if test -n "$inctests"; then
6047     # Likewise for built files in the $testsbase directory.
6048     tests_cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$testsbase/Makefile.am" \
6049                          | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
6050     tests_cleaned_files=`for file in $tests_cleaned_files; do echo " $file "; done`
6051     tests_built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$testsbase/Makefile.am" \
6052                          | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
6053                          | sed -e "$sed_remove_make_variables"`
6054     tests_distributed_built_sources=`for file in $tests_built_sources; do
6055                                        case "$tests_cleaned_files" in
6056                                          *" "$file" "*) ;;
6057                                          *) echo $file ;;
6058                                        esac;
6059                                      done`
6060   fi
6061   if test -n "$distributed_built_sources" || test -n "$tests_distributed_built_sources"; then
6062     (cd "$testdir"
6063      ./configure || func_exit 1
6064        if test -n "$distributed_built_sources"; then
6065          cd "$sourcebase"
6066          echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
6067          $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6068                built_sources \
6069            || func_exit 1
6070          cd ..
6071        fi
6072        if test -n "$tests_distributed_built_sources"; then
6073          cd "$testsbase"
6074          echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
6075          $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6076                built_sources \
6077            || func_exit 1
6078          cd ..
6079        fi
6080      $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6081            distclean \
6082        || func_exit 1
6083     ) || func_exit 1
6084   fi
6085 }
6086
6087 # func_create_megatestdir megatestdir allmodules
6088 # Input:
6089 # - local_gnulib_dir  from --local-dir
6090 # - modcache        true or false, from --cache-modules/--no-cache-modules
6091 # - auxdir          directory relative to destdir where to place build aux files
6092 func_create_megatestdir ()
6093 {
6094   megatestdir="$1"
6095   allmodules="$2"
6096   if test -z "$allmodules"; then
6097     allmodules=`func_all_modules`
6098   fi
6099
6100   megasubdirs=
6101   # First, all modules one by one.
6102   for onemodule in $allmodules; do
6103     func_create_testdir "$megatestdir/$onemodule" $onemodule
6104     func_append megasubdirs "$onemodule "
6105   done
6106   # Then, all modules all together.
6107   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
6108   allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
6109   func_create_testdir "$megatestdir/ALL" "$allmodules"
6110   func_append megasubdirs "ALL"
6111
6112   # Create autobuild.
6113   cvsdate=`if test -f "$gnulib_dir/CVS/Entries"; then \
6114              vc_witness="$gnulib_dir/CVS/Entries"; \
6115            else \
6116              vc_witness="$gnulib_dir/.git/refs/heads/master"; \
6117            fi; \
6118            sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
6119              | sed -e 's,January,01,'   -e 's,Jan,01,' \
6120                    -e 's,February,02,'  -e 's,Feb,02,' \
6121                    -e 's,March,03,'     -e 's,Mar,03,' \
6122                    -e 's,April,04,'     -e 's,Apr,04,' \
6123                    -e 's,May,05,'                      \
6124                    -e 's,June,06,'      -e 's,Jun,06,' \
6125                    -e 's,July,07,'      -e 's,Jul,07,' \
6126                    -e 's,August,08,'    -e 's,Aug,08,' \
6127                    -e 's,September,09,' -e 's,Sep,09,' \
6128                    -e 's,October,10,'   -e 's,Oct,10,' \
6129                    -e 's,November,11,'  -e 's,Nov,11,' \
6130                    -e 's,December,12,'  -e 's,Dec,12,' \
6131                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
6132                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
6133   (echo '#!/bin/sh'
6134    echo "CVSDATE=$cvsdate"
6135    echo ": \${MAKE=make}"
6136    echo "test -d logs || mkdir logs"
6137    echo "for module in $megasubdirs; do"
6138    echo "  echo \"Working on module \$module...\""
6139    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
6140    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
6141    echo "   echo"
6142    echo "   set -x"
6143    echo "   : autobuild project... \$module"
6144    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
6145    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
6146    echo "   : autobuild hostname... \`hostname\`"
6147    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && \$MAKE && \$MAKE check && \$MAKE distclean"
6148    echo "   echo rc=\$?"
6149    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
6150    echo "done"
6151   ) > "$megatestdir/do-autobuild"
6152   chmod a+x "$megatestdir/do-autobuild"
6153
6154   # Create Makefile.am.
6155   (echo "## Process this file with automake to produce Makefile.in."
6156    echo
6157    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
6158    echo
6159    echo "SUBDIRS = $megasubdirs"
6160    echo
6161    echo "EXTRA_DIST = do-autobuild"
6162   ) > "$megatestdir/Makefile.am"
6163
6164   # Create configure.ac.
6165   (echo "# Process this file with autoconf to produce a configure script."
6166    echo "AC_INIT([dummy], [0])"
6167    if test "$auxdir" != "."; then
6168      echo "AC_CONFIG_AUX_DIR([$auxdir])"
6169    fi
6170    echo "AM_INIT_AUTOMAKE"
6171    echo
6172    echo "AC_PROG_MAKE_SET"
6173    echo
6174    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
6175    echo "AC_CONFIG_FILES([Makefile])"
6176    echo "AC_OUTPUT"
6177   ) > "$megatestdir/configure.ac"
6178
6179   # Create autogenerated files.
6180   (cd "$megatestdir"
6181    # Do not use "${AUTORECONF} --install", because autoreconf operates
6182    # recursively, but the subdirectories are already finished, therefore
6183    # calling autoreconf here would only waste lots of CPU time.
6184    func_execute_command ${ACLOCAL} || func_exit 1
6185    func_execute_command mkdir build-aux
6186    func_execute_command ${AUTOCONF} || func_exit 1
6187    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6188   ) || func_exit 1
6189 }
6190
6191 case $mode in
6192   "" )
6193     func_fatal_error "no mode specified" ;;
6194
6195   list )
6196     func_all_modules
6197     ;;
6198
6199   find )
6200     # sed expression that converts a literal to a basic regular expression.
6201     # Needs to handle . [ \ * ^ $.
6202     sed_literal_to_basic_regex='s/\\/\\\\/g
6203 s/\[/\\[/g
6204 s/\^/\\^/g
6205 s/\([.*$]\)/[\1]/g'
6206     for filename
6207     do
6208       if test -f "$gnulib_dir/$filename" \
6209          || { test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$filename"; }; then
6210         filename_anywhere_regex=`echo "$filename" | sed -e "$sed_literal_to_basic_regex"`
6211         filename_line_regex='^'"$filename_anywhere_regex"'$'
6212         module_candidates=`
6213           {
6214             (cd "$gnulib_dir" && find modules -type f -print | xargs -n 100 grep -l "$filename_line_regex" /dev/null | sed -e 's,^modules/,,')
6215             if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
6216               (cd "$local_gnulib_dir" && find modules -type f -print | xargs -n 100 grep -l "$filename_anywhere_regex" /dev/null | sed -e 's,^modules/,,' -e 's,\.diff$,,')
6217             fi
6218           } \
6219             | func_sanitize_modulelist \
6220             | LC_ALL=C sort -u
6221           `
6222         for module in $module_candidates; do
6223           if func_get_filelist $module | grep "$filename_line_regex" > /dev/null; then
6224             echo $module
6225           fi
6226         done
6227       else
6228         func_warning "file $filename does not exist"
6229       fi
6230     done
6231     ;;
6232
6233   import | add-import | remove-import | update )
6234
6235     # Where to import.
6236     if test -z "$destdir"; then
6237       destdir=.
6238     fi
6239     test -d "$destdir" \
6240       || func_fatal_error "destination directory does not exist: $destdir"
6241
6242     # Prefer configure.ac to configure.in.
6243     if test -f "$destdir"/configure.ac; then
6244       configure_ac="$destdir/configure.ac"
6245     else
6246       if test -f "$destdir"/configure.in; then
6247         configure_ac="$destdir/configure.in"
6248       else
6249         func_fatal_error "cannot find $destdir/configure.ac - make sure you run gnulib-tool from within your package's directory"
6250       fi
6251     fi
6252
6253     # Analyze configure.ac.
6254     guessed_auxdir="."
6255     guessed_libtool=false
6256     my_sed_traces='
6257       s,#.*$,,
6258       s,^dnl .*$,,
6259       s, dnl .*$,,
6260       /AC_CONFIG_AUX_DIR/ {
6261         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_auxdir="\1",p
6262       }
6263       /A[CM]_PROG_LIBTOOL/ {
6264         s,^.*$,guessed_libtool=true,p
6265       }'
6266     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
6267
6268     if test -z "$auxdir"; then
6269       auxdir="$guessed_auxdir"
6270     fi
6271
6272     # Determine where to apply func_import.
6273     if test "$mode" = import; then
6274       # Apply func_import to a particular gnulib directory.
6275       # The command line contains the complete specification; don't look at
6276       # the contents of gnulib-cache.m4.
6277       test -n "$supplied_libname" || supplied_libname=true
6278       test -n "$sourcebase" || sourcebase="lib"
6279       test -n "$m4base" || m4base="m4"
6280       test -n "$docbase" || docbase="doc"
6281       test -n "$testsbase" || testsbase="tests"
6282       test -n "$macro_prefix" || macro_prefix="gl"
6283       func_import "$*"
6284     else
6285       if test -n "$m4base"; then
6286         # Apply func_import to a particular gnulib directory.
6287         # Any number of additional modules can be given.
6288         if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
6289           # First use of gnulib in the given m4base.
6290           test -n "$supplied_libname" || supplied_libname=true
6291           test -n "$sourcebase" || sourcebase="lib"
6292           test -n "$docbase" || docbase="doc"
6293           test -n "$testsbase" || testsbase="tests"
6294           test -n "$macro_prefix" || macro_prefix="gl"
6295         fi
6296         func_import "$*"
6297       else
6298         # Apply func_import to all gnulib directories.
6299         # To get this list of directories, look at Makefile.am. (Not at
6300         # configure, because it may be omitted from version control. Also,
6301         # don't run "find $destdir -name gnulib-cache.m4", as it might be
6302         # too expensive.)
6303         m4dirs=
6304         m4dirs_count=0
6305         if test -f "$destdir"/Makefile.am; then
6306           aclocal_amflags=`sed -n -e 's/^ACLOCAL_AMFLAGS[        ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
6307           m4dir_is_next=
6308           for arg in $aclocal_amflags; do
6309             if test -n "$m4dir_is_next"; then
6310               # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
6311               case "$arg" in
6312                 /*) ;;
6313                 *)
6314                   if test -f "$destdir/$arg"/gnulib-cache.m4; then
6315                     func_append m4dirs " $arg"
6316                     m4dirs_count=`expr $m4dirs_count + 1`
6317                   fi
6318                   ;;
6319               esac
6320               m4dir_is_next=
6321             else
6322               if test "X$arg" = "X-I"; then
6323                 m4dir_is_next=yes
6324               else
6325                 m4dir_is_next=
6326               fi
6327             fi
6328           done
6329         else
6330           # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
6331           if test -f "$destdir"/aclocal.m4; then
6332             sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
6333             sedexpr2='s,^[^/]*$,.,'
6334             sedexpr3='s,/[^/]*$,,'
6335             m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
6336             m4dirs=`for arg in $m4dirs; do if test -f "$destdir/$arg"/gnulib-cache.m4; then echo $arg; fi; done`
6337             m4dirs_count=`for arg in $m4dirs; do echo "$arg"; done | wc -l`
6338           fi
6339         fi
6340         if test $m4dirs_count = 0; then
6341           # First use of gnulib in a package.
6342           # Any number of additional modules can be given.
6343           test -n "$supplied_libname" || supplied_libname=true
6344           test -n "$sourcebase" || sourcebase="lib"
6345           m4base="m4"
6346           test -n "$docbase" || docbase="doc"
6347           test -n "$testsbase" || testsbase="tests"
6348           test -n "$macro_prefix" || macro_prefix="gl"
6349           func_import "$*"
6350         else
6351           if test $m4dirs_count = 1; then
6352             # There's only one use of gnulib here. Assume the user means it.
6353             # Any number of additional modules can be given.
6354             for m4base in $m4dirs; do
6355               func_import "$*"
6356             done
6357           else
6358             # Ambiguous - guess what the user meant.
6359             if test $# = 0; then
6360               # No further arguments. Guess the user wants to update all of them.
6361               for m4base in $m4dirs; do
6362                 # Perform func_import in a subshell, so that variable values
6363                 # such as
6364                 #   local_gnulib_dir, incobsolete, inc_cxx_tests,
6365                 #   inc_longrunning_tests, inc_privileged_tests,
6366                 #   inc_unportable_tests, inc_all_tests, avoidlist, sourcebase,
6367                 #   m4base, pobase, docbase, testsbase, inctests, libname, lgpl,
6368                 #   makefile_name, libtool, macro_prefix, po_domain,
6369                 #   witness_c_macro, vc_files
6370                 # don't propagate from one directory to another.
6371                 (func_import) || func_exit 1
6372               done
6373             else
6374               # Really ambiguous.
6375               func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
6376             fi
6377           fi
6378         fi
6379       fi
6380     fi
6381     ;;
6382
6383   create-testdir )
6384     if test -z "$destdir"; then
6385       func_fatal_error "please specify --dir option"
6386     fi
6387     mkdir "$destdir"
6388     test -d "$destdir" \
6389       || func_fatal_error "could not create destination directory"
6390     test -n "$auxdir" || auxdir="build-aux"
6391     func_create_testdir "$destdir" "$*"
6392     ;;
6393
6394   create-megatestdir )
6395     if test -z "$destdir"; then
6396       func_fatal_error "please specify --dir option"
6397     fi
6398     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6399     test -n "$auxdir" || auxdir="build-aux"
6400     func_create_megatestdir "$destdir" "$*"
6401     ;;
6402
6403   test )
6404     test -n "$destdir" || destdir=testdir$$
6405     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6406     test -n "$auxdir" || auxdir="build-aux"
6407     func_create_testdir "$destdir" "$*"
6408     cd "$destdir"
6409       mkdir build
6410       cd build
6411         ../configure || func_exit 1
6412         $MAKE || func_exit 1
6413         $MAKE check || func_exit 1
6414         $MAKE distclean || func_exit 1
6415         remaining=`find . -type f -print`
6416         if test -n "$remaining"; then
6417           echo "Remaining files:" $remaining 1>&2
6418           echo "gnulib-tool: *** Stop." 1>&2
6419           func_exit 1
6420         fi
6421       cd ..
6422     cd ..
6423     rm -rf "$destdir"
6424     ;;
6425
6426   megatest )
6427     test -n "$destdir" || destdir=testdir$$
6428     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6429     test -n "$auxdir" || auxdir="build-aux"
6430     func_create_megatestdir "$destdir" "$*"
6431     cd "$destdir"
6432       mkdir build
6433       cd build
6434         ../configure
6435         $MAKE
6436         $MAKE check
6437         $MAKE distclean
6438         remaining=`find . -type f -print`
6439         if test -n "$remaining"; then
6440           echo "Remaining files:" $remaining 1>&2
6441           echo "gnulib-tool: *** Stop." 1>&2
6442           func_exit 1
6443         fi
6444       cd ..
6445     cd ..
6446     rm -rf "$destdir"
6447     ;;
6448
6449   extract-description )
6450     for module
6451     do
6452       func_verify_module
6453       if test -n "$module"; then
6454         func_get_description "$module"
6455       fi
6456     done
6457     ;;
6458
6459   extract-comment )
6460     for module
6461     do
6462       func_verify_module
6463       if test -n "$module"; then
6464         func_get_comment "$module"
6465       fi
6466     done
6467     ;;
6468
6469   extract-status )
6470     for module
6471     do
6472       func_verify_module
6473       if test -n "$module"; then
6474         func_get_status "$module"
6475       fi
6476     done
6477     ;;
6478
6479   extract-notice )
6480     for module
6481     do
6482       func_verify_module
6483       if test -n "$module"; then
6484         func_get_notice "$module"
6485       fi
6486     done
6487     ;;
6488
6489   extract-applicability )
6490     for module
6491     do
6492       func_verify_module
6493       if test -n "$module"; then
6494         func_get_applicability "$module"
6495       fi
6496     done
6497     ;;
6498
6499   extract-filelist )
6500     for module
6501     do
6502       func_verify_module
6503       if test -n "$module"; then
6504         func_get_filelist "$module"
6505       fi
6506     done
6507     ;;
6508
6509   extract-dependencies )
6510     for module
6511     do
6512       func_verify_module
6513       if test -n "$module"; then
6514         func_get_dependencies "$module"
6515       fi
6516     done
6517     ;;
6518
6519   extract-autoconf-snippet )
6520     for module
6521     do
6522       func_verify_module
6523       if test -n "$module"; then
6524         func_get_autoconf_snippet "$module"
6525       fi
6526     done
6527     ;;
6528
6529   extract-automake-snippet )
6530     for module
6531     do
6532       func_verify_module
6533       if test -n "$module"; then
6534         func_get_automake_snippet "$module"
6535       fi
6536     done
6537     ;;
6538
6539   extract-include-directive )
6540     for module
6541     do
6542       func_verify_module
6543       if test -n "$module"; then
6544         func_get_include_directive "$module"
6545       fi
6546     done
6547     ;;
6548
6549   extract-link-directive )
6550     for module
6551     do
6552       func_verify_module
6553       if test -n "$module"; then
6554         func_get_link_directive "$module"
6555       fi
6556     done
6557     ;;
6558
6559   extract-license )
6560     for module
6561     do
6562       func_verify_module
6563       if test -n "$module"; then
6564         func_get_license "$module"
6565       fi
6566     done
6567     ;;
6568
6569   extract-maintainer )
6570     for module
6571     do
6572       func_verify_module
6573       if test -n "$module"; then
6574         func_get_maintainer "$module"
6575       fi
6576     done
6577     ;;
6578
6579   extract-tests-module )
6580     for module
6581     do
6582       func_verify_module
6583       if test -n "$module"; then
6584         func_get_tests_module "$module"
6585       fi
6586     done
6587     ;;
6588
6589   copy-file )
6590     # Verify the number of arguments.
6591     if test $# -lt 1 || test $# -gt 2; then
6592       func_fatal_error "invalid number of arguments for --$mode"
6593     fi
6594
6595     # The first argument is the file to be copied.
6596     f="$1"
6597     # Verify the file exists.
6598     func_lookup_file "$f"
6599
6600     # The second argument is the destination; either a directory ot a file.
6601     # It defaults to the current directory.
6602     dest="$2"
6603     test -n "$dest" || dest='.'
6604     test -n "$sourcebase" || sourcebase="lib"
6605     test -n "$m4base" || m4base="m4"
6606     test -n "$docbase" || docbase="doc"
6607     test -n "$testsbase" || testsbase="tests"
6608     test -n "$auxdir" || auxdir="build-aux"
6609     rewritten='%REWRITTEN%'
6610     sed_rewrite_files="\
6611       s,^build-aux/,$rewritten$auxdir/,
6612       s,^doc/,$rewritten$docbase/,
6613       s,^lib/,$rewritten$sourcebase/,
6614       s,^m4/,$rewritten$m4base/,
6615       s,^tests/,$rewritten$testsbase/,
6616       s,^top/,$rewritten,
6617       s,^$rewritten,,"
6618     if test -d "$dest"; then
6619       destdir="$dest"
6620       g=`echo "$f" | sed -e "$sed_rewrite_files"`
6621     else
6622       destdir=`dirname "$dest"`
6623       g=`basename "$dest"`
6624     fi
6625
6626     # Create the directory for destfile.
6627     d=`dirname "$destdir/$g"`
6628     if $doit; then
6629       if test -n "$d" && test ! -d "$d"; then
6630         mkdir -p "$d" || func_fatal_error "failed"
6631       fi
6632     fi
6633     # Copy the file.
6634     func_dest_tmpfilename "$g"
6635     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
6636     already_present=true
6637     if test -f "$destdir/$g"; then
6638       # The file already exists.
6639       func_update_file
6640     else
6641       # Install the file.
6642       # Don't protest if the file should be there but isn't: it happens
6643       # frequently that developers don't put autogenerated files under version
6644       # control.
6645       func_add_file
6646     fi
6647     rm -f "$tmpfile"
6648     ;;
6649
6650   * )
6651     func_fatal_error "unknown operation mode --$mode" ;;
6652 esac
6653
6654 rm -rf "$tmp"
6655 # Undo the effect of the previous 'trap' command. Some shellology:
6656 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
6657 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
6658 # exit); for the others we need to call 'exit' explicitly. The value of $? is
6659 # 128 + signal number and is set before the trap-registered command is run.
6660 trap '' 0
6661 trap 'func_exit $?' 1 2 3 13 15
6662
6663 exit 0
6664
6665 # Local Variables:
6666 # indent-tabs-mode: nil
6667 # whitespace-check-buffer-indent: nil
6668 # End: