NEWS.stable: log cherry-pick [7c25126]->[6057366] autoupdate
[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 && func_acceptable "$dep"; 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 # - sed_replace_include_guard_prefix
3856 #                     sed expression for resolving ${gl_include_guard_prefix}
3857 # - module            the module name
3858 # - toplevel          true or false. 'false' means a subordinate use of
3859 #                     gnulib-tool.
3860 # - disable_libtool   true or false. It tells whether to disable libtool
3861 #                     handling even if it has been specified through the
3862 #                     command line options.
3863 # - disable_gettext   true or false. It tells whether to disable AM_GNU_GETTEXT
3864 #                     invocations.
3865 # - indentation       spaces to prepend on each line
3866 func_emit_autoconf_snippet ()
3867 {
3868   if { case $module in
3869          gnumakefile | maintainer-makefile)
3870            # These modules are meant to be used only in the top-level directory.
3871            $toplevel ;;
3872          *)
3873            true ;;
3874        esac
3875      }; then
3876     func_get_autoconf_snippet "$module" \
3877       | sed -e '/^$/d;' -e "s/^/$indentation/" \
3878             -e "$sed_replace_build_aux" \
3879             -e "$sed_replace_include_guard_prefix" \
3880       | { if $disable_libtool; then
3881             sed -e 's/\$gl_cond_libtool/false/g' \
3882                 -e 's/gl_libdeps/gltests_libdeps/g' \
3883                 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
3884           else
3885             cat
3886           fi
3887         } \
3888       | { if $disable_gettext; then
3889             sed -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
3890           else
3891             cat
3892           fi
3893         }
3894     if test "$module" = 'alloca' && test "$libtool" = true && ! $disable_libtool; then
3895       echo 'changequote(,)dnl'
3896       echo 'LTALLOCA=`echo "$ALLOCA" | sed -e '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
3897       echo 'changequote([, ])dnl'
3898       echo 'AC_SUBST([LTALLOCA])'
3899     fi
3900   fi
3901 }
3902
3903 # func_emit_autoconf_snippets modules verifier toplevel disable_libtool disable_gettext
3904 # collects and emit the autoconf snippets of a set of modules.
3905 # Input:
3906 # - local_gnulib_dir  from --local-dir
3907 # - modcache          true or false, from --cache-modules/--no-cache-modules
3908 # - sed_replace_build_aux  sed expression that replaces reference to build-aux
3909 # - sed_replace_include_guard_prefix
3910 #                     sed expression for resolving ${gl_include_guard_prefix}
3911 # - modules           the list of modules.
3912 # - verifier          one of func_verify_module, func_verify_nontests_module,
3913 #                     func_verify_tests_module. It selects the subset of
3914 #                     $modules to consider.
3915 # - toplevel          true or false. 'false' means a subordinate use of
3916 #                     gnulib-tool.
3917 # - disable_libtool   true or false. It tells whether to disable libtool
3918 #                     handling even if it has been specified through the
3919 #                     command line options.
3920 # - disable_gettext   true or false. It tells whether to disable AM_GNU_GETTEXT
3921 #                     invocations.
3922 func_emit_autoconf_snippets ()
3923 {
3924   verifier="$2"
3925   toplevel="$3"
3926   disable_libtool="$4"
3927   disable_gettext="$5"
3928   if test "$cond_dependencies" = true; then
3929     for m in $modules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/modules
3930     # Emit the autoconf code for the unconditional modules.
3931     for module in $1; do
3932       eval $verifier
3933       if test -n "$module"; then
3934         if func_cond_module_p "$module"; then
3935           :
3936         else
3937           func_emit_autoconf_snippet "  "
3938         fi
3939       fi
3940     done
3941     # Initialize the shell variables indicating that the modules are enabled.
3942     for module in $1; do
3943       eval $verifier
3944       if test -n "$module"; then
3945         if func_cond_module_p "$module"; then
3946           func_module_shellvar_name "$module"
3947           echo "  $shellvar=false"
3948         fi
3949       fi
3950     done
3951     # Emit the autoconf code for the conditional modules, each in a separate
3952     # function. This makes it possible to support cycles among conditional
3953     # modules.
3954     for module in $1; do
3955       eval $verifier
3956       if test -n "$module"; then
3957         if func_cond_module_p "$module"; then
3958           func_module_shellfunc_name "$module"
3959           func_module_shellvar_name "$module"
3960           echo "  $shellfunc ()"
3961           echo '  {'
3962           echo "    if ! \$$shellvar; then"
3963           func_emit_autoconf_snippet "      "
3964           echo "      $shellvar=true"
3965           deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
3966           # Intersect $deps with the modules list $1.
3967           deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C join - "$tmp"/modules`
3968           for dep in $deps; do
3969             if func_cond_module_p "$dep"; then
3970               func_module_shellfunc_name "$dep"
3971               func_cond_module_condition "$module" "$dep"
3972               if test "$condition" != true; then
3973                 echo "      if $condition; then"
3974                 echo "        $shellfunc"
3975                 echo '      fi'
3976               else
3977                 echo "      $shellfunc"
3978               fi
3979             else
3980               # The autoconf code for $dep has already been emitted above and
3981               # therefore is already executed when this function is run.
3982               :
3983             fi
3984           done
3985           echo '    fi'
3986           echo '  }'
3987         fi
3988       fi
3989     done
3990     # Emit the dependencies from the unconditional to the conditional modules.
3991     for module in $1; do
3992       eval $verifier
3993       if test -n "$module"; then
3994         if func_cond_module_p "$module"; then
3995           :
3996         else
3997           deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
3998           # Intersect $deps with the modules list $1.
3999           deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C join - "$tmp"/modules`
4000           for dep in $deps; do
4001             if func_cond_module_p "$dep"; then
4002               func_module_shellfunc_name "$dep"
4003               func_cond_module_condition "$module" "$dep"
4004               if test "$condition" != true; then
4005                 echo "  if $condition; then"
4006                 echo "    $shellfunc"
4007                 echo '  fi'
4008               else
4009                 echo "  $shellfunc"
4010               fi
4011             else
4012               # The autoconf code for $dep has already been emitted above and
4013               # therefore is already executed when this code is run.
4014               :
4015             fi
4016           done
4017         fi
4018       fi
4019     done
4020     # Define the Automake conditionals.
4021     echo "  m4_pattern_allow([^${macro_prefix}_GNULIB_ENABLED_])"
4022     for module in $1; do
4023       eval $verifier
4024       if test -n "$module"; then
4025         if func_cond_module_p "$module"; then
4026           func_module_conditional_name "$module"
4027           func_module_shellvar_name "$module"
4028           echo "  AM_CONDITIONAL([$conditional], [\$$shellvar])"
4029         fi
4030       fi
4031     done
4032   else
4033     # Ignore the conditions, and enable all modules unconditionally.
4034     for module in $1; do
4035       eval $verifier
4036       if test -n "$module"; then
4037         func_emit_autoconf_snippet "  "
4038       fi
4039     done
4040   fi
4041 }
4042
4043 # func_import modules
4044 # Uses also the variables
4045 # - mode            import or add-import or remove-import or update
4046 # - destdir         target directory
4047 # - local_gnulib_dir  from --local-dir
4048 # - modcache        true or false, from --cache-modules/--no-cache-modules
4049 # - verbose         integer, default 0, inc/decremented by --verbose/--quiet
4050 # - libname         library name
4051 # - supplied_libname  true if --lib was given, blank otherwise
4052 # - sourcebase      directory relative to destdir where to place source code
4053 # - m4base          directory relative to destdir where to place *.m4 macros
4054 # - pobase          directory relative to destdir where to place *.po files
4055 # - docbase         directory relative to destdir where to place doc files
4056 # - testsbase       directory relative to destdir where to place unit test code
4057 # - auxdir          directory relative to destdir where to place build aux files
4058 # - inctests        true if --with-tests was given, blank otherwise
4059 # - incobsolete     true if --with-obsolete was given, blank otherwise
4060 # - inc_cxx_tests   true if --with-c++-tests was given, blank otherwise
4061 # - inc_longrunning_tests  true if --with-longrunning-tests was given, blank
4062 #                          otherwise
4063 # - inc_privileged_tests  true if --with-privileged-tests was given, blank
4064 #                         otherwise
4065 # - inc_unportable_tests  true if --with-unportable-tests was given, blank
4066 #                         otherwise
4067 # - inc_all_tests   true if --with-all-tests was given, blank otherwise
4068 # - avoidlist       list of modules to avoid, from --avoid
4069 # - cond_dependencies  true if --conditional-dependencies was given, false if
4070 #                      --no-conditional-dependencies was given, blank otherwise
4071 # - lgpl            yes or a number if library's license shall be LGPL,
4072 #                   blank otherwise
4073 # - makefile_name   from --makefile-name
4074 # - libtool         true if --libtool was given, false if --no-libtool was
4075 #                   given, blank otherwise
4076 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
4077 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
4078 # - po_domain       prefix of i18n domain to use (without -gnulib suffix)
4079 # - witness_c_macro  from --witness-c-macro
4080 # - vc_files        true if --vc-files was given, false if --no-vc-files was
4081 #                   given, blank otherwise
4082 # - autoconf_minversion  minimum supported autoconf version
4083 # - doit            : if actions shall be executed, false if only to be printed
4084 # - symbolic        true if files should be symlinked, copied otherwise
4085 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
4086 #                   copied otherwise
4087 # - do_copyrights   true if copyright notices in files should be replaced,
4088 #                   blank otherwise
4089 func_import ()
4090 {
4091   # Get the cached settings.
4092   # In 'import' mode, we read them only for the purpose of knowing the old
4093   # installed file list, and don't use them as defaults.
4094   cached_local_gnulib_dir=
4095   cached_specified_modules=
4096   cached_incobsolete=
4097   cached_inc_cxx_tests=
4098   cached_inc_longrunning_tests=
4099   cached_inc_privileged_tests=
4100   cached_inc_unportable_tests=
4101   cached_inc_all_tests=
4102   cached_avoidlist=
4103   cached_sourcebase=
4104   cached_m4base=
4105   cached_pobase=
4106   cached_docbase=
4107   cached_testsbase=
4108   cached_inctests=
4109   cached_libname=
4110   cached_lgpl=
4111   cached_makefile_name=
4112   cached_cond_dependencies=
4113   cached_libtool=
4114   cached_macro_prefix=
4115   cached_po_domain=
4116   cached_witness_c_macro=
4117   cached_vc_files=
4118   cached_files=
4119   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
4120     cached_libtool=false
4121     my_sed_traces='
4122       s,#.*$,,
4123       s,^dnl .*$,,
4124       s, dnl .*$,,
4125       /gl_LOCAL_DIR(/ {
4126         s,^.*gl_LOCAL_DIR([[ ]*\([^]"$`\\)]*\).*$,cached_local_gnulib_dir="\1",p
4127       }
4128       /gl_MODULES(/ {
4129         ta
4130         :a
4131           s/)/)/
4132           tb
4133           N
4134           ba
4135         :b
4136         s,^.*gl_MODULES([[ ]*\([^]"$`\\)]*\).*$,cached_specified_modules="\1",p
4137       }
4138       /gl_WITH_OBSOLETE/ {
4139         s,^.*$,cached_incobsolete=true,p
4140       }
4141       /gl_WITH_CXX_TESTS/ {
4142         s,^.*$,cached_inc_cxx_tests=true,p
4143       }
4144       /gl_WITH_LONGRUNNING_TESTS/ {
4145         s,^.*$,cached_inc_longrunning_tests=true,p
4146       }
4147       /gl_WITH_PRIVILEGED_TESTS/ {
4148         s,^.*$,cached_inc_privileged_tests=true,p
4149       }
4150       /gl_WITH_UNPORTABLE_TESTS/ {
4151         s,^.*$,cached_inc_unportable_tests=true,p
4152       }
4153       /gl_WITH_ALL_TESTS/ {
4154         s,^.*$,cached_inc_all_tests=true,p
4155       }
4156       /gl_AVOID(/ {
4157         s,^.*gl_AVOID([[ ]*\([^]"$`\\)]*\).*$,cached_avoidlist="\1",p
4158       }
4159       /gl_SOURCE_BASE(/ {
4160         s,^.*gl_SOURCE_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_sourcebase="\1",p
4161       }
4162       /gl_M4_BASE(/ {
4163         s,^.*gl_M4_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_m4base="\1",p
4164       }
4165       /gl_PO_BASE(/ {
4166         s,^.*gl_PO_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_pobase="\1",p
4167       }
4168       /gl_DOC_BASE(/ {
4169         s,^.*gl_DOC_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_docbase="\1",p
4170       }
4171       /gl_TESTS_BASE(/ {
4172         s,^.*gl_TESTS_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_testsbase="\1",p
4173       }
4174       /gl_WITH_TESTS/ {
4175         s,^.*$,cached_inctests=true,p
4176       }
4177       /gl_LIB(/ {
4178         s,^.*gl_LIB([[ ]*\([^]"$`\\)]*\).*$,cached_libname="\1",p
4179       }
4180       /gl_LGPL(/ {
4181         s,^.*gl_LGPL([[ ]*\([^]"$`\\)]*\).*$,cached_lgpl="\1",p
4182       }
4183       /gl_LGPL/ {
4184         s,^.*$,cached_lgpl=yes,p
4185       }
4186       /gl_MAKEFILE_NAME(/ {
4187         s,^.*gl_MAKEFILE_NAME([[ ]*\([^]"$`\\)]*\).*$,cached_makefile_name="\1",p
4188       }
4189       /gl_CONDITIONAL_DEPENDENCIES/ {
4190         s,^.*$,cached_cond_dependencies=true,p
4191       }
4192       /gl_LIBTOOL/ {
4193         s,^.*$,cached_libtool=true,p
4194       }
4195       /gl_MACRO_PREFIX(/ {
4196         s,^.*gl_MACRO_PREFIX([[ ]*\([^]"$`\\)]*\).*$,cached_macro_prefix="\1",p
4197       }
4198       /gl_PO_DOMAIN(/ {
4199         s,^.*gl_PO_DOMAIN([[ ]*\([^]"$`\\)]*\).*$,cached_po_domain="\1",p
4200       }
4201       /gl_WITNESS_C_MACRO(/ {
4202         s,^.*gl_WITNESS_C_MACRO([[ ]*\([^]"$`\\)]*\).*$,cached_witness_c_macro="\1",p
4203       }
4204       /gl_VC_FILES(/ {
4205         s,^.*gl_VC_FILES([[ ]*\([^]"$`\\)]*\).*$,cached_vc_files="\1",p
4206       }'
4207     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
4208     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
4209       my_sed_traces='
4210         s,#.*$,,
4211         s,^dnl .*$,,
4212         s, dnl .*$,,
4213         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
4214           s,^.*$,cached_files=",p
4215           n
4216           ta
4217           :a
4218           s,^\]).*$,",
4219           tb
4220           s,["$`\\],,g
4221           p
4222           n
4223           ba
4224           :b
4225           p
4226         }'
4227       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
4228     fi
4229   fi
4230
4231   if test "$mode" = import; then
4232     # In 'import' mode, the new set of specified modules overrides the cached
4233     # set of modules. Ignore the cached settings.
4234     specified_modules="$1"
4235   else
4236     # Merge the cached settings with the specified ones.
4237     # The m4base must be the same as expected from the pathname.
4238     if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
4239       func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
4240     fi
4241     # The local_gnulib_dir defaults to the cached one. Recall that the cached one
4242     # is relative to $destdir, whereas the one we use is relative to . or absolute.
4243     if test -z "$local_gnulib_dir"; then
4244       if test -n "$cached_local_gnulib_dir"; then
4245         case "$destdir" in
4246           /*)
4247             local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
4248           *)
4249             case "$cached_local_gnulib_dir" in
4250               /*)
4251                 local_gnulib_dir="$destdir/$cached_local_gnulib_dir" ;;
4252               *)
4253                 func_relconcat "$destdir" "$cached_local_gnulib_dir"
4254                 local_gnulib_dir="$relconcat" ;;
4255             esac ;;
4256         esac
4257       fi
4258     fi
4259     case $mode in
4260       add-import)
4261         # Append the cached and the specified module names. So that
4262         # "gnulib-tool --add-import foo" means to add the module foo.
4263         specified_modules="$cached_specified_modules $1"
4264         ;;
4265       remove-import)
4266         # Take the cached module names, minus the specified module names.
4267         specified_modules=
4268         if $have_associative; then
4269           # Use an associative array, for O(N) worst-case run time.
4270           declare -A to_remove
4271           for m in $1; do
4272             eval 'to_remove[$m]=yes'
4273           done
4274           for module in $cached_specified_modules; do
4275             if eval 'test -z "${to_remove[$module]}"'; then
4276               func_append specified_modules "$module "
4277             fi
4278           done
4279         else
4280           # This loop has O(N²) worst-case run time.
4281           for module in $cached_specified_modules; do
4282             to_remove=
4283             for m in $1; do
4284               if test "$m" = "$module"; then
4285                 to_remove=yes
4286                 break
4287               fi
4288             done
4289             if test -z "$to_remove"; then
4290               func_append specified_modules "$module "
4291             fi
4292           done
4293         fi
4294         ;;
4295       update)
4296         # Take the cached module names. There are no specified module names.
4297         specified_modules="$cached_specified_modules"
4298         ;;
4299     esac
4300     # Included obsolete modules among the dependencies if specified either way.
4301     if test -z "$incobsolete"; then
4302       incobsolete="$cached_incobsolete"
4303     fi
4304     # Included special kinds of tests modules among the dependencies if specified
4305     # either way.
4306     if test -z "$inc_cxx_tests"; then
4307       inc_cxx_tests="$cached_inc_cxx_tests"
4308     fi
4309     if test -z "$inc_longrunning_tests"; then
4310       inc_longrunning_tests="$cached_inc_longrunning_tests"
4311     fi
4312     if test -z "$inc_privileged_tests"; then
4313       inc_privileged_tests="$cached_inc_privileged_tests"
4314     fi
4315     if test -z "$inc_unportable_tests"; then
4316       inc_unportable_tests="$cached_inc_unportable_tests"
4317     fi
4318     if test -z "$inc_all_tests"; then
4319       inc_all_tests="$cached_inc_all_tests"
4320     fi
4321     # Append the cached and the specified avoidlist. This is probably better
4322     # than dropping the cached one when --avoid is specified at least once.
4323     avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
4324     avoidlist=`echo $avoidlist`
4325
4326     # The sourcebase defaults to the cached one.
4327     if test -z "$sourcebase"; then
4328       sourcebase="$cached_sourcebase"
4329       if test -z "$sourcebase"; then
4330         func_fatal_error "missing --source-base option"
4331       fi
4332     fi
4333     # The pobase defaults to the cached one.
4334     if test -z "$pobase"; then
4335       pobase="$cached_pobase"
4336     fi
4337     # The docbase defaults to the cached one.
4338     if test -z "$docbase"; then
4339       docbase="$cached_docbase"
4340       if test -z "$docbase"; then
4341         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."
4342       fi
4343     fi
4344     # The testsbase defaults to the cached one.
4345     if test -z "$testsbase"; then
4346       testsbase="$cached_testsbase"
4347       if test -z "$testsbase"; then
4348         func_fatal_error "missing --tests-base option"
4349       fi
4350     fi
4351     # Require the tests if specified either way.
4352     if test -z "$inctests"; then
4353       inctests="$cached_inctests"
4354     fi
4355     # The libname defaults to the cached one.
4356     if test -z "$supplied_libname"; then
4357       libname="$cached_libname"
4358       if test -z "$libname"; then
4359         func_fatal_error "missing --lib option"
4360       fi
4361     fi
4362     # Require LGPL if specified either way.
4363     if test -z "$lgpl"; then
4364       lgpl="$cached_lgpl"
4365     fi
4366     # The makefile_name defaults to the cached one.
4367     if test -z "$makefile_name"; then
4368       makefile_name="$cached_makefile_name"
4369     fi
4370     # Use conditional dependencies if specified either way.
4371     if test -z "$cond_dependencies"; then
4372       cond_dependencies="$cached_cond_dependencies"
4373     fi
4374     # Use libtool if specified either way, or if guessed.
4375     if test -z "$libtool"; then
4376       if test -n "$cached_m4base"; then
4377         libtool="$cached_libtool"
4378       else
4379         libtool="$guessed_libtool"
4380       fi
4381     fi
4382     # The macro_prefix defaults to the cached one.
4383     if test -z "$macro_prefix"; then
4384       macro_prefix="$cached_macro_prefix"
4385       if test -z "$macro_prefix"; then
4386         func_fatal_error "missing --macro-prefix option"
4387       fi
4388     fi
4389     # The po_domain defaults to the cached one.
4390     if test -z "$po_domain"; then
4391       po_domain="$cached_po_domain"
4392     fi
4393     # The witness_c_macro defaults to the cached one.
4394     if test -z "$witness_c_macro"; then
4395       witness_c_macro="$cached_witness_c_macro"
4396     fi
4397     # The vc_files defaults to the cached one.
4398     if test -z "$vc_files"; then
4399       vc_files="$cached_vc_files"
4400     fi
4401     # Ensure constraints.
4402     if test "$cond_dependencies" = true && test -n "$inctests"; then
4403       echo "gnulib-tool: option --conditional-dependencies is not supported with --with-tests" 1>&2
4404       func_exit 1
4405     fi
4406   fi
4407   # --without-*-tests options are not supported here.
4408   excl_cxx_tests=
4409   excl_longrunning_tests=
4410   excl_privileged_tests=
4411   excl_unportable_tests=
4412
4413   # Canonicalize the list of specified modules.
4414   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
4415
4416   # Include all kinds of tests modules if --with-all-tests was specified.
4417   inc_all_direct_tests="$inc_all_tests"
4418   inc_all_indirect_tests="$inc_all_tests"
4419
4420   # Determine final module list.
4421   modules="$specified_modules"
4422   func_modules_transitive_closure
4423   if test $verbose -ge 0; then
4424     func_show_module_list
4425   fi
4426   final_modules="$modules"
4427
4428   # Determine main module list and tests-related module list separately.
4429   func_modules_transitive_closure_separately
4430
4431   # Determine whether a $testsbase/libtests.a is needed.
4432   func_determine_use_libtests
4433
4434   # Add the dummy module to the main module list or to the tests-related module
4435   # list if needed.
4436   func_modules_add_dummy_separately
4437
4438   # If --lgpl, verify that the licenses of modules are compatible.
4439   if test -n "$lgpl"; then
4440     license_incompatibilities=
4441     for module in $main_modules; do
4442       license=`func_get_license $module`
4443       case $license in
4444         'GPLed build tool') ;;
4445         'public domain' | 'unlimited' | 'unmodifiable license text') ;;
4446         *)
4447           case "$lgpl" in
4448             yes | 3)
4449               case $license in
4450                 LGPL | LGPLv2+ | LGPLv3+) ;;
4451                 *) func_append license_incompatibilities "$module $license$nl" ;;
4452               esac
4453               ;;
4454             2)
4455               case $license in
4456                 LGPLv2+) ;;
4457                 *) func_append license_incompatibilities "$module $license$nl" ;;
4458               esac
4459               ;;
4460             *) func_fatal_error "invalid value lgpl=$lgpl" ;;
4461           esac
4462           ;;
4463       esac
4464     done
4465     if test -n "$license_incompatibilities"; then
4466       # Format the license incompatibilities as a table.
4467       sed_expand_column1_width50_indent17='s,^\([^ ]*\) ,\1                                                   ,
4468 s,^\(.................................................[^ ]*\) *,                 \1 ,'
4469       license_incompatibilities=`echo "$license_incompatibilities" | sed -e "$sed_expand_column1_width50_indent17"`
4470       func_fatal_error "incompatible license on modules:$nl$license_incompatibilities"
4471     fi
4472   fi
4473
4474   # Show banner notice of every module.
4475   modules="$main_modules"
4476   func_modules_notice
4477
4478   # Determine script to apply to imported library files.
4479   sed_transform_lib_file=
4480   for module in $main_modules; do
4481     if test $module = config-h; then
4482       # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
4483       sed_transform_lib_file=$sed_transform_lib_file'
4484         s/^#ifdef[       ]*HAVE_CONFIG_H[        ]*$/#if 1/
4485       '
4486       break
4487     fi
4488   done
4489   sed_transform_main_lib_file="$sed_transform_lib_file"
4490   if test -n "$do_copyrights"; then
4491     if test -n "$lgpl"; then
4492       # Update license.
4493       case "$lgpl" in
4494         yes | 3)
4495           sed_transform_main_lib_file=$sed_transform_main_lib_file'
4496             s/GNU General/GNU Lesser General/g
4497             s/General Public License/Lesser General Public License/g
4498             s/Lesser Lesser General Public License/Lesser General Public License/g
4499           '
4500           ;;
4501         2)
4502           sed_transform_main_lib_file=$sed_transform_main_lib_file'
4503             s/GNU General/GNU Lesser General/g
4504             s/General Public License/Lesser General Public License/g
4505             s/Lesser Lesser General Public License/Lesser General Public License/g
4506
4507             s/version [23]\([ ,]\)/version 2.1\1/g
4508           '
4509           ;;
4510         *) func_fatal_error "invalid value lgpl=$lgpl" ;;
4511       esac
4512     else
4513       # Update license.
4514       sed_transform_main_lib_file=$sed_transform_main_lib_file'
4515         s/GNU Lesser General/GNU General/g
4516         s/Lesser General Public License/General Public License/g
4517
4518         s/GNU Library General/GNU General/g
4519         s/Library General Public License/General Public License/g
4520
4521         s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4522       '
4523     fi
4524   fi
4525
4526   # Determine script to apply to auxiliary files that go into $auxdir/.
4527   sed_transform_build_aux_file=
4528   if test -n "$do_copyrights"; then
4529     # Update license.
4530     sed_transform_build_aux_file=$sed_transform_build_aux_file'
4531       s/GNU Lesser General/GNU General/g
4532       s/Lesser General Public License/General Public License/g
4533
4534       s/GNU Library General/GNU General/g
4535       s/Library General Public License/General Public License/g
4536
4537       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4538     '
4539   fi
4540
4541   # Determine script to apply to library files that go into $testsbase/.
4542   sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
4543   if test -n "$do_copyrights"; then
4544     # Update license.
4545     sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
4546       s/GNU Lesser General/GNU General/g
4547       s/Lesser General Public License/General Public License/g
4548
4549       s/GNU Library General/GNU General/g
4550       s/Library General Public License/General Public License/g
4551
4552       s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
4553     '
4554   fi
4555
4556   # Determine the final file lists.
4557   func_modules_to_filelist_separately
4558
4559   test -n "$files" \
4560     || func_fatal_error "refusing to do nothing"
4561
4562   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
4563   new_files="$files m4/gnulib-tool.m4"
4564   old_files="$cached_files"
4565   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
4566     func_append old_files " m4/gnulib-tool.m4"
4567   fi
4568
4569   rewritten='%REWRITTEN%'
4570   sed_rewrite_old_files="\
4571     s,^build-aux/,$rewritten$auxdir/,
4572     s,^doc/,$rewritten$cached_docbase/,
4573     s,^lib/,$rewritten$cached_sourcebase/,
4574     s,^m4/,$rewritten$cached_m4base/,
4575     s,^tests/,$rewritten$cached_testsbase/,
4576     s,^tests=lib/,$rewritten$cached_testsbase/,
4577     s,^top/,$rewritten,
4578     s,^$rewritten,,"
4579   sed_rewrite_new_files="\
4580     s,^build-aux/,$rewritten$auxdir/,
4581     s,^doc/,$rewritten$docbase/,
4582     s,^lib/,$rewritten$sourcebase/,
4583     s,^m4/,$rewritten$m4base/,
4584     s,^tests/,$rewritten$testsbase/,
4585     s,^tests=lib/,$rewritten$testsbase/,
4586     s,^top/,$rewritten,
4587     s,^$rewritten,,"
4588
4589   # Create directories.
4590   { echo "$sourcebase"
4591     echo "$m4base"
4592     if test -n "$pobase"; then
4593       echo "$pobase"
4594     fi
4595     docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
4596     if test -n "$docfiles"; then
4597       echo "$docbase"
4598     fi
4599     if test -n "$inctests"; then
4600       echo "$testsbase"
4601     fi
4602     echo "$auxdir"
4603     for f in $files; do echo $f; done \
4604       | sed -e "$sed_rewrite_new_files" \
4605       | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
4606       | LC_ALL=C sort -u
4607   } > "$tmp"/dirs
4608   { # Rearrange file descriptors. Needed because "while ... done < ..."
4609     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4610     exec 5<&0 < "$tmp"/dirs
4611     while read d; do
4612       if test ! -d "$destdir/$d"; then
4613         if $doit; then
4614           echo "Creating directory $destdir/$d"
4615           mkdir -p "$destdir/$d" || func_fatal_error "failed"
4616         else
4617           echo "Create directory $destdir/$d"
4618         fi
4619       fi
4620     done
4621     exec 0<&5 5<&-
4622   }
4623
4624   # Copy files or make symbolic links. Remove obsolete files.
4625   added_files=''
4626   removed_files=''
4627   delimiter='   '
4628   # Construct a table with 2 columns: rewritten-file-name original-file-name,
4629   # representing the files according to the last gnulib-tool invocation.
4630   for f in $old_files; do echo $f; done \
4631     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
4632     | LC_ALL=C sort \
4633     > "$tmp"/old-files
4634   # Construct a table with 2 columns: rewritten-file-name original-file-name,
4635   # representing the files after this gnulib-tool invocation.
4636   for f in $new_files; do echo $f; done \
4637     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
4638     | LC_ALL=C sort \
4639     > "$tmp"/new-files
4640   # First the files that are in old-files, but not in new-files:
4641   sed_take_first_column='s,'"$delimiter"'.*,,'
4642   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
4643     # Remove the file. Do nothing if the user already removed it.
4644     if test -f "$destdir/$g" || test -h "$destdir/$g"; then
4645       if $doit; then
4646         echo "Removing file $g (backup in ${g}~)"
4647         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
4648       else
4649         echo "Remove file $g (backup in ${g}~)"
4650       fi
4651       func_append removed_files "$g$nl"
4652     fi
4653   done
4654   # func_add_or_update handles a file that ought to be present afterwards.
4655   # Uses parameters
4656   # - f             the original file name
4657   # - g             the rewritten file name
4658   # - already_present  nonempty if the file should already exist, empty
4659   #                    otherwise
4660   func_add_or_update ()
4661   {
4662     of="$f"
4663     case "$f" in
4664       tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
4665     esac
4666     func_dest_tmpfilename "$g"
4667     func_lookup_file "$f"
4668     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
4669     if test -n "$sed_transform_main_lib_file"; then
4670       case "$of" in
4671         lib/*)
4672           sed -e "$sed_transform_main_lib_file" \
4673             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4674           ;;
4675       esac
4676     fi
4677     if test -n "$sed_transform_build_aux_file"; then
4678       case "$of" in
4679         build-aux/*)
4680           sed -e "$sed_transform_build_aux_file" \
4681             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4682           ;;
4683       esac
4684     fi
4685     if test -n "$sed_transform_testsrelated_lib_file"; then
4686       case "$of" in
4687         tests=lib/*)
4688           sed -e "$sed_transform_testsrelated_lib_file" \
4689             < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
4690           ;;
4691       esac
4692     fi
4693     if test -f "$destdir/$g"; then
4694       # The file already exists.
4695       func_update_file
4696     else
4697       # Install the file.
4698       # Don't protest if the file should be there but isn't: it happens
4699       # frequently that developers don't put autogenerated files under version control.
4700       func_add_file
4701       func_append added_files "$g$nl"
4702     fi
4703     rm -f "$tmpfile"
4704   }
4705   # Then the files that are in new-files, but not in old-files:
4706   sed_take_last_column='s,^.*'"$delimiter"',,'
4707   already_present=
4708   LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
4709     | sed -e "$sed_take_last_column" \
4710     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
4711   { # Rearrange file descriptors. Needed because "while ... done < ..."
4712     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4713     exec 5<&0 < "$tmp"/added-files
4714     while read g f; do
4715       func_add_or_update
4716     done
4717     exec 0<&5 5<&-
4718   }
4719   # Then the files that are in new-files and in old-files:
4720   already_present=true
4721   LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
4722     | sed -e "$sed_take_last_column" \
4723     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
4724   { # Rearrange file descriptors. Needed because "while ... done < ..."
4725     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
4726     exec 5<&0 < "$tmp"/kept-files
4727     while read g f; do
4728       func_add_or_update
4729     done
4730     exec 0<&5 5<&-
4731   }
4732
4733   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
4734   actioncmd="gnulib-tool --import"
4735   func_append actioncmd " --dir=$destdir"
4736   if test -n "$local_gnulib_dir"; then
4737     func_append actioncmd " --local-dir=$local_gnulib_dir"
4738   fi
4739   func_append actioncmd " --lib=$libname"
4740   func_append actioncmd " --source-base=$sourcebase"
4741   func_append actioncmd " --m4-base=$m4base"
4742   if test -n "$pobase"; then
4743     func_append actioncmd " --po-base=$pobase"
4744   fi
4745   func_append actioncmd " --doc-base=$docbase"
4746   func_append actioncmd " --tests-base=$testsbase"
4747   func_append actioncmd " --aux-dir=$auxdir"
4748   if test -n "$inctests"; then
4749     func_append actioncmd " --with-tests"
4750   fi
4751   if test -n "$incobsolete"; then
4752     func_append actioncmd " --with-obsolete"
4753   fi
4754   if test -n "$inc_cxx_tests"; then
4755     func_append actioncmd " --with-c++-tests"
4756   fi
4757   if test -n "$inc_longrunning_tests"; then
4758     func_append actioncmd " --with-longrunning-tests"
4759   fi
4760   if test -n "$inc_privileged_tests"; then
4761     func_append actioncmd " --with-privileged-tests"
4762   fi
4763   if test -n "$inc_unportable_tests"; then
4764     func_append actioncmd " --with-unportable-tests"
4765   fi
4766   if test -n "$inc_all_tests"; then
4767     func_append actioncmd " --with-all-tests"
4768   fi
4769   for module in $avoidlist; do
4770     func_append actioncmd " --avoid=$module"
4771   done
4772   if test -n "$lgpl"; then
4773     if test "$lgpl" = yes; then
4774       func_append actioncmd " --lgpl"
4775     else
4776       func_append actioncmd " --lgpl=$lgpl"
4777     fi
4778   fi
4779   if test -n "$makefile_name"; then
4780     func_append actioncmd " --makefile-name=$makefile_name"
4781   fi
4782   if test "$cond_dependencies" = true; then
4783     func_append actioncmd " --conditional-dependencies"
4784   else
4785     func_append actioncmd " --no-conditional-dependencies"
4786   fi
4787   if test "$libtool" = true; then
4788     func_append actioncmd " --libtool"
4789   else
4790     func_append actioncmd " --no-libtool"
4791   fi
4792   func_append actioncmd " --macro-prefix=$macro_prefix"
4793   if test -n "$po_domain"; then
4794     func_append actioncmd " --po-domain=$po_domain"
4795   fi
4796   if test -n "$witness_c_macro"; then
4797     func_append actioncmd " --witness-c-macro=$witness_c_macro"
4798   fi
4799   if test -n "$vc_files"; then
4800     if test "$vc_files" = true; then
4801       func_append actioncmd " --vc-files"
4802     else
4803       func_append actioncmd " --no-vc-files"
4804     fi
4805   fi
4806   func_append actioncmd " `echo $specified_modules`"
4807
4808   # Determine include_guard_prefix.
4809   func_compute_include_guard_prefix
4810
4811   # Default the makefile name to Makefile.am.
4812   if test -n "$makefile_name"; then
4813     makefile_am=$makefile_name
4814   else
4815     makefile_am=Makefile.am
4816   fi
4817
4818   # Create normal Makefile.ams.
4819   for_test=false
4820
4821   # Setup list of Makefile.am edits that are to be performed afterwards.
4822   # Some of these edits apply to files that we will generate; others are
4823   # under the responsibility of the developer.
4824   makefile_am_edits=0
4825   # func_note_Makefile_am_edit dir var value
4826   # remembers that ${dir}Makefile.am needs to be edited to that ${var} mentions
4827   # ${value}.
4828   func_note_Makefile_am_edit ()
4829   {
4830     makefile_am_edits=`expr $makefile_am_edits + 1`
4831     eval makefile_am_edit${makefile_am_edits}_dir=\"\$1\"
4832     eval makefile_am_edit${makefile_am_edits}_var=\"\$2\"
4833     eval makefile_am_edit${makefile_am_edits}_val=\"\$3\"
4834   }
4835   if test "$makefile_am" = Makefile.am; then
4836     sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
4837     sourcebase_base=`basename "$sourcebase"`
4838     func_note_Makefile_am_edit "$sourcebase_dir" SUBDIRS "$sourcebase_base"
4839   fi
4840   if test -n "$pobase"; then
4841     pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
4842     pobase_base=`basename "$pobase"`
4843     func_note_Makefile_am_edit "$pobase_dir" SUBDIRS "$pobase_base"
4844   fi
4845   if test -n "$inctests"; then
4846     if test "$makefile_am" = Makefile.am; then
4847       testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
4848       testsbase_base=`basename "$testsbase"`
4849       func_note_Makefile_am_edit "$testsbase_dir" SUBDIRS "$testsbase_base"
4850     fi
4851   fi
4852   func_note_Makefile_am_edit "" ACLOCAL_AMFLAGS "-I ${m4base}"
4853   {
4854     # Find the first parent directory of $m4base that contains or will contain
4855     # a Makefile.am.
4856     sed_last='s,^.*/\([^/][^/]*\)//*$,\1/,
4857 s,//*$,/,'
4858     sed_butlast='s,[^/][^/]*//*$,,'
4859     dir1="${m4base}/"; dir2=""
4860     while test -n "$dir1" \
4861           && ! { test -f "${destdir}/${dir1}Makefile.am" \
4862                  || test "${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
4863                  || test "./${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
4864                  || { test -n "$inctests" \
4865                       && { test "${dir1}Makefile.am" = "$testsbase/$makefile_am" \
4866                            || test "./${dir1}Makefile.am" = "$testsbase/$makefile_am"; }; }; }; do
4867       dir2=`echo "$dir1" | sed -e "$sed_last"`"$dir2"
4868       dir1=`echo "$dir1" | sed -e "$sed_butlast"`
4869     done
4870     func_note_Makefile_am_edit "$dir1" EXTRA_DIST "${dir2}gnulib-cache.m4"
4871   }
4872
4873   # Create library makefile.
4874   func_dest_tmpfilename $sourcebase/$makefile_am
4875   destfile="$sourcebase/$makefile_am"
4876   modules="$main_modules"
4877   func_emit_lib_Makefile_am > "$tmpfile"
4878   if test -f "$destdir"/$sourcebase/$makefile_am; then
4879     if cmp "$destdir"/$sourcebase/$makefile_am "$tmpfile" > /dev/null; then
4880       rm -f "$tmpfile"
4881     else
4882       if $doit; then
4883         echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
4884         mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
4885         mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
4886       else
4887         echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
4888         rm -f "$tmpfile"
4889       fi
4890     fi
4891   else
4892     if $doit; then
4893       echo "Creating $sourcebase/$makefile_am"
4894       mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
4895     else
4896       echo "Create $sourcebase/$makefile_am"
4897       rm -f "$tmpfile"
4898     fi
4899     func_append added_files "$sourcebase/$makefile_am$nl"
4900   fi
4901
4902   # Create po/ directory.
4903   if test -n "$pobase"; then
4904     # Create po makefile and auxiliary files.
4905     for file in Makefile.in.in remove-potcdate.sin; do
4906       func_dest_tmpfilename $pobase/$file
4907       func_lookup_file build-aux/po/$file
4908       cat "$lookedup_file" > "$tmpfile"
4909       if test -f "$destdir"/$pobase/$file; then
4910         if cmp "$destdir"/$pobase/$file "$tmpfile" > /dev/null; then
4911           rm -f "$tmpfile"
4912         else
4913           if $doit; then
4914             echo "Updating $pobase/$file (backup in $pobase/$file~)"
4915             mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
4916             mv -f "$tmpfile" "$destdir"/$pobase/$file
4917           else
4918             echo "Update $pobase/$file (backup in $pobase/$file~)"
4919             rm -f "$tmpfile"
4920           fi
4921         fi
4922       else
4923         if $doit; then
4924           echo "Creating $pobase/$file"
4925           mv -f "$tmpfile" "$destdir"/$pobase/$file
4926         else
4927           echo "Create $pobase/$file"
4928           rm -f "$tmpfile"
4929         fi
4930         func_append added_files "$pobase/$file$nl"
4931       fi
4932     done
4933     # Create po makefile parameterization, part 1.
4934     func_dest_tmpfilename $pobase/Makevars
4935     func_emit_po_Makevars > "$tmpfile"
4936     if test -f "$destdir"/$pobase/Makevars; then
4937       if cmp "$destdir"/$pobase/Makevars "$tmpfile" > /dev/null; then
4938         rm -f "$tmpfile"
4939       else
4940         if $doit; then
4941           echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
4942           mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
4943           mv -f "$tmpfile" "$destdir"/$pobase/Makevars
4944         else
4945           echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
4946           rm -f "$tmpfile"
4947         fi
4948       fi
4949     else
4950       if $doit; then
4951         echo "Creating $pobase/Makevars"
4952         mv -f "$tmpfile" "$destdir"/$pobase/Makevars
4953       else
4954         echo "Create $pobase/Makevars"
4955         rm -f "$tmpfile"
4956       fi
4957       func_append added_files "$pobase/Makevars$nl"
4958     fi
4959     # Create po makefile parameterization, part 2.
4960     func_dest_tmpfilename $pobase/POTFILES.in
4961     func_emit_po_POTFILES_in > "$tmpfile"
4962     if test -f "$destdir"/$pobase/POTFILES.in; then
4963       if cmp "$destdir"/$pobase/POTFILES.in "$tmpfile" > /dev/null; then
4964         rm -f "$tmpfile"
4965       else
4966         if $doit; then
4967           echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
4968           mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
4969           mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
4970         else
4971           echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
4972           rm -f "$tmpfile"
4973         fi
4974       fi
4975     else
4976       if $doit; then
4977         echo "Creating $pobase/POTFILES.in"
4978         mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
4979       else
4980         echo "Create $pobase/POTFILES.in"
4981         rm -f "$tmpfile"
4982       fi
4983       func_append added_files "$pobase/POTFILES.in$nl"
4984     fi
4985     # Fetch PO files.
4986     TP_URL="http://translationproject.org/latest/"
4987     TP_RSYNC_URI="translationproject.org::tp/latest/"
4988     if $doit; then
4989       echo "Fetching gnulib PO files from $TP_URL"
4990       (cd "$destdir"/$pobase \
4991        && { # Prefer rsync over wget if it is available, since it consumes
4992             # less network bandwidth, due to compression.
4993             if type rsync 2>/dev/null | grep / > /dev/null; then
4994               rsync -Lrtz "${TP_RSYNC_URI}gnulib/" .
4995             else
4996               wget --quiet -r -l1 -nd -np -A.po "${TP_URL}gnulib"
4997             fi
4998           }
4999       )
5000     else
5001       echo "Fetch gnulib PO files from $TP_URL"
5002     fi
5003     # Create po/LINGUAS.
5004     if $doit; then
5005       func_dest_tmpfilename $pobase/LINGUAS
5006       (cd "$destdir"/$pobase \
5007        && { echo '# Set of available languages.'
5008             LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
5009           }
5010       ) > "$tmpfile"
5011       if test -f "$destdir"/$pobase/LINGUAS; then
5012         if cmp "$destdir"/$pobase/LINGUAS "$tmpfile" > /dev/null; then
5013           rm -f "$tmpfile"
5014         else
5015           echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
5016           mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
5017           mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
5018         fi
5019       else
5020         echo "Creating $pobase/LINGUAS"
5021         mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
5022         func_append added_files "$pobase/LINGUAS$nl"
5023       fi
5024     else
5025       if test -f "$destdir"/$pobase/LINGUAS; then
5026         echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
5027       else
5028         echo "Create $pobase/LINGUAS"
5029       fi
5030     fi
5031   fi
5032
5033   # Create m4/gnulib-cache.m4.
5034   func_dest_tmpfilename $m4base/gnulib-cache.m4
5035   (
5036     func_emit_copyright_notice
5037     echo "#"
5038     echo "# This file represents the specification of how gnulib-tool is used."
5039     echo "# It acts as a cache: It is written and read by gnulib-tool."
5040     echo "# In projects that use version control, this file is meant to be put under"
5041     echo "# version control, like the configure.ac and various Makefile.am files."
5042     echo
5043     echo
5044     echo "# Specification in the form of a command-line invocation:"
5045     echo "#   $actioncmd"
5046     echo
5047     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
5048     # Store the local_gnulib_dir relative to destdir.
5049     case "$local_gnulib_dir" in
5050       "" | /*)
5051         relative_local_gnulib_dir="$local_gnulib_dir" ;;
5052       * )
5053         case "$destdir" in
5054           /*) relative_local_gnulib_dir="$local_gnulib_dir" ;;
5055           *)
5056             # destdir, local_gnulib_dir are both relative.
5057             func_relativize "$destdir" "$local_gnulib_dir"
5058             relative_local_gnulib_dir="$reldir" ;;
5059         esac ;;
5060     esac
5061     echo "gl_LOCAL_DIR([$relative_local_gnulib_dir])"
5062     echo "gl_MODULES(["
5063     echo "$specified_modules" | sed -e 's/^/  /g'
5064     echo "])"
5065     test -z "$incobsolete" || echo "gl_WITH_OBSOLETE"
5066     test -z "$inc_cxx_tests" || echo "gl_WITH_CXX_TESTS"
5067     test -z "$inc_longrunning_tests" || echo "gl_WITH_LONGRUNNING_TESTS"
5068     test -z "$inc_privileged_tests" || echo "gl_WITH_PRIVILEGED_TESTS"
5069     test -z "$inc_unportable_tests" || echo "gl_WITH_UNPORTABLE_TESTS"
5070     test -z "$inc_all_tests" || echo "gl_WITH_ALL_TESTS"
5071     echo "gl_AVOID([$avoidlist])"
5072     echo "gl_SOURCE_BASE([$sourcebase])"
5073     echo "gl_M4_BASE([$m4base])"
5074     echo "gl_PO_BASE([$pobase])"
5075     echo "gl_DOC_BASE([$docbase])"
5076     echo "gl_TESTS_BASE([$testsbase])"
5077     test -z "$inctests" || echo "gl_WITH_TESTS"
5078     echo "gl_LIB([$libname])"
5079     if test -n "$lgpl"; then
5080       if test "$lgpl" = yes; then
5081         echo "gl_LGPL"
5082       else
5083         echo "gl_LGPL([$lgpl])"
5084       fi
5085     fi
5086     echo "gl_MAKEFILE_NAME([$makefile_name])"
5087     if test "$cond_dependencies" = true; then
5088       echo "gl_CONDITIONAL_DEPENDENCIES"
5089     fi
5090     if test "$libtool" = true; then
5091       echo "gl_LIBTOOL"
5092     fi
5093     echo "gl_MACRO_PREFIX([$macro_prefix])"
5094     echo "gl_PO_DOMAIN([$po_domain])"
5095     echo "gl_WITNESS_C_DOMAIN([$witness_c_macro])"
5096     if test -n "$vc_files"; then
5097       echo "gl_VC_FILES([$vc_files])"
5098     fi
5099   ) > "$tmpfile"
5100   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
5101     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile" > /dev/null; then
5102       rm -f "$tmpfile"
5103     else
5104       if $doit; then
5105         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
5106         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
5107         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
5108       else
5109         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
5110         if false; then
5111           cat "$tmpfile"
5112           echo
5113           echo "# gnulib-cache.m4 ends here"
5114         fi
5115         rm -f "$tmpfile"
5116       fi
5117     fi
5118   else
5119     if $doit; then
5120       echo "Creating $m4base/gnulib-cache.m4"
5121       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
5122     else
5123       echo "Create $m4base/gnulib-cache.m4"
5124       cat "$tmpfile"
5125       rm -f "$tmpfile"
5126     fi
5127   fi
5128
5129   # Create m4/gnulib-comp.m4.
5130   func_dest_tmpfilename $m4base/gnulib-comp.m4
5131   (
5132     echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
5133     func_emit_copyright_notice
5134     echo "#"
5135     echo "# This file represents the compiled summary of the specification in"
5136     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
5137     echo "# to be invoked from configure.ac."
5138     echo "# In projects that use version control, this file can be treated like"
5139     echo "# other built files."
5140     echo
5141     echo
5142     echo "# This macro should be invoked from $configure_ac, in the section"
5143     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
5144     echo "# any checks for libraries, header files, types and library functions."
5145     echo "AC_DEFUN([${macro_prefix}_EARLY],"
5146     echo "["
5147     echo "  m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
5148     echo "  m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
5149     echo "  m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
5150     echo "  m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
5151     echo "  AC_REQUIRE([gl_PROG_AR_RANLIB])"
5152     if test -n "$uses_subdirs"; then
5153       echo "  AC_REQUIRE([AM_PROG_CC_C_O])"
5154     fi
5155     for module in $final_modules; do
5156       func_verify_module
5157       if test -n "$module"; then
5158         echo "# Code from module $module:"
5159         func_get_autoconf_early_snippet "$module"
5160       fi
5161     done \
5162       | sed -e '/^$/d;' -e 's/^/  /'
5163     echo "])"
5164     echo
5165     echo "# This macro should be invoked from $configure_ac, in the section"
5166     echo "# \"Check for header files, types and library functions\"."
5167     echo "AC_DEFUN([${macro_prefix}_INIT],"
5168     echo "["
5169     if test "$libtool" = true; then
5170       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5171       echo "  gl_cond_libtool=true"
5172     else
5173       echo "  AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5174       echo "  gl_cond_libtool=false"
5175       echo "  gl_libdeps="
5176       echo "  gl_ltlibdeps="
5177     fi
5178     if test "$auxdir" != "build-aux"; then
5179       sed_replace_build_aux='
5180         :a
5181         /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5182           s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5183           ba
5184         }'
5185     else
5186       sed_replace_build_aux="$sed_noop"
5187     fi
5188     echo "  gl_m4_base='$m4base'"
5189     func_emit_initmacro_start $macro_prefix
5190     echo "  gl_source_base='$sourcebase'"
5191     if test -n "$witness_c_macro"; then
5192       echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$witness_c_macro])"
5193     fi
5194     func_emit_autoconf_snippets "$main_modules" func_verify_module true false true
5195     if test -n "$witness_c_macro"; then
5196       echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5197     fi
5198     echo "  # End of code from modules"
5199     func_emit_initmacro_end $macro_prefix
5200     echo "  gltests_libdeps="
5201     echo "  gltests_ltlibdeps="
5202     func_emit_initmacro_start ${macro_prefix}tests
5203     echo "  gl_source_base='$testsbase'"
5204     # Define a tests witness macro that depends on the package.
5205     # PACKAGE is defined by AM_INIT_AUTOMAKE, PACKAGE_TARNAME is defined by AC_INIT.
5206     # See <http://lists.gnu.org/archive/html/automake/2009-05/msg00145.html>.
5207     echo "changequote(,)dnl"
5208     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"
5209     echo "changequote([, ])dnl"
5210     echo "  AC_SUBST([${macro_prefix}tests_WITNESS])"
5211     echo "  gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
5212     echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
5213     func_emit_autoconf_snippets "$testsrelated_modules" func_verify_module true true true
5214     echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5215     func_emit_initmacro_end ${macro_prefix}tests
5216     # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5217     # created using libtool, because libtool already handles the dependencies.
5218     if test "$libtool" != true; then
5219       libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5220       echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5221       echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5222       echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5223       echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5224     fi
5225     if $use_libtests; then
5226       echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
5227       echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
5228     fi
5229     echo "])"
5230     func_emit_initmacro_done $macro_prefix $sourcebase
5231     func_emit_initmacro_done ${macro_prefix}tests $testsbase
5232     echo
5233     echo "# This macro records the list of files which have been installed by"
5234     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
5235     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
5236     echo "$files" | sed -e 's,^,  ,'
5237     echo "])"
5238   ) > "$tmpfile"
5239   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
5240     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile" > /dev/null; then
5241       rm -f "$tmpfile"
5242     else
5243       if $doit; then
5244         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
5245         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
5246         mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
5247       else
5248         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
5249         if false; then
5250           cat "$tmpfile"
5251           echo
5252           echo "# gnulib-comp.m4 ends here"
5253         fi
5254         rm -f "$tmpfile"
5255       fi
5256     fi
5257   else
5258     if $doit; then
5259       echo "Creating $m4base/gnulib-comp.m4"
5260       mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
5261     else
5262       echo "Create $m4base/gnulib-comp.m4"
5263       cat "$tmpfile"
5264       rm -f "$tmpfile"
5265     fi
5266   fi
5267
5268   if test -n "$inctests"; then
5269     # Create tests makefile.
5270     func_dest_tmpfilename $testsbase/$makefile_am
5271     destfile="$testsbase/$makefile_am"
5272     modules="$testsrelated_modules"
5273     func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$tmpfile"
5274     if test -f "$destdir"/$testsbase/$makefile_am; then
5275       if cmp "$destdir"/$testsbase/$makefile_am "$tmpfile" > /dev/null; then
5276         rm -f "$tmpfile"
5277       else
5278         if $doit; then
5279           echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
5280           mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
5281           mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
5282         else
5283           echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
5284           rm -f "$tmpfile"
5285         fi
5286       fi
5287     else
5288       if $doit; then
5289         echo "Creating $testsbase/$makefile_am"
5290         mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
5291       else
5292         echo "Create $testsbase/$makefile_am"
5293         rm -f "$tmpfile"
5294       fi
5295     func_append added_files "$testsbase/$makefile_am$nl"
5296     fi
5297   fi
5298
5299   if test "$vc_files" != false; then
5300     # Update the .cvsignore and .gitignore files.
5301     { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
5302       echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
5303       # Treat gnulib-comp.m4 like an added file, even if it already existed.
5304       echo "$m4base/|A|gnulib-comp.m4"
5305     } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
5306     { # Rearrange file descriptors. Needed because "while ... done < ..."
5307       # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5308       exec 5<&0 < "$tmp"/fileset-changes
5309       func_update_ignorelist ()
5310       {
5311         ignore="$1"
5312         if test "$ignore" = .gitignore; then
5313           # In a .gitignore file, "foo" applies to the current directory and all
5314           # subdirectories, whereas "/foo" applies to the current directory only.
5315           anchor='/'
5316           escaped_anchor='\/'
5317           doubly_escaped_anchor='\\/'
5318         else
5319           anchor=''
5320           escaped_anchor=''
5321           doubly_escaped_anchor=''
5322         fi
5323         if test -f "$destdir/$dir$ignore"; then
5324           if test -n "$dir_added" || test -n "$dir_removed"; then
5325             sed -e "s|^$anchor||" < "$destdir/$dir$ignore" | LC_ALL=C sort > "$tmp"/ignore
5326             (echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
5327                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-added
5328              echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
5329                | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-removed
5330             )
5331             if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
5332               if $doit; then
5333                 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
5334                 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
5335                 { sed -e 's,/,\\/,g' -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed
5336                   if test -n "$anchor"; then sed -e 's,/,\\/,g' -e "s,^,/^${doubly_escaped_anchor}," -e 's,$,$/d,' < "$tmp"/ignore-removed; fi
5337                 } > "$tmp"/sed-ignore-removed
5338                 { cat "$destdir/$dir$ignore"~
5339                   sed -e "s|^|$anchor|" < "$tmp"/ignore-added
5340                 } | sed -f "$tmp"/sed-ignore-removed \
5341                   > "$destdir/$dir$ignore"
5342               else
5343                 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
5344               fi
5345             fi
5346           fi
5347         else
5348           if test -n "$dir_added"; then
5349             if $doit; then
5350               echo "Creating $destdir/$dir$ignore"
5351               {
5352                 if test "$ignore" = .cvsignore; then
5353                   echo ".deps"
5354                   # Automake generates Makefile rules that create .dirstamp files.
5355                   echo ".dirstamp"
5356                 fi
5357                 echo "$dir_added" | sed -e '/^$/d' -e "s|^|$anchor|" | LC_ALL=C sort -u
5358               } > "$destdir/$dir$ignore"
5359             else
5360               echo "Create $destdir/$dir$ignore"
5361             fi
5362           fi
5363         fi
5364       }
5365       func_done_dir ()
5366       {
5367         dir="$1"
5368         dir_added="$2"
5369         dir_removed="$3"
5370         if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
5371           func_update_ignorelist .cvsignore
5372         fi
5373         if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
5374           func_update_ignorelist .gitignore
5375         fi
5376       }
5377       last_dir=
5378       last_dir_added=
5379       last_dir_removed=
5380       while read line; do
5381         # Why not ''read next_dir op file'' ? Because the dir column can be empty.
5382         next_dir=`echo "$line" | sed -e 's,|.*,,'`
5383         op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
5384         file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
5385         if test "$next_dir" != "$last_dir"; then
5386           func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
5387           last_dir="$next_dir"
5388           last_dir_added=
5389           last_dir_removed=
5390         fi
5391         case $op in
5392           A) func_append last_dir_added "$file$nl";;
5393           R) func_append last_dir_removed "$file$nl";;
5394         esac
5395       done
5396       func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
5397       exec 0<&5 5<&-
5398     }
5399   fi
5400
5401   echo "Finished."
5402   echo
5403   echo "You may need to add #include directives for the following .h files."
5404   # Intersect $specified_modules and $main_modules
5405   # (since $specified_modules is not necessarily of subset of $main_modules
5406   # - some may have been skipped through --avoid, and since the elements of
5407   # $main_modules but not in $specified_modules can go away without explicit
5408   # notice - through changes in the module dependencies).
5409   echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
5410   echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
5411   # First the #include <...> directives without #ifs, sorted for convenience,
5412   # then the #include "..." directives without #ifs, sorted for convenience,
5413   # then the #include directives that are surrounded by #ifs. Not sorted.
5414   for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
5415     include_directive=`func_get_include_directive "$module"`
5416     case "$nl$include_directive" in
5417       *"$nl#if"*)
5418         echo "$include_directive" 1>&5
5419         ;;
5420       *)
5421         echo "$include_directive" | grep -v 'include "' 1>&6
5422         echo "$include_directive" | grep 'include "' 1>&7
5423         ;;
5424     esac
5425   done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
5426   (
5427    LC_ALL=C sort -u "$tmp"/include-angles
5428    LC_ALL=C sort -u "$tmp"/include-quotes
5429    cat "$tmp"/include-if
5430   ) | sed -e '/^$/d' -e 's/^/  /'
5431   rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
5432
5433   for module in $main_modules; do
5434     func_get_link_directive "$module"
5435   done \
5436     | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/  /' > "$tmp"/link
5437   if test `wc -l < "$tmp"/link` != 0; then
5438     echo
5439     echo "You may need to use the following Makefile variables when linking."
5440     echo "Use them in <program>_LDADD when linking a program, or"
5441     echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
5442     cat "$tmp"/link
5443   fi
5444   rm -f "$tmp"/link
5445
5446   echo
5447   echo "Don't forget to"
5448   if test "$makefile_am" = Makefile.am; then
5449     echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
5450   else
5451     echo "  - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
5452   fi
5453   if test -n "$pobase"; then
5454     echo "  - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
5455   fi
5456   if test -n "$inctests"; then
5457     if test "$makefile_am" = Makefile.am; then
5458       echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
5459     else
5460       echo "  - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
5461     fi
5462   fi
5463   edit=0
5464   while test $edit != $makefile_am_edits; do
5465     edit=`expr $edit + 1`
5466     eval dir=\"\$makefile_am_edit${edit}_dir\"
5467     eval var=\"\$makefile_am_edit${edit}_var\"
5468     eval val=\"\$makefile_am_edit${edit}_val\"
5469     if test -n "$var"; then
5470       echo "  - mention \"${val}\" in ${var} in ${dir}Makefile.am,"
5471     fi
5472   done
5473   if grep '^ *AC_PROG_CC_STDC' "$configure_ac" > /dev/null; then
5474     position_early_after=AC_PROG_CC_STDC
5475   else
5476     if grep '^ *AC_PROG_CC_C99' "$configure_ac" > /dev/null; then
5477       position_early_after=AC_PROG_CC_C99
5478     else
5479       position_early_after=AC_PROG_CC
5480     fi
5481   fi
5482   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after $position_early_after,"
5483   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
5484 }
5485
5486 # func_create_testdir testdir modules
5487 # Input:
5488 # - local_gnulib_dir  from --local-dir
5489 # - modcache        true or false, from --cache-modules/--no-cache-modules
5490 # - auxdir          directory relative to destdir where to place build aux files
5491 # - inctests        true if tests should be included, blank otherwise
5492 # - incobsolete     true if obsolete modules among dependencies should be
5493 #                   included, blank otherwise
5494 # - excl_cxx_tests   true if C++ interoperability tests should be excluded,
5495 #                    blank otherwise
5496 # - excl_longrunning_tests  true if long-runnings tests should be excluded,
5497 #                           blank otherwise
5498 # - excl_privileged_tests  true if tests that require root privileges should be
5499 #                          excluded, blank otherwise
5500 # - excl_unportable_tests  true if tests that fail on some platforms should be
5501 #                          excluded, blank otherwise
5502 # - single_configure  true if a single configure file should be generated,
5503 #                     false for a separate configure file for the tests
5504 # - avoidlist       list of modules to avoid
5505 # - cond_dependencies  true if --conditional-dependencies was given, false if
5506 #                      --no-conditional-dependencies was given, blank otherwise
5507 # - libtool         true if --libtool was given, false if --no-libtool was
5508 #                   given, blank otherwise
5509 # - symbolic        true if files should be symlinked, copied otherwise
5510 # - lsymbolic       true if files from local_gnulib_dir should be symlinked,
5511 #                   copied otherwise
5512 func_create_testdir ()
5513 {
5514   testdir="$1"
5515   modules="$2"
5516   if test -z "$modules"; then
5517     # All modules together.
5518     # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
5519     # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
5520     # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
5521     modules=`func_all_modules`
5522     modules=`for m in $modules; do case $m in config-h | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
5523   fi
5524   specified_modules="$modules"
5525
5526   # Canonicalize the list of specified modules.
5527   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
5528
5529   # Unlike in func_import, here we want to include all kinds of tests for the
5530   # directly specified modules, but not for dependencies.
5531   inc_all_direct_tests=true
5532   inc_all_indirect_tests="$inc_all_tests"
5533
5534   # Check that the license of every module is consistent with the license of
5535   # its dependencies.
5536   saved_inctests="$inctests"
5537   # When computing transitive closures, don't consider $module to depend on
5538   # $module-tests. Need this becauses tests are implicitly GPL and may depend
5539   # on GPL modules - therefore we don't want a warning in this case.
5540   inctests=""
5541   for requested_module in $specified_modules; do
5542     requested_license=`func_get_license "$requested_module"`
5543     if test "$requested_license" != GPL; then
5544       # Here we use func_modules_transitive_closure, not just
5545       # func_get_dependencies, so that we also detect weird situations like
5546       # an LGPL module which depends on a GPLed build tool module which depends
5547       # on a GPL module.
5548       modules="$requested_module"
5549       func_modules_transitive_closure
5550       for module in $modules; do
5551         license=`func_get_license "$module"`
5552         case "$license" in
5553           'GPLed build tool') ;;
5554           'public domain' | 'unlimited' | 'unmodifiable license text') ;;
5555           *)
5556             case "$requested_license" in
5557               GPLv2+)
5558                 case "$license" in
5559                   GPLv2+ | LGPLv2+) ;;
5560                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5561                 esac
5562                 ;;
5563               LGPL)
5564                 case "$license" in
5565                   LGPL | LGPLv2+) ;;
5566                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5567                 esac
5568                 ;;
5569               LGPLv2+)
5570                 case "$license" in
5571                   LGPLv2+) ;;
5572                   *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
5573                 esac
5574                 ;;
5575             esac
5576             ;;
5577         esac
5578       done
5579     fi
5580   done
5581   inctests="$saved_inctests"
5582
5583   # Subdirectory names.
5584   sourcebase=gllib
5585   m4base=glm4
5586   pobase=
5587   docbase=gldoc
5588   testsbase=gltests
5589   macro_prefix=gl
5590   po_domain=
5591   witness_c_macro=
5592   vc_files=
5593
5594   # Determine final module list.
5595   modules="$specified_modules"
5596   func_modules_transitive_closure
5597   if test $verbose -ge 0; then
5598     func_show_module_list
5599   fi
5600   final_modules="$modules"
5601
5602   if $single_configure; then
5603     # Determine main module list and tests-related module list separately.
5604     func_modules_transitive_closure_separately
5605   fi
5606
5607   if $single_configure; then
5608     # Determine whether a $testsbase/libtests.a is needed.
5609     func_determine_use_libtests
5610   fi
5611
5612   # Add the dummy module if needed.
5613   if $single_configure; then
5614     func_modules_add_dummy_separately
5615   else
5616     func_modules_add_dummy
5617   fi
5618
5619   # Show banner notice of every module.
5620   if $single_configure; then
5621     modules="$main_modules"
5622     func_modules_notice
5623   else
5624     func_modules_notice
5625   fi
5626
5627   # Determine final file list.
5628   if $single_configure; then
5629     func_modules_to_filelist_separately
5630   else
5631     func_modules_to_filelist
5632     if test $verbose -ge 0; then
5633       echo "File list:"
5634       echo "$files" | sed -e 's/^/  /'
5635     fi
5636   fi
5637   # Add files for which the copy in gnulib is newer than the one that
5638   # "automake --add-missing --copy" would provide.
5639   files="$files build-aux/config.guess"
5640   files="$files build-aux/config.sub"
5641   files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
5642
5643   rewritten='%REWRITTEN%'
5644   sed_rewrite_files="\
5645     s,^build-aux/,$rewritten$auxdir/,
5646     s,^doc/,$rewritten$docbase/,
5647     s,^lib/,$rewritten$sourcebase/,
5648     s,^m4/,$rewritten$m4base/,
5649     s,^tests/,$rewritten$testsbase/,
5650     s,^tests=lib/,$rewritten$testsbase/,
5651     s,^top/,$rewritten,
5652     s,^$rewritten,,"
5653
5654   # Create directories.
5655   for f in $files; do echo $f; done \
5656     | sed -e "$sed_rewrite_files" \
5657     | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
5658     | LC_ALL=C sort -u \
5659     > "$tmp"/dirs
5660   { # Rearrange file descriptors. Needed because "while ... done < ..."
5661     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5662     exec 5<&0 < "$tmp"/dirs
5663     while read d; do
5664       mkdir -p "$testdir/$d"
5665     done
5666     exec 0<&5 5<&-
5667   }
5668
5669   # Copy files or make symbolic links.
5670   delimiter='   '
5671   for f in $files; do echo $f; done \
5672     | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
5673     | LC_ALL=C sort \
5674     > "$tmp"/files
5675   { # Rearrange file descriptors. Needed because "while ... done < ..."
5676     # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
5677     exec 5<&0 < "$tmp"/files
5678     while read g f; do
5679       case "$f" in
5680         tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
5681       esac
5682       func_lookup_file "$f"
5683       if test -n "$lookedup_tmp"; then
5684         cp -p "$lookedup_file" "$testdir/$g"
5685       else
5686         ln "$lookedup_file" "$testdir/$g" 2>/dev/null ||
5687         if { test -n "$symbolic" \
5688              || { test -n "$lsymbolic" \
5689                   && test "$lookedup_file" = "$local_gnulib_dir/$f"; }; }; then
5690           func_ln "$lookedup_file" "$testdir/$g"
5691         else
5692           cp -p "$lookedup_file" "$testdir/$g"
5693         fi
5694       fi
5695     done
5696     exec 0<&5 5<&-
5697   }
5698
5699   # Determine include_guard_prefix.
5700   func_compute_include_guard_prefix
5701
5702   # Create Makefile.ams that are for testing.
5703   for_test=true
5704
5705   # No special edits are needed.
5706   makefile_am_edits=0
5707
5708   # Create $sourcebase/Makefile.am.
5709   mkdir -p "$testdir/$sourcebase"
5710   destfile="$sourcebase/Makefile.am"
5711   if $single_configure; then
5712     modules="$main_modules"
5713   fi
5714   func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
5715   any_uses_subdirs="$uses_subdirs"
5716
5717   # Create $m4base/Makefile.am.
5718   mkdir -p "$testdir/$m4base"
5719   (echo "## Process this file with automake to produce Makefile.in."
5720    echo
5721    echo "EXTRA_DIST ="
5722    for f in $files; do
5723      case "$f" in
5724        m4/* )
5725          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
5726      esac
5727    done
5728   ) > "$testdir/$m4base/Makefile.am"
5729
5730   subdirs="$sourcebase $m4base"
5731   subdirs_with_configure_ac=""
5732
5733   if false && test -f "$testdir"/$m4base/gettext.m4; then
5734     # Avoid stupid error message from automake:
5735     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
5736     mkdir -p "$testdir/po"
5737     (echo "## Process this file with automake to produce Makefile.in."
5738     ) > "$testdir/po/Makefile.am"
5739     func_append subdirs " po"
5740   fi
5741
5742   if test -n "$inctests"; then
5743     test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
5744     if $single_configure; then
5745       # Create $testsbase/Makefile.am.
5746       destfile="$testsbase/Makefile.am"
5747       modules="$testsrelated_modules"
5748       func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$testdir/$testsbase/Makefile.am"
5749     else
5750       # Viewed from the $testsbase subdirectory, $auxdir is different.
5751       saved_auxdir="$auxdir"
5752       auxdir=`echo "$testsbase/" | sed -e 's%[^/][^/]*//*%../%g'`"$auxdir"
5753       # Create $testsbase/Makefile.am.
5754       use_libtests=false
5755       destfile="$testsbase/Makefile.am"
5756       func_emit_tests_Makefile_am "" > "$testdir/$testsbase/Makefile.am"
5757       any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
5758       # Create $testsbase/configure.ac.
5759       (echo "# Process this file with autoconf to produce a configure script."
5760        echo "AC_INIT([dummy], [0])"
5761        echo "AC_CONFIG_AUX_DIR([$auxdir])"
5762        echo "AM_INIT_AUTOMAKE"
5763        echo
5764        echo "AC_CONFIG_HEADERS([config.h])"
5765        echo
5766        echo "AC_PROG_CC"
5767        echo "AC_PROG_INSTALL"
5768        echo "AC_PROG_MAKE_SET"
5769        echo "gl_PROG_AR_RANLIB"
5770        echo
5771        if test -n "$uses_subdirs"; then
5772          echo "AM_PROG_CC_C_O"
5773          echo
5774        fi
5775        for module in $modules; do
5776          func_verify_module
5777          if test -n "$module"; then
5778            case $module in
5779              gnumakefile | maintainer-makefile)
5780                # These modules are meant to be used only in the top-level directory.
5781                ;;
5782              *)
5783                func_get_autoconf_early_snippet "$module"
5784                ;;
5785            esac
5786          fi
5787        done \
5788          | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
5789        if test "$libtool" = true; then
5790          echo "LT_INIT([win32-dll])"
5791          echo "LT_LANG([C++])"
5792          echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5793          echo "gl_cond_libtool=true"
5794        else
5795          echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5796          echo "gl_cond_libtool=false"
5797          echo "gl_libdeps="
5798          echo "gl_ltlibdeps="
5799        fi
5800        # Wrap the set of autoconf snippets into an autoconf macro that is then
5801        # invoked. This is needed because autoconf does not support AC_REQUIRE
5802        # at the top level:
5803        #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
5804        # but we want the AC_REQUIRE to have its normal meaning (provide one
5805        # expansion of the required macro before the current point, and only one
5806        # expansion total).
5807        echo "AC_DEFUN([gl_INIT], ["
5808        sed_replace_build_aux='
5809          :a
5810          /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5811            s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5812            ba
5813          }'
5814        echo "gl_m4_base='../$m4base'"
5815        func_emit_initmacro_start $macro_prefix
5816        # We don't have explicit ordering constraints between the various
5817        # autoconf snippets. It's cleanest to put those of the library before
5818        # those of the tests.
5819        echo "gl_source_base='../$sourcebase'"
5820        func_emit_autoconf_snippets "$modules" func_verify_nontests_module false false false
5821        echo "gl_source_base='.'"
5822        func_emit_autoconf_snippets "$modules" func_verify_tests_module false false false
5823        func_emit_initmacro_end $macro_prefix
5824        # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5825        # created using libtool, because libtool already handles the dependencies.
5826        if test "$libtool" != true; then
5827          libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5828          echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5829          echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5830          echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5831          echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5832        fi
5833        echo "])"
5834        func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
5835        echo
5836        echo "gl_INIT"
5837        echo
5838        # Usually $testsbase/config.h will be a superset of config.h. Verify this
5839        # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
5840        echo "AH_TOP([#include \"../config.h\"])"
5841        echo
5842        echo "AC_CONFIG_FILES([Makefile])"
5843        echo "AC_OUTPUT"
5844       ) > "$testdir/$testsbase/configure.ac"
5845       auxdir="$saved_auxdir"
5846       subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
5847     fi
5848     func_append subdirs " $testsbase"
5849   fi
5850
5851   # Create Makefile.am.
5852   (echo "## Process this file with automake to produce Makefile.in."
5853    echo
5854    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
5855    echo
5856    echo "SUBDIRS = $subdirs"
5857    echo
5858    echo "ACLOCAL_AMFLAGS = -I $m4base"
5859   ) > "$testdir/Makefile.am"
5860
5861   # Create configure.ac.
5862   (echo "# Process this file with autoconf to produce a configure script."
5863    echo "AC_INIT([dummy], [0])"
5864    if test "$auxdir" != "."; then
5865      echo "AC_CONFIG_AUX_DIR([$auxdir])"
5866    fi
5867    echo "AM_INIT_AUTOMAKE"
5868    echo
5869    echo "AC_CONFIG_HEADERS([config.h])"
5870    echo
5871    echo "AC_PROG_CC"
5872    echo "AC_PROG_INSTALL"
5873    echo "AC_PROG_MAKE_SET"
5874    echo
5875    echo "# For autobuild."
5876    echo "AC_CANONICAL_BUILD"
5877    echo "AC_CANONICAL_HOST"
5878    echo
5879    echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
5880    echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
5881    echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
5882    echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
5883    echo
5884    echo "gl_PROG_AR_RANLIB"
5885    echo
5886    if test -n "$any_uses_subdirs"; then
5887      echo "AM_PROG_CC_C_O"
5888      echo
5889    fi
5890    for module in $final_modules; do
5891      if $single_configure; then
5892        func_verify_module
5893      else
5894        func_verify_nontests_module
5895      fi
5896      if test -n "$module"; then
5897        func_get_autoconf_early_snippet "$module"
5898      fi
5899    done \
5900      | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
5901    if test "$libtool" = true; then
5902      echo "LT_INIT([win32-dll])"
5903      echo "LT_LANG([C++])"
5904      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
5905      echo "gl_cond_libtool=true"
5906    else
5907      echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
5908      echo "gl_cond_libtool=false"
5909      echo "gl_libdeps="
5910      echo "gl_ltlibdeps="
5911    fi
5912    # Wrap the set of autoconf snippets into an autoconf macro that is then
5913    # invoked. This is needed because autoconf does not support AC_REQUIRE
5914    # at the top level:
5915    #   error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
5916    # but we want the AC_REQUIRE to have its normal meaning (provide one
5917    # expansion of the required macro before the current point, and only one
5918    # expansion total).
5919    echo "AC_DEFUN([gl_INIT], ["
5920    if test "$auxdir" != "build-aux"; then
5921      sed_replace_build_aux='
5922        :a
5923        /AC_CONFIG_FILES(.*:build-aux\/.*)/{
5924          s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
5925          ba
5926        }'
5927    else
5928      sed_replace_build_aux="$sed_noop"
5929    fi
5930    echo "gl_m4_base='$m4base'"
5931    func_emit_initmacro_start $macro_prefix
5932    echo "gl_source_base='$sourcebase'"
5933    if $single_configure; then
5934      func_emit_autoconf_snippets "$main_modules" func_verify_module true false false
5935    else
5936      func_emit_autoconf_snippets "$modules" func_verify_nontests_module true false false
5937    fi
5938    func_emit_initmacro_end $macro_prefix
5939    if $single_configure; then
5940      echo "  gltests_libdeps="
5941      echo "  gltests_ltlibdeps="
5942      func_emit_initmacro_start ${macro_prefix}tests
5943      echo "  gl_source_base='$testsbase'"
5944      # Define a tests witness macro.
5945      echo "  ${macro_prefix}tests_WITNESS=IN_GNULIB_TESTS"
5946      echo "  AC_SUBST([${macro_prefix}tests_WITNESS])"
5947      echo "  gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
5948      echo "  m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
5949      func_emit_autoconf_snippets "$testsrelated_modules" func_verify_module true false false
5950      echo "  m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
5951      func_emit_initmacro_end ${macro_prefix}tests
5952    fi
5953    # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
5954    # created using libtool, because libtool already handles the dependencies.
5955    if test "$libtool" != true; then
5956      libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
5957      echo "  ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
5958      echo "  AC_SUBST([${libname_upper}_LIBDEPS])"
5959      echo "  ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
5960      echo "  AC_SUBST([${libname_upper}_LTLIBDEPS])"
5961    fi
5962    if $single_configure; then
5963      if $use_libtests; then
5964        echo "  LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
5965        echo "  AC_SUBST([LIBTESTS_LIBDEPS])"
5966      fi
5967    fi
5968    echo "])"
5969    func_emit_initmacro_done $macro_prefix $sourcebase
5970    if $single_configure; then
5971      func_emit_initmacro_done ${macro_prefix}tests $testsbase
5972    fi
5973    echo
5974    echo "gl_INIT"
5975    echo
5976    if test -n "$subdirs_with_configure_ac"; then
5977      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
5978    fi
5979    makefiles="Makefile"
5980    for d in $subdirs; do
5981      # For subdirs that have a configure.ac by their own, it's the subdir's
5982      # configure.ac which creates the subdir's Makefile.am, not this one.
5983      case " $subdirs_with_configure_ac " in
5984        *" $d "*) ;;
5985        *) func_append makefiles " $d/Makefile" ;;
5986      esac
5987    done
5988    echo "AC_CONFIG_FILES([$makefiles])"
5989    echo "AC_OUTPUT"
5990   ) > "$testdir/configure.ac"
5991
5992   # Create autogenerated files.
5993   (cd "$testdir"
5994    # Do not use "${AUTORECONF} --force --install", because it may invoke
5995    # autopoint, which brings in older versions of some of our .m4 files.
5996    if test -f $m4base/gettext.m4; then
5997      func_execute_command ${AUTOPOINT} --force || func_exit 1
5998      for f in $m4base/*.m4~; do
5999        if test -f $f; then
6000          mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
6001        fi
6002      done
6003    fi
6004    if test "$libtool" = true; then
6005      func_execute_command ${LIBTOOLIZE} --copy || func_exit 1
6006    fi
6007    func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
6008    if ! test -d build-aux; then
6009      func_execute_command mkdir build-aux || func_exit 1
6010    fi
6011    func_execute_command ${AUTOCONF} || func_exit 1
6012    func_execute_command ${AUTOHEADER} || func_exit 1
6013    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6014   ) || func_exit 1
6015   if test -n "$inctests" && ! $single_configure; then
6016     # Create autogenerated files.
6017     (cd "$testdir/$testsbase" || func_exit 1
6018      # Do not use "${AUTORECONF} --force --install", because it may invoke
6019      # autopoint, which brings in older versions of some of our .m4 files.
6020      if test -f ../$m4base/gettext.m4; then
6021        func_execute_command ${AUTOPOINT} --force || func_exit 1
6022        for f in ../$m4base/*.m4~; do
6023          if test -f $f; then
6024            mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
6025          fi
6026        done
6027      fi
6028      func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
6029      if ! test -d ../build-aux; then
6030        func_execute_command mkdir ../build-aux
6031      fi
6032      func_execute_command ${AUTOCONF} || func_exit 1
6033      func_execute_command ${AUTOHEADER} || func_exit 1
6034      func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6035     ) || func_exit 1
6036   fi
6037   # Need to run configure and make once, to create built files that are to be
6038   # distributed (such as parse-datetime.c).
6039   sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
6040   # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
6041   cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
6042                  | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
6043   cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
6044   # Extract the value of "BUILT_SOURCES += ...". Remove variable references
6045   # such $(FOO_H) because they don't refer to distributed files.
6046   built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$sourcebase/Makefile.am" \
6047                  | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
6048                  | sed -e "$sed_remove_make_variables"`
6049   distributed_built_sources=`for file in $built_sources; do
6050                                case "$cleaned_files" in
6051                                  *" "$file" "*) ;;
6052                                  *) echo $file ;;
6053                                esac;
6054                              done`
6055   tests_distributed_built_sources=
6056   if test -n "$inctests"; then
6057     # Likewise for built files in the $testsbase directory.
6058     tests_cleaned_files=`sed -e "$sed_remove_backslash_newline" < "$testdir/$testsbase/Makefile.am" \
6059                          | sed -n -e 's,^CLEANFILES[     ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[         ]*+=\([^#]*\).*$,\1,p'`
6060     tests_cleaned_files=`for file in $tests_cleaned_files; do echo " $file "; done`
6061     tests_built_sources=`sed -e "$sed_remove_backslash_newline" < "$testdir/$testsbase/Makefile.am" \
6062                          | sed -n -e 's,^BUILT_SOURCES[  ]*+=\([^#]*\).*$,\1,p' \
6063                          | sed -e "$sed_remove_make_variables"`
6064     tests_distributed_built_sources=`for file in $tests_built_sources; do
6065                                        case "$tests_cleaned_files" in
6066                                          *" "$file" "*) ;;
6067                                          *) echo $file ;;
6068                                        esac;
6069                                      done`
6070   fi
6071   if test -n "$distributed_built_sources" || test -n "$tests_distributed_built_sources"; then
6072     (cd "$testdir"
6073      ./configure || func_exit 1
6074        if test -n "$distributed_built_sources"; then
6075          cd "$sourcebase"
6076          echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
6077          $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6078                built_sources \
6079            || func_exit 1
6080          cd ..
6081        fi
6082        if test -n "$tests_distributed_built_sources"; then
6083          cd "$testsbase"
6084          echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
6085          $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6086                built_sources \
6087            || func_exit 1
6088          cd ..
6089        fi
6090      $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
6091            distclean \
6092        || func_exit 1
6093     ) || func_exit 1
6094   fi
6095 }
6096
6097 # func_create_megatestdir megatestdir allmodules
6098 # Input:
6099 # - local_gnulib_dir  from --local-dir
6100 # - modcache        true or false, from --cache-modules/--no-cache-modules
6101 # - auxdir          directory relative to destdir where to place build aux files
6102 func_create_megatestdir ()
6103 {
6104   megatestdir="$1"
6105   allmodules="$2"
6106   if test -z "$allmodules"; then
6107     allmodules=`func_all_modules`
6108   fi
6109
6110   megasubdirs=
6111   # First, all modules one by one.
6112   for onemodule in $allmodules; do
6113     func_create_testdir "$megatestdir/$onemodule" $onemodule
6114     func_append megasubdirs "$onemodule "
6115   done
6116   # Then, all modules all together.
6117   # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
6118   allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
6119   func_create_testdir "$megatestdir/ALL" "$allmodules"
6120   func_append megasubdirs "ALL"
6121
6122   # Create autobuild.
6123   cvsdate=`if test -f "$gnulib_dir/CVS/Entries"; then \
6124              vc_witness="$gnulib_dir/CVS/Entries"; \
6125            else \
6126              vc_witness="$gnulib_dir/.git/refs/heads/master"; \
6127            fi; \
6128            sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
6129              | sed -e 's,January,01,'   -e 's,Jan,01,' \
6130                    -e 's,February,02,'  -e 's,Feb,02,' \
6131                    -e 's,March,03,'     -e 's,Mar,03,' \
6132                    -e 's,April,04,'     -e 's,Apr,04,' \
6133                    -e 's,May,05,'                      \
6134                    -e 's,June,06,'      -e 's,Jun,06,' \
6135                    -e 's,July,07,'      -e 's,Jul,07,' \
6136                    -e 's,August,08,'    -e 's,Aug,08,' \
6137                    -e 's,September,09,' -e 's,Sep,09,' \
6138                    -e 's,October,10,'   -e 's,Oct,10,' \
6139                    -e 's,November,11,'  -e 's,Nov,11,' \
6140                    -e 's,December,12,'  -e 's,Dec,12,' \
6141                    -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
6142                    -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
6143   (echo '#!/bin/sh'
6144    echo "CVSDATE=$cvsdate"
6145    echo ": \${MAKE=make}"
6146    echo "test -d logs || mkdir logs"
6147    echo "for module in $megasubdirs; do"
6148    echo "  echo \"Working on module \$module...\""
6149    echo "  safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
6150    echo "  (echo \"To: gnulib@autobuild.josefsson.org\""
6151    echo "   echo"
6152    echo "   set -x"
6153    echo "   : autobuild project... \$module"
6154    echo "   : autobuild revision... cvs-\$CVSDATE-000000"
6155    echo "   : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
6156    echo "   : autobuild hostname... \`hostname\`"
6157    echo "   cd \$module && ./configure \$CONFIGURE_OPTIONS && \$MAKE && \$MAKE check && \$MAKE distclean"
6158    echo "   echo rc=\$?"
6159    echo "  ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
6160    echo "done"
6161   ) > "$megatestdir/do-autobuild"
6162   chmod a+x "$megatestdir/do-autobuild"
6163
6164   # Create Makefile.am.
6165   (echo "## Process this file with automake to produce Makefile.in."
6166    echo
6167    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
6168    echo
6169    echo "SUBDIRS = $megasubdirs"
6170    echo
6171    echo "EXTRA_DIST = do-autobuild"
6172   ) > "$megatestdir/Makefile.am"
6173
6174   # Create configure.ac.
6175   (echo "# Process this file with autoconf to produce a configure script."
6176    echo "AC_INIT([dummy], [0])"
6177    if test "$auxdir" != "."; then
6178      echo "AC_CONFIG_AUX_DIR([$auxdir])"
6179    fi
6180    echo "AM_INIT_AUTOMAKE"
6181    echo
6182    echo "AC_PROG_MAKE_SET"
6183    echo
6184    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
6185    echo "AC_CONFIG_FILES([Makefile])"
6186    echo "AC_OUTPUT"
6187   ) > "$megatestdir/configure.ac"
6188
6189   # Create autogenerated files.
6190   (cd "$megatestdir"
6191    # Do not use "${AUTORECONF} --install", because autoreconf operates
6192    # recursively, but the subdirectories are already finished, therefore
6193    # calling autoreconf here would only waste lots of CPU time.
6194    func_execute_command ${ACLOCAL} || func_exit 1
6195    func_execute_command mkdir build-aux
6196    func_execute_command ${AUTOCONF} || func_exit 1
6197    func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
6198   ) || func_exit 1
6199 }
6200
6201 case $mode in
6202   "" )
6203     func_fatal_error "no mode specified" ;;
6204
6205   list )
6206     func_all_modules
6207     ;;
6208
6209   find )
6210     # sed expression that converts a literal to a basic regular expression.
6211     # Needs to handle . [ \ * ^ $.
6212     sed_literal_to_basic_regex='s/\\/\\\\/g
6213 s/\[/\\[/g
6214 s/\^/\\^/g
6215 s/\([.*$]\)/[\1]/g'
6216     for filename
6217     do
6218       if test -f "$gnulib_dir/$filename" \
6219          || { test -n "$local_gnulib_dir" && test -f "$local_gnulib_dir/$filename"; }; then
6220         filename_anywhere_regex=`echo "$filename" | sed -e "$sed_literal_to_basic_regex"`
6221         filename_line_regex='^'"$filename_anywhere_regex"'$'
6222         module_candidates=`
6223           {
6224             (cd "$gnulib_dir" && find modules -type f -print | xargs -n 100 grep -l "$filename_line_regex" /dev/null | sed -e 's,^modules/,,')
6225             if test -n "$local_gnulib_dir" && test -d "$local_gnulib_dir/modules"; then
6226               (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$,,')
6227             fi
6228           } \
6229             | func_sanitize_modulelist \
6230             | LC_ALL=C sort -u
6231           `
6232         for module in $module_candidates; do
6233           if func_get_filelist $module | grep "$filename_line_regex" > /dev/null; then
6234             echo $module
6235           fi
6236         done
6237       else
6238         func_warning "file $filename does not exist"
6239       fi
6240     done
6241     ;;
6242
6243   import | add-import | remove-import | update )
6244
6245     # Where to import.
6246     if test -z "$destdir"; then
6247       destdir=.
6248     fi
6249     test -d "$destdir" \
6250       || func_fatal_error "destination directory does not exist: $destdir"
6251
6252     # Prefer configure.ac to configure.in.
6253     if test -f "$destdir"/configure.ac; then
6254       configure_ac="$destdir/configure.ac"
6255     else
6256       if test -f "$destdir"/configure.in; then
6257         configure_ac="$destdir/configure.in"
6258       else
6259         func_fatal_error "cannot find $destdir/configure.ac - make sure you run gnulib-tool from within your package's directory"
6260       fi
6261     fi
6262
6263     # Analyze configure.ac.
6264     guessed_auxdir="."
6265     guessed_libtool=false
6266     my_sed_traces='
6267       s,#.*$,,
6268       s,^dnl .*$,,
6269       s, dnl .*$,,
6270       /AC_CONFIG_AUX_DIR/ {
6271         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_auxdir="\1",p
6272       }
6273       /A[CM]_PROG_LIBTOOL/ {
6274         s,^.*$,guessed_libtool=true,p
6275       }'
6276     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
6277
6278     if test -z "$auxdir"; then
6279       auxdir="$guessed_auxdir"
6280     fi
6281
6282     # Determine where to apply func_import.
6283     if test "$mode" = import; then
6284       # Apply func_import to a particular gnulib directory.
6285       # The command line contains the complete specification; don't look at
6286       # the contents of gnulib-cache.m4.
6287       test -n "$supplied_libname" || supplied_libname=true
6288       test -n "$sourcebase" || sourcebase="lib"
6289       test -n "$m4base" || m4base="m4"
6290       test -n "$docbase" || docbase="doc"
6291       test -n "$testsbase" || testsbase="tests"
6292       test -n "$macro_prefix" || macro_prefix="gl"
6293       func_import "$*"
6294     else
6295       if test -n "$m4base"; then
6296         # Apply func_import to a particular gnulib directory.
6297         # Any number of additional modules can be given.
6298         if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
6299           # First use of gnulib in the given m4base.
6300           test -n "$supplied_libname" || supplied_libname=true
6301           test -n "$sourcebase" || sourcebase="lib"
6302           test -n "$docbase" || docbase="doc"
6303           test -n "$testsbase" || testsbase="tests"
6304           test -n "$macro_prefix" || macro_prefix="gl"
6305         fi
6306         func_import "$*"
6307       else
6308         # Apply func_import to all gnulib directories.
6309         # To get this list of directories, look at Makefile.am. (Not at
6310         # configure, because it may be omitted from version control. Also,
6311         # don't run "find $destdir -name gnulib-cache.m4", as it might be
6312         # too expensive.)
6313         m4dirs=
6314         m4dirs_count=0
6315         if test -f "$destdir"/Makefile.am; then
6316           aclocal_amflags=`sed -n -e 's/^ACLOCAL_AMFLAGS[        ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
6317           m4dir_is_next=
6318           for arg in $aclocal_amflags; do
6319             if test -n "$m4dir_is_next"; then
6320               # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
6321               case "$arg" in
6322                 /*) ;;
6323                 *)
6324                   if test -f "$destdir/$arg"/gnulib-cache.m4; then
6325                     func_append m4dirs " $arg"
6326                     m4dirs_count=`expr $m4dirs_count + 1`
6327                   fi
6328                   ;;
6329               esac
6330               m4dir_is_next=
6331             else
6332               if test "X$arg" = "X-I"; then
6333                 m4dir_is_next=yes
6334               else
6335                 m4dir_is_next=
6336               fi
6337             fi
6338           done
6339         else
6340           # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
6341           if test -f "$destdir"/aclocal.m4; then
6342             sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
6343             sedexpr2='s,^[^/]*$,.,'
6344             sedexpr3='s,/[^/]*$,,'
6345             m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
6346             m4dirs=`for arg in $m4dirs; do if test -f "$destdir/$arg"/gnulib-cache.m4; then echo $arg; fi; done`
6347             m4dirs_count=`for arg in $m4dirs; do echo "$arg"; done | wc -l`
6348           fi
6349         fi
6350         if test $m4dirs_count = 0; then
6351           # First use of gnulib in a package.
6352           # Any number of additional modules can be given.
6353           test -n "$supplied_libname" || supplied_libname=true
6354           test -n "$sourcebase" || sourcebase="lib"
6355           m4base="m4"
6356           test -n "$docbase" || docbase="doc"
6357           test -n "$testsbase" || testsbase="tests"
6358           test -n "$macro_prefix" || macro_prefix="gl"
6359           func_import "$*"
6360         else
6361           if test $m4dirs_count = 1; then
6362             # There's only one use of gnulib here. Assume the user means it.
6363             # Any number of additional modules can be given.
6364             for m4base in $m4dirs; do
6365               func_import "$*"
6366             done
6367           else
6368             # Ambiguous - guess what the user meant.
6369             if test $# = 0; then
6370               # No further arguments. Guess the user wants to update all of them.
6371               for m4base in $m4dirs; do
6372                 # Perform func_import in a subshell, so that variable values
6373                 # such as
6374                 #   local_gnulib_dir, incobsolete, inc_cxx_tests,
6375                 #   inc_longrunning_tests, inc_privileged_tests,
6376                 #   inc_unportable_tests, inc_all_tests, avoidlist, sourcebase,
6377                 #   m4base, pobase, docbase, testsbase, inctests, libname, lgpl,
6378                 #   makefile_name, libtool, macro_prefix, po_domain,
6379                 #   witness_c_macro, vc_files
6380                 # don't propagate from one directory to another.
6381                 (func_import) || func_exit 1
6382               done
6383             else
6384               # Really ambiguous.
6385               func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
6386             fi
6387           fi
6388         fi
6389       fi
6390     fi
6391     ;;
6392
6393   create-testdir )
6394     if test -z "$destdir"; then
6395       func_fatal_error "please specify --dir option"
6396     fi
6397     mkdir "$destdir"
6398     test -d "$destdir" \
6399       || func_fatal_error "could not create destination directory"
6400     test -n "$auxdir" || auxdir="build-aux"
6401     func_create_testdir "$destdir" "$*"
6402     ;;
6403
6404   create-megatestdir )
6405     if test -z "$destdir"; then
6406       func_fatal_error "please specify --dir option"
6407     fi
6408     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6409     test -n "$auxdir" || auxdir="build-aux"
6410     func_create_megatestdir "$destdir" "$*"
6411     ;;
6412
6413   test )
6414     test -n "$destdir" || destdir=testdir$$
6415     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6416     test -n "$auxdir" || auxdir="build-aux"
6417     func_create_testdir "$destdir" "$*"
6418     cd "$destdir"
6419       mkdir build
6420       cd build
6421         ../configure || func_exit 1
6422         $MAKE || func_exit 1
6423         $MAKE check || func_exit 1
6424         $MAKE distclean || func_exit 1
6425         remaining=`find . -type f -print`
6426         if test -n "$remaining"; then
6427           echo "Remaining files:" $remaining 1>&2
6428           echo "gnulib-tool: *** Stop." 1>&2
6429           func_exit 1
6430         fi
6431       cd ..
6432     cd ..
6433     rm -rf "$destdir"
6434     ;;
6435
6436   megatest )
6437     test -n "$destdir" || destdir=testdir$$
6438     mkdir "$destdir" || func_fatal_error "could not create destination directory"
6439     test -n "$auxdir" || auxdir="build-aux"
6440     func_create_megatestdir "$destdir" "$*"
6441     cd "$destdir"
6442       mkdir build
6443       cd build
6444         ../configure
6445         $MAKE
6446         $MAKE check
6447         $MAKE distclean
6448         remaining=`find . -type f -print`
6449         if test -n "$remaining"; then
6450           echo "Remaining files:" $remaining 1>&2
6451           echo "gnulib-tool: *** Stop." 1>&2
6452           func_exit 1
6453         fi
6454       cd ..
6455     cd ..
6456     rm -rf "$destdir"
6457     ;;
6458
6459   extract-description )
6460     for module
6461     do
6462       func_verify_module
6463       if test -n "$module"; then
6464         func_get_description "$module"
6465       fi
6466     done
6467     ;;
6468
6469   extract-comment )
6470     for module
6471     do
6472       func_verify_module
6473       if test -n "$module"; then
6474         func_get_comment "$module"
6475       fi
6476     done
6477     ;;
6478
6479   extract-status )
6480     for module
6481     do
6482       func_verify_module
6483       if test -n "$module"; then
6484         func_get_status "$module"
6485       fi
6486     done
6487     ;;
6488
6489   extract-notice )
6490     for module
6491     do
6492       func_verify_module
6493       if test -n "$module"; then
6494         func_get_notice "$module"
6495       fi
6496     done
6497     ;;
6498
6499   extract-applicability )
6500     for module
6501     do
6502       func_verify_module
6503       if test -n "$module"; then
6504         func_get_applicability "$module"
6505       fi
6506     done
6507     ;;
6508
6509   extract-filelist )
6510     for module
6511     do
6512       func_verify_module
6513       if test -n "$module"; then
6514         func_get_filelist "$module"
6515       fi
6516     done
6517     ;;
6518
6519   extract-dependencies )
6520     if test -n "$avoidlist"; then
6521       func_fatal_error "cannot combine --avoid and --extract-dependencies"
6522     fi
6523     for module
6524     do
6525       func_verify_module
6526       if test -n "$module"; then
6527         func_get_dependencies "$module"
6528       fi
6529     done
6530     ;;
6531
6532   extract-autoconf-snippet )
6533     for module
6534     do
6535       func_verify_module
6536       if test -n "$module"; then
6537         func_get_autoconf_snippet "$module"
6538       fi
6539     done
6540     ;;
6541
6542   extract-automake-snippet )
6543     for module
6544     do
6545       func_verify_module
6546       if test -n "$module"; then
6547         func_get_automake_snippet "$module"
6548       fi
6549     done
6550     ;;
6551
6552   extract-include-directive )
6553     for module
6554     do
6555       func_verify_module
6556       if test -n "$module"; then
6557         func_get_include_directive "$module"
6558       fi
6559     done
6560     ;;
6561
6562   extract-link-directive )
6563     for module
6564     do
6565       func_verify_module
6566       if test -n "$module"; then
6567         func_get_link_directive "$module"
6568       fi
6569     done
6570     ;;
6571
6572   extract-license )
6573     for module
6574     do
6575       func_verify_module
6576       if test -n "$module"; then
6577         func_get_license "$module"
6578       fi
6579     done
6580     ;;
6581
6582   extract-maintainer )
6583     for module
6584     do
6585       func_verify_module
6586       if test -n "$module"; then
6587         func_get_maintainer "$module"
6588       fi
6589     done
6590     ;;
6591
6592   extract-tests-module )
6593     for module
6594     do
6595       func_verify_module
6596       if test -n "$module"; then
6597         func_get_tests_module "$module"
6598       fi
6599     done
6600     ;;
6601
6602   copy-file )
6603     # Verify the number of arguments.
6604     if test $# -lt 1 || test $# -gt 2; then
6605       func_fatal_error "invalid number of arguments for --$mode"
6606     fi
6607
6608     # The first argument is the file to be copied.
6609     f="$1"
6610     # Verify the file exists.
6611     func_lookup_file "$f"
6612
6613     # The second argument is the destination; either a directory ot a file.
6614     # It defaults to the current directory.
6615     dest="$2"
6616     test -n "$dest" || dest='.'
6617     test -n "$sourcebase" || sourcebase="lib"
6618     test -n "$m4base" || m4base="m4"
6619     test -n "$docbase" || docbase="doc"
6620     test -n "$testsbase" || testsbase="tests"
6621     test -n "$auxdir" || auxdir="build-aux"
6622     rewritten='%REWRITTEN%'
6623     sed_rewrite_files="\
6624       s,^build-aux/,$rewritten$auxdir/,
6625       s,^doc/,$rewritten$docbase/,
6626       s,^lib/,$rewritten$sourcebase/,
6627       s,^m4/,$rewritten$m4base/,
6628       s,^tests/,$rewritten$testsbase/,
6629       s,^top/,$rewritten,
6630       s,^$rewritten,,"
6631     if test -d "$dest"; then
6632       destdir="$dest"
6633       g=`echo "$f" | sed -e "$sed_rewrite_files"`
6634     else
6635       destdir=`dirname "$dest"`
6636       g=`basename "$dest"`
6637     fi
6638
6639     # Create the directory for destfile.
6640     d=`dirname "$destdir/$g"`
6641     if $doit; then
6642       if test -n "$d" && test ! -d "$d"; then
6643         mkdir -p "$d" || func_fatal_error "failed"
6644       fi
6645     fi
6646     # Copy the file.
6647     func_dest_tmpfilename "$g"
6648     cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
6649     already_present=true
6650     if test -f "$destdir/$g"; then
6651       # The file already exists.
6652       func_update_file
6653     else
6654       # Install the file.
6655       # Don't protest if the file should be there but isn't: it happens
6656       # frequently that developers don't put autogenerated files under version
6657       # control.
6658       func_add_file
6659     fi
6660     rm -f "$tmpfile"
6661     ;;
6662
6663   * )
6664     func_fatal_error "unknown operation mode --$mode" ;;
6665 esac
6666
6667 rm -rf "$tmp"
6668 # Undo the effect of the previous 'trap' command. Some shellology:
6669 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
6670 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
6671 # exit); for the others we need to call 'exit' explicitly. The value of $? is
6672 # 128 + signal number and is set before the trap-registered command is run.
6673 trap '' 0
6674 trap 'func_exit $?' 1 2 3 13 15
6675
6676 exit 0
6677
6678 # Local Variables:
6679 # indent-tabs-mode: nil
6680 # whitespace-check-buffer-indent: nil
6681 # End: