(_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
[gnulib.git] / gnulib-tool
1 #! /bin/sh
2 #
3 # Copyright (C) 2002, 2003, 2004, 2005 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 2, or (at your option)
8 # 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, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 #
19
20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages.
22
23 progname=$0
24 package=gnulib
25 cvsdatestamp='$Date: 2005-09-20 11:48:17 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28
29 # You can set AUTOCONFPATH to empty if autoconf 2.57 is already in your PATH.
30 AUTOCONFPATH=
31 #case $USER in
32 #  bruno )
33 #    AUTOCONFBINDIR=/packages/gnu-inst-autoconf/2.57/bin
34 #    AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
35 #    ;;
36 #esac
37
38 AUTORECONF="${AUTOCONFPATH}autoreconf"
39
40 # func_usage
41 # outputs to stdout the --help usage message.
42 func_usage ()
43 {
44   echo "\
45 Usage: gnulib-tool --list
46        gnulib-tool --import [module1 ... moduleN]
47        gnulib-tool --create-testdir --dir=directory module1 ... moduleN
48        gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
49        gnulib-tool --test --dir=directory module1 ... moduleN
50        gnulib-tool --megatest --dir=directory [module1 ... moduleN]
51        gnulib-tool --extract-description module
52        gnulib-tool --extract-filelist module
53        gnulib-tool --extract-dependencies module
54        gnulib-tool --extract-autoconf-snippet module
55        gnulib-tool --extract-automake-snippet module
56        gnulib-tool --extract-include-directive module
57        gnulib-tool --extract-license module
58        gnulib-tool --extract-maintainer module
59        gnulib-tool --extract-tests-module module
60
61 Operation modes:
62       --list                print the available module names
63       --import              import the given modules into the current package
64       --create-testdir      create a scratch package with the given modules
65       --create-megatestdir  create a mega scratch package with the given modules
66                             one by one and all together
67       --test                test the combination of the given modules
68                             (recommended to use CC=\"gcc -Wall\" here)
69       --megatest            test the given modules one by one and all together
70                             (recommended to use CC=\"gcc -Wall\" here)
71       --extract-description        extract the description
72       --extract-filelist           extract the list of files
73       --extract-dependencies       extract the dependencies
74       --extract-autoconf-snippet   extract the snippet for configure.ac
75       --extract-automake-snippet   extract the snippet for lib/Makefile.am
76       --extract-include-directive  extract the #include directive
77       --extract-license            report the license terms of the source files
78                                    under lib/
79       --extract-maintainer         report the maintainer(s) inside gnulib
80       --extract-tests-module       report the unit test module, if it exists
81
82 Options:
83       --dir=DIRECTORY       specify the target directory
84                             For --import, this specifies where your
85                             configure.ac can be found.  Defaults to current
86                             directory.
87       --lib=LIBRARY         Specify the library name.  Defaults to 'libgnu'.
88       --source-base=DIRECTORY
89                             Directory relative --dir where source code is
90                             placed (default \"lib\"), for --import.
91       --m4-base=DIRECTORY   Directory relative --dir where *.m4 macros are
92                             placed (default \"m4\"), for --import.
93       --tests-base=DIRECTORY
94                             Directory relative --dir where unit tests are
95                             placed (default \"tests\"), for --import.
96       --aux-dir=DIRECTORY   Directory relative --dir where auxiliary build
97                             tools are placed (default \"build-aux\").
98       --with-tests          Include unit tests for the included modules.
99       --avoid=MODULE        Avoid including the given MODULE. Useful if you
100                             have code that provides equivalent functionality.
101                             This option can be repeated.
102       --lgpl                Abort if modules aren't available under the LGPL.
103                             Also modify license template from GPL to LGPL.
104       --libtool             Use libtool rules, for --import.
105       --macro-prefix=PREFIX  Specify the prefix of the macros 'gl_EARLY' and
106                             'gl_INIT'. Default is 'gl'.
107       --no-changelog        don't update or create ChangeLog files
108       --dry-run             For --import, only print what would have been done.
109   -s, --symbolic, --symlink Make symbolic links instead of copying files.
110
111 Report bugs to <bug-gnulib@gnu.org>."
112 }
113
114 # func_version
115 # outputs to stdout the --version message.
116 func_version ()
117 {
118   echo "$progname (GNU $package) $version"
119   echo "Copyright (C) 2002-2005 Free Software Foundation, Inc.
120 This is free software; see the source for copying conditions.  There is NO
121 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
122   echo "Written by" "Bruno Haible" "and" "Simon Josefsson"
123 }
124
125 # func_tmpdir
126 # creates a temporary directory.
127 # Sets variable
128 # - tmp             pathname of freshly created temporary directory
129 func_tmpdir ()
130 {
131   # Use the environment variable TMPDIR, falling back to /tmp. This allows
132   # users to specify a different temporary directory, for example, if their
133   # /tmp is filled up or too small.
134   : ${TMPDIR=/tmp}
135   {
136     # Use the mktemp program if available. If not available, hide the error
137     # message.
138     tmp=`(umask 077 && mktemp -d -q "$TMPDIR/glXXXXXX") 2>/dev/null` &&
139     test -n "$tmp" && test -d "$tmp"
140   } ||
141   {
142     # Use a simple mkdir command. It is guaranteed to fail if the directory
143     # already exists.  $RANDOM is bash specific and expands to empty in shells
144     # other than bash, ksh and zsh.  Its use does not increase security;
145     # rather, it minimizes the probability of failure in a very cluttered /tmp
146     # directory.
147     tmp=$TMPDIR/gl$$-$RANDOM
148     (umask 077 && mkdir "$tmp")
149   } ||
150   {
151     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
152     { (exit 1); exit 1; }
153   }
154 }
155
156 # func_fatal_error message
157 # outputs to stderr a fatal error message, and terminates the program.
158 func_fatal_error ()
159 {
160   echo "gnulib-tool: *** $1" 1>&2
161   echo "gnulib-tool: *** Stop." 1>&2
162   exit 1
163 }
164
165 # func_readlink SYMLINK
166 # outputs the target of the given symlink.
167 if (type -p readlink) > /dev/null 2>&1; then
168   func_readlink ()
169   {
170     # Use the readlink program from GNU coreutils.
171     readlink "$1"
172   }
173 else
174   func_readlink ()
175   {
176     # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
177     # would do the wrong thing if the link target contains " -> ".
178     LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
179   }
180 fi
181
182 # func_ln_if_changed SRC DEST
183 # Like ln -s, but avoids munging timestamps if the link is correct.
184 func_ln_if_changed ()
185 {
186   if test $# -ne 2; then
187     echo "usage: func_ln_if_changed SRC DEST" >&2
188   fi
189   if test -L "$2" && test "$1" = "`func_readlink "$2"`"; then
190     :
191   else
192     rm -f "$2"
193     ln -s "$1" "$2"
194   fi
195 }
196
197 # Command-line option processing.
198 # Removes the OPTIONS from the arguments. Sets the variables:
199 # - mode            list or import or create-testdir or create-megatestdir
200 # - destdir         from --dir
201 # - libname, supplied_libname  from --lib
202 # - sourcebase      from --source-base
203 # - m4base          from --m4-base
204 # - testsbase       from --tests-base
205 # - auxdir          from --aux-dir
206 # - inctests        true if --with-tests was given, blank otherwise
207 # - avoidlist       list of modules to avoid, from --avoid
208 # - lgpl            true if --lgpl was given, blank otherwise
209 # - libtool         true if --libtool was given, blank otherwise
210 # - do_changelog    false if --no-changelog was given, : otherwise
211 # - doit            : if actions shall be executed, false if only to be printed
212 {
213   mode=
214   destdir=
215   libname=libgnu
216   supplied_libname=
217   sourcebase=
218   m4base=
219   testsbase=
220   auxdir=
221   inctests=
222   avoidlist=
223   lgpl=
224   libtool=
225   macro_prefix=
226   do_changelog=:
227   doit=:
228   symbolic=
229
230   supplied_opts="$@"
231
232   while test $# -gt 0; do
233     case "$1" in
234       --list | --lis )
235         mode=list
236         shift ;;
237       --import | --impor | --impo | --imp | --im | --i )
238         mode=import
239         shift ;;
240       --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
241         mode=create-testdir
242         shift ;;
243       --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
244         mode=create-megatestdir
245         shift ;;
246       --test | --tes | --te | --t )
247         mode=test
248         shift ;;
249       --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
250         mode=megatest
251         shift ;;
252       --extract-* )
253         mode=`echo "X$1" | sed -e 's/^X--//'`
254         shift ;;
255       --dir )
256         shift
257         if test $# = 0; then
258           func_fatal_error "missing argument for --dir"
259         fi
260         destdir=$1
261         shift ;;
262       --dir=* )
263         destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
264         shift ;;
265       --lib )
266         shift
267         if test $# = 0; then
268           func_fatal_error "missing argument for --lib"
269         fi
270         libname=$1
271         supplied_libname=true
272         shift ;;
273       --lib=* )
274         libname=`echo "X$1" | sed -e 's/^X--lib=//'`
275         supplied_libname=true
276         shift ;;
277       --source-base )
278         shift
279         if test $# = 0; then
280           func_fatal_error "missing argument for --source-base"
281         fi
282         sourcebase=$1
283         shift ;;
284       --source-base=* )
285         sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
286         shift ;;
287       --m4-base )
288         shift
289         if test $# = 0; then
290           func_fatal_error "missing argument for --m4-base"
291         fi
292         m4base=$1
293         shift ;;
294       --m4-base=* )
295         m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
296         shift ;;
297       --tests-base )
298         shift
299         if test $# = 0; then
300           func_fatal_error "missing argument for --tests-base"
301         fi
302         testsbase=$1
303         shift ;;
304       --tests-base=* )
305         testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
306         shift ;;
307       --aux-dir )
308         shift
309         if test $# = 0; then
310           func_fatal_error "missing argument for --aux-dir"
311         fi
312         auxdir=$1
313         shift ;;
314       --aux-dir=* )
315         auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
316         shift ;;
317       --with-tests )
318         inctests=true
319         shift ;;
320       --avoid )
321         shift
322         if test $# = 0; then
323           func_fatal_error "missing argument for --avoid"
324         fi
325         avoidlist="$avoidlist $1"
326         shift ;;
327       --avoid=* )
328         avoidlist="$avoidlist "`echo "X$1" | sed -e 's/^X--avoid=//'`
329         shift ;;
330       --lgpl )
331         lgpl=true
332         shift ;;
333       --libtool )
334         libtool=true
335         shift ;;
336       --macro-prefix )
337         shift
338         if test $# = 0; then
339           func_fatal_error "missing argument for --macro-prefix"
340         fi
341         macro_prefix="$1"
342         shift ;;
343       --macro-prefix=* )
344         macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
345         shift ;;
346       --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch | --no-c )
347         do_changelog=false
348         shift ;;
349       --dry-run )
350         doit=false
351         shift ;;
352       -s | --symbolic | --symlink )
353         symbolic=true
354         shift ;;
355       --help | --hel | --he | --h )
356         func_usage
357         exit 0 ;;
358       --version | --versio | --versi | --vers | --ver | --ve | --v )
359         func_version
360         exit 0 ;;
361       -- )
362         # Stop option processing
363         shift
364         break ;;
365       -* )
366         echo "gnulib-tool: unknown option $1" 1>&2
367         echo "Try 'gnulib-tool --help' for more information." 1>&2
368         exit 1 ;;
369       * )
370         break ;;
371     esac
372   done
373
374   # Remove trailing slashes from the directory names. This is necessary for
375   # m4base (to avoid an error in func_import) and optional for the others.
376   sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
377   case "$sourcebase" in
378     */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
379   esac
380   case "$m4base" in
381     */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
382   esac
383   case "$testsbase" in
384     */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
385   esac
386   case "$auxdir" in
387     */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
388   esac
389 }
390
391 case "$0" in
392   /*) self_abspathname="$0" ;;
393   */*) self_abspathname=`pwd`/"$0" ;;
394   *) for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`; do
395        if test -x "$d/$0" && test ! -d "$d/$0"; then
396          self_abspathname="$d/$0"
397          break
398        fi
399      done
400      if test -z "$self_abspathname"; then
401        func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
402      fi
403      ;;
404 esac
405 while test -h "$self_abspathname"; do
406   # Resolve symbolic link.
407   linkval=`func_readlink "$self_abspathname"`
408   test -n "$linkval" || break
409   case "$linkval" in
410     /* ) self_abspathname="$linkval" ;;
411     * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
412   esac
413 done
414 gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
415
416 # func_all_modules
417 func_all_modules ()
418 {
419   # Filter out metainformation files like README, which are not modules.
420   # Filter out unit test modules; they can be retrieved through
421   # --extract-tests-module if desired.
422   (cd "$gnulib_dir/modules" && ls -1) \
423       | sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/^TEMPLATE-TESTS$/d' -e '/~$/d' \
424       | sed -e '/-tests$/d' \
425       | LC_ALL=C sort
426 }
427
428 # func_verify_module
429 # verifies a module name
430 func_verify_module ()
431 {
432   if test ! -f "$gnulib_dir/modules/$module" \
433      || test "CVS" = "$module" \
434      || test "ChangeLog" = "$module" \
435      || test "README" = "$module" \
436      || test "TEMPLATE" = "$module" \
437      || test "TEMPLATE-TESTS" = "$module"; then
438     echo "gnulib-tool: module $module doesn't exist" 1>&2
439     module=
440   fi
441 }
442
443 # func_verify_nontests_module
444 # verifies a module name, excluding tests modules
445 func_verify_nontests_module ()
446 {
447   case "$module" in
448     *-tests ) module= ;;
449     * ) func_verify_module ;;
450   esac
451 }
452
453 # func_verify_tests_module
454 # verifies a module name, considering only tests modules
455 func_verify_tests_module ()
456 {
457   case "$module" in
458     *-tests ) func_verify_module ;;
459     * ) module= ;;
460   esac
461 }
462
463 sed_extract_prog=':[    ]*$/ {
464   :a
465     n
466     s/^Description:[    ]*$//
467     s/^Files:[  ]*$//
468     s/^Depends-on:[     ]*$//
469     s/^configure\.ac:[  ]*$//
470     s/^Makefile\.am:[   ]*$//
471     s/^Include:[        ]*$//
472     s/^License:[        ]*$//
473     s/^Maintainer:[     ]*$//
474     tb
475     p
476     ba
477   :b
478 }'
479
480 # func_get_description module
481 func_get_description ()
482 {
483   sed -n -e "/^Description$sed_extract_prog" < "$gnulib_dir/modules/$1"
484 }
485
486 # func_get_filelist module
487 func_get_filelist ()
488 {
489   sed -n -e "/^Files$sed_extract_prog" < "$gnulib_dir/modules/$1"
490   #echo m4/onceonly.m4
491   echo m4/onceonly_2_57.m4
492 }
493
494 # func_get_dependencies module
495 func_get_dependencies ()
496 {
497   # ${module}-tests always implicitly depends on ${module}.
498   echo "$1" | sed -n -e 's/-tests//p'
499   # Then the explicit dependencies listed in the module description.
500   sed -n -e "/^Depends-on$sed_extract_prog" < "$gnulib_dir/modules/$1"
501 }
502
503 # func_get_autoconf_snippet module
504 func_get_autoconf_snippet ()
505 {
506   sed -n -e "/^configure\.ac$sed_extract_prog" < "$gnulib_dir/modules/$1"
507 }
508
509 # func_get_automake_snippet module
510 func_get_automake_snippet ()
511 {
512   sed -n -e "/^Makefile\.am$sed_extract_prog" < "$gnulib_dir/modules/$1"
513 }
514
515 # func_get_include_directive module
516 func_get_include_directive ()
517 {
518   sed -n -e "/^Include$sed_extract_prog" < "$gnulib_dir/modules/$1" | \
519   sed -e 's/^\(["<]\)/#include \1/'
520 }
521
522 # func_get_license module
523 func_get_license ()
524 {
525   sed -n -e "/^License$sed_extract_prog" < "$gnulib_dir/modules/$1"
526 }
527
528 # func_get_maintainer module
529 func_get_maintainer ()
530 {
531   sed -n -e "/^Maintainer$sed_extract_prog" < "$gnulib_dir/modules/$1"
532 }
533
534 # func_get_tests_module module
535 func_get_tests_module ()
536 {
537   # The naming convention for tests modules is hardwired: ${module}-tests.
538   if test -f modules/"$1"-tests; then
539     echo "$1"-tests
540   fi
541 }
542
543 # func_acceptable module
544 # tests whether a module is acceptable.
545 # Input:
546 # - avoidlist       list of modules to avoid
547 func_acceptable ()
548 {
549   for avoid in $avoidlist; do
550     if test "$avoid" = "$1"; then
551       return 1
552     fi
553   done
554   return 0
555 }
556
557 # func_modules_transitive_closure
558 # Input:
559 # - modules         list of specified modules
560 # - inctests        true if tests should be included, blank otherwise
561 # - avoidlist       list of modules to avoid
562 # Output:
563 # - modules         list of modules, including dependencies
564 func_modules_transitive_closure ()
565 {
566   while true; do
567     xmodules=
568     for module in $modules; do
569       func_verify_module
570       if test -n "$module"; then
571         # Duplicate dependencies are harmless, but Jim wants a warning.
572         duplicated_deps=`func_get_dependencies $module | LC_ALL=C sort | LC_ALL=C uniq -d`
573         if test -n "$duplicated_deps"; then
574           echo "warning: module $module has duplicated dependencies: "`echo $duplicated_deps` 1>&2
575         fi
576         if func_acceptable $module; then
577           xmodules="$xmodules $module"
578           for depmodule in `func_get_dependencies $module`; do
579             if func_acceptable $depmodule; then
580               xmodules="$xmodules $depmodule"
581             fi
582           done
583           if test -n "$inctests"; then
584             testsmodule=`func_get_tests_module $module`
585             if test -n "$testsmodule"; then
586               if func_acceptable $testsmodule; then
587                 xmodules="$xmodules $testsmodule"
588                 for depmodule in `func_get_dependencies $testsmodule`; do
589                   if func_acceptable $depmodule; then
590                     xmodules="$xmodules $depmodule"
591                   fi
592                 done
593               fi
594             fi
595           fi
596         fi
597       fi
598     done
599     xmodules=`for m in $xmodules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
600     if test "$xmodules" = "$modules"; then
601       break
602     fi
603     modules="$xmodules"
604   done
605 }
606
607 # func_modules_to_filelist
608 # Input:
609 # - modules         list of modules, including dependencies
610 # Output:
611 # - files           list of files
612 func_modules_to_filelist ()
613 {
614   files=
615   for module in $modules; do
616     func_verify_module
617     if test -n "$module"; then
618       files="$files "`func_get_filelist $module`
619     fi
620   done
621   files=`for f in $files; do echo $f; done | LC_ALL=C sort | LC_ALL=C uniq`
622 }
623
624 # func_emit_lib_Makefile_am
625 # emits the contents of lib/Makefile.am to standard output.
626 # Input:
627 # - modules         list of modules, including dependencies
628 # - libname         library name
629 # - libtool         true if libtool will be used, blank otherwise
630 # - actioncmd       (optional) command that will reproduce this invocation
631 func_emit_lib_Makefile_am ()
632 {
633   if test -n "$libtool"; then
634     libext=la
635     perhapsLT=LT
636   else
637     libext=a
638     perhapsLT=
639   fi
640   echo "## Process this file with automake to produce Makefile.in."
641   echo "# Copyright (C) 2004 Free Software Foundation, Inc."
642   echo "#"
643   echo "# This file is free software, distributed under the terms of the GNU"
644   echo "# General Public License.  As a special exception to the GNU General"
645   echo "# Public License, this file may be distributed as part of a program"
646   echo "# that contains a configuration script generated by Automake, under"
647   echo "# the same distribution terms as the rest of that program."
648   echo "#"
649   echo "# Generated by gnulib-tool."
650   if test -n "$actioncmd"; then
651     echo "# Reproduce by: $actioncmd"
652   fi
653   echo
654   # No need to generate dependencies since the sources are in gnulib, not here.
655   echo "AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies"
656   echo
657   echo "noinst_${perhapsLT}LIBRARIES = $libname.$libext"
658   echo
659   echo "${libname}_${libext}_SOURCES ="
660   echo "${libname}_${libext}_LIBADD = @${perhapsLT}LIBOBJS@"
661   echo "EXTRA_DIST ="
662   echo "BUILT_SOURCES ="
663   echo "SUFFIXES ="
664   echo "MOSTLYCLEANFILES ="
665   echo "CLEANFILES ="
666   echo "DISTCLEANFILES ="
667   echo "MAINTAINERCLEANFILES ="
668   echo
669   for module in $modules; do
670     func_verify_nontests_module
671     if test -n "$module"; then
672       {
673         func_get_automake_snippet "$module" |
674           sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
675         if test "$module" = 'alloca'; then
676           echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
677         fi
678       } > amsnippet.tmp
679       # Skip the contents if its entirely empty.
680       if grep '[^       ]' amsnippet.tmp > /dev/null ; then
681         echo "## begin gnulib module $module"
682         echo
683         cat amsnippet.tmp
684         echo "## end   gnulib module $module"
685         echo
686       fi
687       rm -f amsnippet.tmp
688     fi
689   done
690   echo
691   echo "# Makefile.am ends here"
692 }
693
694 # func_emit_tests_Makefile_am
695 # emits the contents of tests/Makefile.am to standard output.
696 # Input:
697 # - modules         list of modules, including dependencies
698 # - libname         library name
699 # - libtool         true if libtool will be used, blank otherwise
700 # - sourcebase      relative directory containing lib source code
701 # - m4base          relative directory containing autoconf macros
702 # - testsbase       relative directory containing unit test code
703 func_emit_tests_Makefile_am ()
704 {
705   if test -n "$libtool"; then
706     libext=la
707   else
708     libext=a
709   fi
710   testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
711   echo "## Process this file with automake to produce Makefile.in."
712   echo "# Copyright (C) 2004-2005 Free Software Foundation, Inc."
713   echo "#"
714   echo "# This file is free software, distributed under the terms of the GNU"
715   echo "# General Public License.  As a special exception to the GNU General"
716   echo "# Public License, this file may be distributed as part of a program"
717   echo "# that contains a configuration script generated by Automake, under"
718   echo "# the same distribution terms as the rest of that program."
719   echo "#"
720   echo "# Generated by gnulib-tool."
721   echo
722   # Generate dependencies here, since it eases the debugging of test failures.
723   echo "AUTOMAKE_OPTIONS = 1.5 foreign"
724   echo
725   echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
726   echo
727   echo "TESTS ="
728   echo "noinst_PROGRAMS ="
729   echo "EXTRA_DIST ="
730   echo "BUILT_SOURCES ="
731   echo "SUFFIXES ="
732   echo "MOSTLYCLEANFILES ="
733   echo "CLEANFILES ="
734   echo "DISTCLEANFILES ="
735   echo "MAINTAINERCLEANFILES ="
736   echo
737   echo "AM_CPPFLAGS = \\"
738   echo "  -I. -I\$(srcdir) \\"
739   echo "  -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
740   echo "  -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
741   echo
742   echo "LDADD = ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}"
743   echo
744   for module in $modules; do
745     func_verify_tests_module
746     if test -n "$module"; then
747       func_get_automake_snippet "$module" > amsnippet.tmp
748       # Skip the contents if its entirely empty.
749       if grep '[^       ]' amsnippet.tmp > /dev/null ; then
750         echo "## begin gnulib module $module"
751         echo
752         cat amsnippet.tmp
753         echo "## end   gnulib module $module"
754         echo
755       fi
756       rm -f amsnippet.tmp
757     fi
758   done
759   echo "# Clean up after Solaris cc."
760   echo "clean-local:"
761   echo "        rm -rf SunWS_cache"
762   echo
763   echo "# Makefile.am ends here"
764 }
765
766 # func_import modules
767 # Uses also the variables
768 # - destdir         target directory
769 # - libname         library name
770 # - sourcebase      directory relative to destdir where to place source code
771 # - m4base          directory relative to destdir where to place *.m4 macros
772 # - testsbase       directory relative to destdir where to place unit test code
773 # - auxdir          directory relative to destdir where to place build aux files
774 # - inctests        true if --with-tests was given, blank otherwise
775 # - avoidlist       list of modules to avoid, from --avoid
776 # - lgpl            true if library's license shall be LGPL, blank otherwise
777 # - libtool         true if libtool will be used, blank otherwise
778 # - guessed_libtool true if the configure.ac file uses libtool, blank otherwise
779 # - macro_prefix    prefix of gl_EARLY, gl_INIT macros to use
780 # - doit            : if actions shall be executed, false if only to be printed
781 # - symbolic        true if files should be symlinked, copied otherwise
782 func_import ()
783 {
784   # Get the cached settings.
785   cached_specified_modules=
786   cached_avoidlist=
787   cached_sourcebase=
788   cached_m4base=
789   cached_testsbase=
790   cached_libname=
791   cached_lgpl=
792   cached_libtool=
793   cached_macro_prefix=
794   cached_files=
795   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
796     my_sed_traces='
797       s,#.*$,,
798       s,^dnl .*$,,
799       s, dnl .*$,,
800       /gl_MODULES(/ {
801         s,^.*gl_MODULES([[ ]*\([^])]*\).*$,cached_specified_modules="\1",p
802       }
803       /gl_AVOID(/ {
804         s,^.*gl_AVOID([[ ]*\([^])]*\).*$,cached_avoidlist="\1",p
805       }
806       /gl_SOURCE_BASE(/ {
807         s,^.*gl_SOURCE_BASE([[ ]*\([^])]*\).*$,cached_sourcebase="\1",p
808       }
809       /gl_M4_BASE(/ {
810         s,^.*gl_M4_BASE([[ ]*\([^])]*\).*$,cached_m4base="\1",p
811       }
812       /gl_TESTS_BASE(/ {
813         s,^.*gl_TESTS_BASE([[ ]*\([^])]*\).*$,cached_testsbase="\1",p
814       }
815       /gl_LIB(/ {
816         s,^.*gl_LIB([[ ]*\([^])]*\).*$,cached_libname="\1",p
817       }
818       /gl_LGPL/ {
819         s,^.*$,cached_lgpl=true,p
820       }
821       /gl_LIBTOOL/ {
822         s,^.*$,cached_libtool=true,p
823       }
824       /gl_MACRO_PREFIX(/ {
825         s,^.*gl_MACRO_PREFIX([[ ]*\([^])]*\).*$,cached_macro_prefix="\1",p
826       }'
827     eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
828     if test -f "$destdir"/$m4base/gnulib-comp.m4; then
829       my_sed_traces='
830         s,#.*$,,
831         s,^dnl .*$,,
832         s, dnl .*$,,
833         /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
834           s,^.*$,cached_files=",p
835           n
836           ta
837           :a
838           s,^\]).*$,",
839           tb
840           p
841           n
842           ba
843           :b
844           p
845         }'
846       eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
847     fi
848   fi
849
850   # Merge the cached settings with the specified ones.
851   # The m4base must be the same as expected from the pathname.
852   if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
853     func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
854   fi
855   # Append the cached and the specified module names. So that
856   # "gnulib-tool --import foo" means to add the module foo.
857   specified_modules="$cached_specified_modules $1"
858   # Append the cached and the specified avoidlist. This is probably better
859   # than dropping the cached one when --avoid is specified at least once.
860   avoidlist=`echo $cached_avoidlist $avoidlist`
861   # The sourcebase defaults to the cached one.
862   if test -z "$sourcebase"; then
863     sourcebase="$cached_sourcebase"
864     if test -z "$sourcebase"; then
865       func_fatal_error "missing --source-base option"
866     fi
867   fi
868   # The testsbase defaults to the cached one.
869   if test -z "$testsbase"; then
870     testsbase="$cached_testsbase"
871     if test -z "$testsbase"; then
872       func_fatal_error "missing --tests-base option"
873     fi
874   fi
875   # The libname defaults to the cached one.
876   if test -z "$supplied_libname"; then
877     libname="$cached_libname"
878     if test -z "$libname"; then
879       func_fatal_error "missing --lib option"
880     fi
881   fi
882   # Require LGPL if specified either way.
883   if test -z "$lgpl"; then
884     lgpl="$cached_lgpl"
885   fi
886   # Use libtool if specified either way, or if guessed.
887   if test -z "$libtool"; then
888     if test -n "$cached_m4base"; then
889       libtool="$cached_libtool"
890     else
891       libtool="$guessed_libtool"
892     fi
893   fi
894   # The macro_prefix defaults to the cached one.
895   if test -z "$macro_prefix"; then
896     macro_prefix="$cached_macro_prefix"
897     if test -z "$macro_prefix"; then
898       func_fatal_error "missing --macro-prefix option"
899     fi
900   fi
901
902   # Canonicalize the list of specified modules.
903   specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
904
905   # Determine final module list.
906   modules="$specified_modules"
907   func_modules_transitive_closure
908   echo "Module list with included dependencies:"
909   echo "$modules" | sed -e 's/^/  /'
910
911   # If --lgpl, check the license of modules are compatible.
912   if test -n "$lgpl"; then
913     for module in $modules; do
914       license=`func_get_license $module`
915       case $license in
916         LGPL | 'public domain' | 'unlimited') ;;
917         *) func_fatal_error "incompatible license on module $module: $license" ;;
918       esac
919     done
920   fi
921
922   # Determine final file list.
923   func_modules_to_filelist
924   echo "File list:"
925   echo "$files" | sed -e 's/^/  /'
926
927   test -n "$files" \
928     || func_fatal_error "refusing to do nothing"
929
930   # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
931   new_files="$files m4/gnulib-tool.m4"
932   old_files="$cached_files"
933   if test -f "$destdir"/$m4base/gnulib-tool.m4; then
934     old_files="$old_files m4/gnulib-tool.m4"
935   fi
936
937   # Create directories.
938   if test ! -d "$destdir/$sourcebase"; then
939     if $doit; then
940       echo "Creating directory $destdir/$sourcebase"
941       mkdir "$destdir/$sourcebase" || func_fatal_error "failed"
942     else
943       echo "Create directory $destdir/$sourcebase"
944     fi
945   fi
946   if test ! -d "$destdir/$m4base"; then
947     if $doit; then
948       echo "Creating directory $destdir/$m4base"
949       mkdir "$destdir/$m4base" || func_fatal_error "failed"
950     else
951       echo "Create directory $destdir/$m4base"
952     fi
953   fi
954   if test -n "$inctests"; then
955     if test ! -d "$destdir/$testsbase"; then
956       if $doit; then
957         echo "Creating directory $destdir/$testsbase"
958         mkdir "$destdir/$testsbase" || func_fatal_error "failed"
959       else
960         echo "Create directory $destdir/$testsbase"
961       fi
962     fi
963   fi
964   if test ! -d "$destdir/$auxdir"; then
965     if $doit; then
966       echo "Creating directory $destdir/$auxdir"
967       mkdir "$destdir/$auxdir" || func_fatal_error "failed"
968     else
969       echo "Create directory $destdir/$auxdir"
970     fi
971   fi
972
973   # Copy files or make symbolic links. Remove obsolete files.
974   func_tmpdir
975   trap 'rm -rf "$tmp"' 0 1 2 3 15
976   delimiter='   '
977   for f in $old_files; do
978     case "$f" in
979       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
980       lib/*) g=`echo "$f" | sed -e "s,^lib/,$cached_sourcebase/,"` ;;
981       m4/*) g=`echo "$f" | sed -e "s,^m4/,$cached_m4base/,"` ;;
982       *) g="$f" ;;
983     esac
984     echo "$g""$delimiter""$f"
985   done | LC_ALL=C sort > "$tmp"/old-files
986   for f in $new_files; do
987     case "$f" in
988       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
989       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
990       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
991       *) g="$f" ;;
992     esac
993     echo "$g""$delimiter""$f"
994   done | LC_ALL=C sort > "$tmp"/new-files
995   # First the files that are in old-files, but not in new-files:
996   for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e 's,'"$delimiter"'.*,,'`; do
997     # Remove the file. Do nothing if the user already removed it.
998     if test -f "$destdir/$g"; then
999       if $doit; then
1000         echo "Removing file $g (backup in ${g}~)"
1001         mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1002       else
1003         echo "Remove file $g (backup in ${g}~)"
1004       fi
1005     fi
1006   done
1007   # func_add_or_update handles a file that ought to be present afterwards.
1008   # Uses parameters f, g, already_present.
1009   func_add_or_update ()
1010   {
1011     cp "$gnulib_dir/$f" "$destdir/$g.tmp" || func_fatal_error "failed"
1012     if test -n "$lgpl"; then
1013       # Update license.
1014       case "$f" in
1015         lib/*)
1016           sed -e 's/GNU General/GNU Lesser General/g' \
1017               -e 's/version 2\([ ,]\)/version 2.1\1/g' \
1018             < "$gnulib_dir/$f" > "$destdir/$g.tmp" || func_fatal_error "failed"
1019           ;;
1020       esac
1021     fi
1022     if test -f "$destdir/$g"; then
1023       # The file already exists.
1024       if cmp "$destdir/$g" "$destdir/$g.tmp" > /dev/null; then
1025         : # The file has not changed.
1026       else
1027         # Replace the file.
1028         if $doit; then
1029           if test -n "$already_present"; then
1030             echo "Updating file $g (backup in ${g}~)"
1031           else
1032             echo "Replacing file $g (non-gnulib code backuped in ${g}~) !!"
1033           fi
1034           mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
1035           if test -n "$symbolic" && cmp "$gnulib_dir/$f" "$destdir/$g.tmp" > /dev/null; then
1036             func_ln_if_changed "$gnulib_dir/$f" "$destdir/$g"
1037           else
1038             mv -f "$destdir/$g.tmp" "$destdir/${g}" || func_fatal_error "failed"
1039           fi
1040         else
1041           if test -n "$already_present"; then
1042             echo "Update file $g (backup in ${g}~)"
1043           else
1044             echo "Replace file $g (non-gnulib code backuped in ${g}~) !!"
1045           fi
1046         fi
1047       fi
1048     else
1049       # Install the file.
1050       # Don't protest if the file should be there but isn't: it happens
1051       # frequently that developers don't put autogenerated files into CVS.
1052       if $doit; then
1053         echo "Copying file $g"
1054         if test -n "$symbolic" && cmp "$gnulib_dir/$f" "$destdir/$g.tmp" > /dev/null; then
1055           func_ln_if_changed "$gnulib_dir/$f" "$destdir/$g"
1056         else
1057           mv -f "$destdir/$g.tmp" "$destdir/${g}" || func_fatal_error "failed"
1058         fi
1059       else
1060         echo "Copy file $g"
1061       fi
1062     fi
1063     rm -f "$destdir/$g.tmp"
1064   }
1065   # Then the files that are in new-files, but not in old-files:
1066   already_present=
1067   for f in `LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files | sed -e 's,'^.*"$delimiter"',,'`; do
1068     case "$f" in
1069       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1070       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1071       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1072       *) g="$f" ;;
1073     esac
1074     func_add_or_update
1075   done
1076   # Then the files that are in new-files and in old-files:
1077   already_present=true
1078   for f in `LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files | sed -e 's,'^.*"$delimiter"',,'`; do
1079     case "$f" in
1080       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1081       lib/*) g=`echo "$f" | sed -e "s,^lib/,$sourcebase/,"` ;;
1082       m4/*) g=`echo "$f" | sed -e "s,^m4/,$m4base/,"` ;;
1083       *) g="$f" ;;
1084     esac
1085     func_add_or_update
1086   done
1087   rm -rf "$tmp"
1088   trap - 0 1 2 3 15
1089
1090   # Command-line invocation printed in a comment in generated gnulib-cache.m4.
1091   actioncmd="gnulib-tool --import"
1092   actioncmd="$actioncmd --dir=$destdir"
1093   actioncmd="$actioncmd --lib=$libname"
1094   actioncmd="$actioncmd --source-base=$sourcebase"
1095   actioncmd="$actioncmd --m4-base=$m4base"
1096   actioncmd="$actioncmd --aux-dir=$auxdir"
1097   for module in $avoidlist; do
1098     actioncmd="$actioncmd --avoid=$module"
1099   done
1100   if test -n "$lgpl"; then
1101     actioncmd="$actioncmd --lgpl"
1102   fi
1103   if test -n "$libtool"; then
1104     actioncmd="$actioncmd --libtool"
1105   fi
1106   actioncmd="$actioncmd --macro-prefix=$macro_prefix"
1107   actioncmd="$actioncmd `echo $specified_modules`"
1108
1109   # Create lib/Makefile.am.
1110   func_emit_lib_Makefile_am > "$destdir"/$sourcebase/Makefile.am.tmp
1111   if test -f "$destdir"/$sourcebase/Makefile.am; then
1112     if cmp "$destdir"/$sourcebase/Makefile.am "$destdir"/$sourcebase/Makefile.am.tmp > /dev/null; then
1113       rm -f "$destdir"/$sourcebase/Makefile.am.tmp
1114     else
1115       if $doit; then
1116         echo "Updating $sourcebase/Makefile.am (backup in $sourcebase/Makefile.am~)"
1117         mv -f "$destdir"/$sourcebase/Makefile.am "$destdir"/$sourcebase/Makefile.am~
1118         mv -f "$destdir"/$sourcebase/Makefile.am.tmp "$destdir"/$sourcebase/Makefile.am
1119       else
1120         echo "Update $sourcebase/Makefile.am (backup in $sourcebase/Makefile.am~)"
1121         rm -f "$destdir"/$sourcebase/Makefile.am.tmp
1122       fi
1123     fi
1124   else
1125     if $doit; then
1126       echo "Creating $sourcebase/Makefile.am"
1127       mv -f "$destdir"/$sourcebase/Makefile.am.tmp "$destdir"/$sourcebase/Makefile.am
1128     else
1129       echo "Create $sourcebase/Makefile.am"
1130       rm -f "$destdir"/$sourcebase/Makefile.am.tmp
1131     fi
1132   fi
1133
1134   # Create m4/gnulib-cache.m4.
1135   (
1136     echo "# Copyright (C) 2004 Free Software Foundation, Inc."
1137     echo "# This file is free software, distributed under the terms of the GNU"
1138     echo "# General Public License.  As a special exception to the GNU General"
1139     echo "# Public License, this file may be distributed as part of a program"
1140     echo "# that contains a configuration script generated by Autoconf, under"
1141     echo "# the same distribution terms as the rest of that program."
1142     echo "#"
1143     echo "# Generated by gnulib-tool."
1144     echo "#"
1145     echo "# This file represents the specification of how gnulib-tool is used."
1146     echo "# It acts as a cache: It is written and read by gnulib-tool."
1147     echo "# In projects using CVS, this file is meant to be stored in CVS,"
1148     echo "# like the configure.ac and various Makefile.am files."
1149     echo
1150     echo
1151     echo "# Specification in the form of a command-line invocation:"
1152     echo "#   $actioncmd"
1153     echo
1154     echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
1155     echo "gl_MODULES(["`echo $specified_modules`"])"
1156     echo "gl_AVOID([$avoidlist])"
1157     echo "gl_SOURCE_BASE([$sourcebase])"
1158     echo "gl_M4_BASE([$m4base])"
1159     echo "gl_TESTS_BASE([$testsbase])"
1160     echo "gl_LIB([$libname])"
1161     test -z "$lgpl" || echo "gl_LGPL"
1162     test -z "$libtool" || echo "gl_LIBTOOL"
1163     echo "gl_MACRO_PREFIX([$macro_prefix])"
1164   ) > "$destdir"/$m4base/gnulib-cache.m4.tmp
1165   if test -f "$destdir"/$m4base/gnulib-cache.m4; then
1166     if cmp "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4.tmp > /dev/null; then
1167       rm -f "$destdir"/$m4base/gnulib-cache.m4.tmp
1168     else
1169       if $doit; then
1170         echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1171         mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
1172         mv -f "$destdir"/$m4base/gnulib-cache.m4.tmp "$destdir"/$m4base/gnulib-cache.m4
1173       else
1174         echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
1175         if false; then
1176           cat "$destdir"/$m4base/gnulib-cache.m4.tmp
1177           echo
1178           echo "# gnulib-cache.m4 ends here"
1179         fi
1180         rm -f "$destdir"/$m4base/gnulib-cache.m4.tmp
1181       fi
1182     fi
1183   else
1184     if $doit; then
1185       echo "Creating $m4base/gnulib-cache.m4"
1186       mv -f "$destdir"/$m4base/gnulib-cache.m4.tmp "$destdir"/$m4base/gnulib-cache.m4
1187     else
1188       echo "Create $m4base/gnulib-cache.m4"
1189       cat "$destdir"/$m4base/gnulib-cache.m4.tmp
1190       rm -f "$destdir"/$m4base/gnulib-cache.m4.tmp
1191     fi
1192   fi
1193
1194   # Create m4/gnulib-comp.m4.
1195   (
1196     echo "# Copyright (C) 2004 Free Software Foundation, Inc."
1197     echo "# This file is free software, distributed under the terms of the GNU"
1198     echo "# General Public License.  As a special exception to the GNU General"
1199     echo "# Public License, this file may be distributed as part of a program"
1200     echo "# that contains a configuration script generated by Autoconf, under"
1201     echo "# the same distribution terms as the rest of that program."
1202     echo "#"
1203     echo "# Generated by gnulib-tool."
1204     echo "#"
1205     echo "# This file represents the compiled summary of the specification in"
1206     echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
1207     echo "# to be invoked from configure.ac."
1208     echo "# In projects using CVS, this file can be treated like other built files."
1209     echo
1210     echo
1211     echo "# This macro should be invoked from $configure_ac, in the section"
1212     echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
1213     echo "# any checks for libraries, header files, types and library functions."
1214     echo "AC_DEFUN([${macro_prefix}_EARLY],"
1215     echo "["
1216     if grep AC_GNU_SOURCE "$destdir"/$m4base/*.m4 > /dev/null; then
1217       echo "  AC_REQUIRE([AC_GNU_SOURCE])"
1218     fi
1219     if grep gl_USE_SYSTEM_EXTENSIONS "$destdir"/$m4base/*.m4 > /dev/null; then
1220       echo "  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])"
1221     fi
1222     echo "])"
1223     echo
1224     echo "# This macro should be invoked from $configure_ac, in the section"
1225     echo "# \"Check for header files, types and library functions\"."
1226     echo "AC_DEFUN([${macro_prefix}_INIT],"
1227     echo "["
1228     for module in $modules; do
1229       func_verify_module
1230       if test -n "$module"; then
1231         func_get_autoconf_snippet "$module" | sed -e '/^$/d;' -e 's/^/  /' -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
1232         if test "$module" = 'alloca' && test -n "$libtool"; then
1233           echo 'changequote(,)dnl'
1234           echo 'LTALLOCA=`echo "$ALLOCA" | sed '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
1235           echo 'changequote([, ])dnl'
1236           echo 'AC_SUBST([LTALLOCA])'
1237         fi
1238       fi
1239     done
1240     echo "])"
1241     echo
1242     echo "# This macro records the list of files which have been installed by"
1243     echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
1244     echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
1245     echo "$files" | sed -e 's,^,  ,'
1246     echo "])"
1247   ) > "$destdir"/$m4base/gnulib-comp.m4.tmp
1248   if test -f "$destdir"/$m4base/gnulib-comp.m4; then
1249     if cmp "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4.tmp > /dev/null; then
1250       rm -f "$destdir"/$m4base/gnulib-comp.m4.tmp
1251     else
1252       if $doit; then
1253         echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1254         mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
1255         mv -f "$destdir"/$m4base/gnulib-comp.m4.tmp "$destdir"/$m4base/gnulib-comp.m4
1256       else
1257         echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
1258         if false; then
1259           cat "$destdir"/$m4base/gnulib-comp.m4.tmp
1260           echo
1261           echo "# gnulib-comp.m4 ends here"
1262         fi
1263         rm -f "$destdir"/$m4base/gnulib-comp.m4.tmp
1264       fi
1265     fi
1266   else
1267     if $doit; then
1268       echo "Creating $m4base/gnulib-comp.m4"
1269       mv -f "$destdir"/$m4base/gnulib-comp.m4.tmp "$destdir"/$m4base/gnulib-comp.m4
1270     else
1271       echo "Create $m4base/gnulib-comp.m4"
1272       cat "$destdir"/$m4base/gnulib-comp.m4.tmp
1273       rm -f "$destdir"/$m4base/gnulib-comp.m4.tmp
1274     fi
1275   fi
1276
1277   if test -n "$inctests"; then
1278     # Create tests/Makefile.am.
1279     func_emit_tests_Makefile_am > "$destdir"/$testsbase/Makefile.am.tmp
1280     if test -f "$destdir"/$testsbase/Makefile.am; then
1281       if cmp "$destdir"/$testsbase/Makefile.am "$destdir"/$testsbase/Makefile.am.tmp > /dev/null; then
1282         rm -f "$destdir"/$testsbase/Makefile.am.tmp
1283       else
1284         if $doit; then
1285           echo "Updating $testsbase/Makefile.am (backup in $testsbase/Makefile.am~)"
1286           mv -f "$destdir"/$testsbase/Makefile.am "$destdir"/$testsbase/Makefile.am~
1287           mv -f "$destdir"/$testsbase/Makefile.am.tmp "$destdir"/$testsbase/Makefile.am
1288         else
1289           echo "Update $testsbase/Makefile.am (backup in $testsbase/Makefile.am~)"
1290           rm -f "$destdir"/$testsbase/Makefile.am.tmp
1291         fi
1292       fi
1293     else
1294       if $doit; then
1295         echo "Creating $testsbase/Makefile.am"
1296         mv -f "$destdir"/$testsbase/Makefile.am.tmp "$destdir"/$testsbase/Makefile.am
1297       else
1298         echo "Create $testsbase/Makefile.am"
1299         rm -f "$destdir"/$testsbase/Makefile.am.tmp
1300       fi
1301     fi
1302   fi
1303
1304   echo "Finished."
1305   echo
1306   echo "You may need to add #include directives for the following .h files."
1307   for module in $modules; do
1308     func_get_include_directive "$module"
1309   done | LC_ALL=C sort -u | sed -e '/^$/d;' -e 's/^/  /'
1310   echo
1311   echo "Don't forget to"
1312   echo "  - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1313   if test -n "$inctests"; then
1314     echo "  - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
1315   fi
1316   sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
1317   sourcebase_base=`basename "$sourcebase"`
1318   echo "  - mention \"${sourcebase_base}\" in SUBDIRS in ${sourcebase_dir}Makefile.am,"
1319   if test -n "$inctests"; then
1320     testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
1321     testsbase_base=`basename "$testsbase"`
1322     echo "  - mention \"${testsbase_base}\" in SUBDIRS in ${testsbase_dir}Makefile.am,"
1323   fi
1324   echo "  - mention \"-I ${m4base}\" in ACLOCAL_AMFLAGS in Makefile.am,"
1325   echo "  - invoke ${macro_prefix}_EARLY in $configure_ac, right after AC_PROG_CC,"
1326   echo "  - invoke ${macro_prefix}_INIT in $configure_ac."
1327 }
1328
1329 # func_create_testdir testdir modules
1330 # Input:
1331 # - auxdir          directory relative to destdir where to place build aux files
1332 func_create_testdir ()
1333 {
1334   testdir="$1"
1335   modules="$2"
1336   modules=`for m in $modules; do echo $m; done | LC_ALL=C sort | LC_ALL=C uniq`
1337
1338   # Determine final module list.
1339   func_modules_transitive_closure
1340   echo "Module list with included dependencies:"
1341   echo "$modules" | sed -e 's/^/  /'
1342
1343   # Determine final file list.
1344   func_modules_to_filelist
1345   echo "File list:"
1346   echo "$files" | sed -e 's/^/  /'
1347
1348   # Create directories.
1349   for d in `echo "$files" | sed -n -e 's,^\(.*\)/[^/]*,\1,p'`; do
1350     if test "$d" = build-aux; then
1351       mkdir -p "$testdir/$auxdir"
1352     else
1353       mkdir -p "$testdir/$d"
1354     fi
1355   done
1356
1357   # Copy files or make symbolic links.
1358   for f in $files; do
1359     case "$f" in
1360       build-aux/*) g=`echo "$f" | sed -e "s,^build-aux/,$auxdir/,"` ;;
1361       *) g="$f" ;;
1362     esac
1363     ln "$gnulib_dir/$f" "$testdir/$g" 2>/dev/null ||
1364     if test -z "$symbolic"; then
1365       cp -p "$gnulib_dir/$f" "$testdir/$g"
1366     else
1367       ln -s "$gnulib_dir/$f" "$testdir/$g"
1368     fi
1369   done
1370
1371   # Create lib/Makefile.am.
1372   mkdir -p "$testdir/lib"
1373   func_emit_lib_Makefile_am > "$testdir/lib/Makefile.am"
1374
1375   # Create m4/Makefile.am.
1376   mkdir -p "$testdir/m4"
1377   (echo "## Process this file with automake to produce Makefile.in."
1378    echo
1379    echo "EXTRA_DIST ="
1380    for f in $files; do
1381      case "$f" in
1382        m4/* )
1383          echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
1384      esac
1385    done
1386   ) > "$testdir/m4/Makefile.am"
1387
1388   subdirs="lib m4"
1389   subdirs_with_configure_ac=""
1390
1391   if test -f "$testdir"/m4/gettext.m4; then
1392     # Avoid stupid error message from automake:
1393     # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
1394     mkdir -p "$testdir/po"
1395     (echo "## Process this file with automake to produce Makefile.in."
1396     ) > "$testdir/po/Makefile.am"
1397     subdirs="$subdirs po"
1398   fi
1399
1400   if test -n "$inctests"; then
1401     test -d "$testdir/tests" || mkdir "$testdir/tests"
1402     # Create tests/Makefile.am.
1403     sourcebase=lib
1404     m4base=m4
1405     testsbase=tests
1406     func_emit_tests_Makefile_am > "$testdir/tests/Makefile.am"
1407     # Create tests/configure.ac.
1408     (echo "# Process this file with autoconf to produce a configure script."
1409      echo "AC_INIT([dummy], [0])"
1410      echo "AC_CONFIG_AUX_DIR([../$auxdir])"
1411      echo "AM_INIT_AUTOMAKE"
1412      echo
1413      echo "AM_CONFIG_HEADER([config.h])"
1414      echo
1415      echo "AC_PROG_CC"
1416      echo "AC_PROG_INSTALL"
1417      echo "AC_PROG_MAKE_SET"
1418      echo "AC_PROG_RANLIB"
1419      echo
1420      if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 > /dev/null; then
1421        echo "AC_GNU_SOURCE"
1422        echo
1423      fi
1424      if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 > /dev/null; then
1425        echo "gl_USE_SYSTEM_EXTENSIONS"
1426        echo
1427      fi
1428      # We don't have explicit ordering constraints between the various
1429      # autoconf snippets. It's cleanest to put those of the library before
1430      # those of the tests.
1431      for module in $modules; do
1432        func_verify_nontests_module
1433        if test -n "$module"; then
1434          func_get_autoconf_snippet "$module"
1435        fi
1436      done
1437      for module in $modules; do
1438        func_verify_tests_module
1439        if test -n "$module"; then
1440          func_get_autoconf_snippet "$module"
1441        fi
1442      done
1443      echo
1444      # Usually tests/config.h will be a superset of config.h. Verify this by
1445      # "merging" config.h into tests/config.h; look out for gcc warnings.
1446      echo "AH_TOP([#include \"../config.h\"])"
1447      echo
1448      echo "AC_OUTPUT([Makefile])"
1449     ) > "$testdir/tests/configure.ac"
1450     subdirs="$subdirs tests"
1451     subdirs_with_configure_ac="$subdirs_with_configure_ac tests"
1452   fi
1453
1454   # Create Makefile.am.
1455   (echo "## Process this file with automake to produce Makefile.in."
1456    echo
1457    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1458    echo
1459    echo "SUBDIRS = $subdirs"
1460    echo
1461    echo "ACLOCAL_AMFLAGS = -I m4"
1462   ) > "$testdir/Makefile.am"
1463
1464   # Create configure.ac.
1465   (echo "# Process this file with autoconf to produce a configure script."
1466    echo "AC_INIT([dummy], [0])"
1467    if test "$auxdir" != "."; then
1468      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1469    fi
1470    echo "AM_INIT_AUTOMAKE"
1471    echo
1472    echo "AM_CONFIG_HEADER([config.h])"
1473    echo
1474    echo "AC_PROG_CC"
1475    echo "AC_PROG_INSTALL"
1476    echo "AC_PROG_MAKE_SET"
1477    echo "AC_PROG_RANLIB"
1478    echo
1479    if grep AC_GNU_SOURCE "$testdir"/m4/*.m4 > /dev/null; then
1480      echo "AC_GNU_SOURCE"
1481      echo
1482    fi
1483    if grep gl_USE_SYSTEM_EXTENSIONS "$testdir"/m4/*.m4 > /dev/null; then
1484      echo "gl_USE_SYSTEM_EXTENSIONS"
1485      echo
1486    fi
1487    for module in $modules; do
1488      func_verify_nontests_module
1489      if test -n "$module"; then
1490        func_get_autoconf_snippet "$module"
1491      fi
1492    done
1493    echo
1494    if test -n "$subdirs_with_configure_ac"; then
1495      echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
1496    fi
1497    makefiles="Makefile"
1498    for d in $subdirs; do
1499      # For subdirs that have a configure.ac by their own, it's the subdir's
1500      # configure.ac which creates the subdir's Makefile.am, not this one.
1501      case " $subdirs_with_configure_ac " in
1502        *" $d "*) ;;
1503        *) makefiles="$makefiles $d/Makefile" ;;
1504      esac
1505    done
1506    echo "AC_OUTPUT([$makefiles])"
1507   ) > "$testdir/configure.ac"
1508
1509   # Create autogenerated files.
1510   (cd "$testdir"
1511    echo "executing ${AUTORECONF} --force --install"
1512    ${AUTORECONF} --force --install
1513   )
1514   if grep '^BUILT_SOURCES *+=' "$testdir/lib/Makefile.am" > /dev/null; then
1515     (cd "$testdir"
1516      ./configure
1517        cd lib
1518        built_sources=`grep '^BUILT_SOURCES *=' Makefile.in | sed -e 's/^BUILT_SOURCES *=//'`
1519        if test -n "$built_sources"; then
1520          make $built_sources
1521        fi
1522        cd ..
1523      make distclean
1524     )
1525   fi
1526 }
1527
1528 # func_create_megatestdir megatestdir allmodules
1529 # Input:
1530 # - auxdir          directory relative to destdir where to place build aux files
1531 func_create_megatestdir ()
1532 {
1533   megatestdir="$1"
1534   allmodules="$2"
1535   if test -z "$allmodules"; then
1536     allmodules=`func_all_modules`
1537   fi
1538
1539   megasubdirs=
1540   # First, all modules one by one.
1541   for onemodule in $allmodules; do
1542     func_create_testdir "$megatestdir/$onemodule" $onemodule
1543     megasubdirs="${megasubdirs}$onemodule "
1544   done
1545   # Then, all modules all together.
1546   # Except fnmatch-posix, which conflicts with fnmatch-gnu. FIXME.
1547   allmodules=`for m in $allmodules; do if test $m != fnmatch-posix; then echo $m; fi; done`
1548   func_create_testdir "$megatestdir/ALL" "$allmodules"
1549   megasubdirs="${megasubdirs}ALL"
1550
1551   # Create Makefile.am.
1552   (echo "## Process this file with automake to produce Makefile.in."
1553    echo
1554    echo "AUTOMAKE_OPTIONS = 1.5 foreign"
1555    echo
1556    echo "SUBDIRS = $megasubdirs"
1557   ) > "$megatestdir/Makefile.am"
1558
1559   # Create configure.ac.
1560   (echo "# Process this file with autoconf to produce a configure script."
1561    echo "AC_INIT([dummy], [0])"
1562    if test "$auxdir" != "."; then
1563      echo "AC_CONFIG_AUX_DIR([$auxdir])"
1564    fi
1565    echo "AM_INIT_AUTOMAKE"
1566    echo
1567    echo "AC_PROG_MAKE_SET"
1568    echo
1569    echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
1570    echo "AC_OUTPUT([Makefile])"
1571   ) > "$megatestdir/configure.ac"
1572
1573   # Create autogenerated files.
1574   (cd "$megatestdir"
1575    echo "executing ${AUTORECONF} --install"
1576    ${AUTORECONF} --install
1577   )
1578 }
1579
1580 case $mode in
1581   "" )
1582     func_fatal_error "no mode specified" ;;
1583
1584   list )
1585     func_all_modules
1586     ;;
1587
1588   import )
1589     # Where to import.
1590     if test -z "$destdir"; then
1591       destdir=.
1592     fi
1593     test -d "$destdir" \
1594       || func_fatal_error "destination directory does not exist: $destdir"
1595
1596     # Prefer configure.ac to configure.in.
1597     if test -f "$destdir"/configure.ac; then
1598       configure_ac="$destdir/configure.ac"
1599     else
1600       if test -f "$destdir"/configure.in; then
1601         configure_ac="$destdir/configure.in"
1602       else
1603         func_fatal_error "cannot find $destdir/configure.ac"
1604       fi
1605     fi
1606
1607     test -f "$destdir"/Makefile.am \
1608       || func_fatal_error "cannot find $destdir/Makefile.am"
1609
1610     # Analyze configure.ac.
1611     guessed_auxdir="."
1612     guessed_libtool=
1613     my_sed_traces='
1614       s,#.*$,,
1615       s,^dnl .*$,,
1616       s, dnl .*$,,
1617       /AC_CONFIG_AUX_DIR/ {
1618         s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^])]*\).*$,guessed_auxdir="\1",p
1619       }
1620       /A[CM]_PROG_LIBTOOL/ {
1621         s,^.*$,guessed_libtool=true,p
1622       }'
1623     eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
1624
1625     if test -z "$auxdir"; then
1626       auxdir="$guessed_auxdir"
1627     fi
1628
1629     # Determine where to apply func_import.
1630     if test -n "$m4base"; then
1631       # Apply func_import to a particular gnulib directory.
1632       # Any number of additional modules can be given.
1633       if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
1634         # First use of gnulib in the given m4base.
1635         test -n "$supplied_libname" || supplied_libname=true
1636         test -n "$sourcebase" || sourcebase="lib"
1637         test -n "$testsbase" || testsbase="tests"
1638         test -n "$macro_prefix" || macro_prefix="gl"
1639       fi
1640       func_import "$*"
1641     else
1642       # Apply func_import to all gnulib directories.
1643       # To get this list of directories, look at Makefile.am. (Not at
1644       # configure, because it may be omitted from CVS. Also, don't run
1645       # "find $destdir -name gnulib-cache.m4", as it might be too expensive.)
1646       aclocal_amflags=`grep '^ACLOCAL_AMFLAGS[  ]*=' "$destdir"/Makefile.am | sed -e 's/^ACLOCAL_AMFLAGS[       ]*=\(.*\)$/\1/'`
1647       m4dirs=
1648       m4dirs_count=0
1649       m4dir_is_next=
1650       for arg in $aclocal_amflags; do
1651         if test -n "$m4dir_is_next"; then
1652           # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
1653           case "$arg" in
1654             /*) ;;
1655             *)
1656               if test -f "$destdir/$arg"/gnulib-cache.m4; then
1657                 m4dirs="$m4dirs $arg"
1658                 m4dirs_count=`expr $m4dirs_count + 1`
1659               fi
1660               ;;
1661           esac
1662         else
1663           if test "X$arg" = "X-I"; then
1664             m4dir_is_next=yes
1665           else
1666             m4dir_is_next=
1667           fi
1668         fi
1669       done
1670       if test $m4dirs_count = 0; then
1671         # First use of gnulib in a package.
1672         # Any number of additional modules can be given.
1673         test -n "$supplied_libname" || supplied_libname=true
1674         test -n "$sourcebase" || sourcebase="lib"
1675         m4base="m4"
1676         test -n "$testsbase" || testsbase="tests"
1677         test -n "$macro_prefix" || macro_prefix="gl"
1678         func_import "$*"
1679       else
1680         if test $m4dirs_count = 1; then
1681           # There's only one use of gnulib here. Assume the user means it.
1682           # Any number of additional modules can be given.
1683           for m4base in $m4dirs; do
1684             func_import "$*"
1685           done
1686         else
1687           # Ambiguous - guess what the user meant.
1688           if test $# = 0; then
1689             # No further arguments. Guess the user wants to update all of them.
1690             for m4base in $m4dirs; do
1691               func_import
1692             done
1693           else
1694             # Really ambiguous.
1695             func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
1696           fi
1697         fi
1698       fi
1699     fi
1700     ;;
1701
1702   create-testdir )
1703     if test -z "$destdir"; then
1704       func_fatal_error "please specify --dir option"
1705     fi
1706     mkdir "$destdir"
1707     test -d "$destdir" \
1708       || func_fatal_error "could not create destination directory"
1709     test -n "$auxdir" || auxdir="build-aux"
1710     func_create_testdir "$destdir" "$*"
1711     ;;
1712
1713   create-megatestdir )
1714     if test -z "$destdir"; then
1715       func_fatal_error "please specify --dir option"
1716     fi
1717     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1718     test -n "$auxdir" || auxdir="build-aux"
1719     func_create_megatestdir "$destdir" "$*"
1720     ;;
1721
1722   test )
1723     test -n "$destdir" || destdir=testdir$$
1724     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1725     test -n "$auxdir" || auxdir="build-aux"
1726     func_create_testdir "$destdir" "$*"
1727     cd "$destdir"
1728       mkdir build
1729       cd build
1730         ../configure
1731         make
1732         make check
1733         make distclean
1734         remaining=`find . -type f -print`
1735         if test -n "$remaining"; then
1736           echo "Remaining files:" $remaining 1>&2
1737           echo "gnulib-tool: *** Stop." 1>&2
1738           exit 1
1739         fi
1740       cd ..
1741     cd ..
1742     rm -rf "$destdir"
1743     ;;
1744
1745   megatest )
1746     test -n "$destdir" || destdir=testdir$$
1747     mkdir "$destdir" || func_fatal_error "could not create destination directory"
1748     test -n "$auxdir" || auxdir="build-aux"
1749     func_create_megatestdir "$destdir" "$*"
1750     cd "$destdir"
1751       mkdir build
1752       cd build
1753         ../configure
1754         make
1755         make check
1756         make distclean
1757         remaining=`find . -type f -print`
1758         if test -n "$remaining"; then
1759           echo "Remaining files:" $remaining 1>&2
1760           echo "gnulib-tool: *** Stop." 1>&2
1761           exit 1
1762         fi
1763       cd ..
1764     cd ..
1765     rm -rf "$destdir"
1766     ;;
1767
1768   extract-description )
1769     for module
1770     do
1771       func_verify_module
1772       if test -n "$module"; then
1773         func_get_description "$module"
1774       fi
1775     done
1776     ;;
1777
1778   extract-filelist )
1779     for module
1780     do
1781       func_verify_module
1782       if test -n "$module"; then
1783         func_get_filelist "$module"
1784       fi
1785     done
1786     ;;
1787
1788   extract-dependencies )
1789     for module
1790     do
1791       func_verify_module
1792       if test -n "$module"; then
1793         func_get_dependencies "$module"
1794       fi
1795     done
1796     ;;
1797
1798   extract-autoconf-snippet )
1799     for module
1800     do
1801       func_verify_module
1802       if test -n "$module"; then
1803         func_get_autoconf_snippet "$module"
1804       fi
1805     done
1806     ;;
1807
1808   extract-automake-snippet )
1809     for module
1810     do
1811       func_verify_module
1812       if test -n "$module"; then
1813         func_get_automake_snippet "$module"
1814       fi
1815     done
1816     ;;
1817
1818   extract-include-directive )
1819     for module
1820     do
1821       func_verify_module
1822       if test -n "$module"; then
1823         func_get_include_directive "$module"
1824       fi
1825     done
1826     ;;
1827
1828   extract-license )
1829     for module
1830     do
1831       func_verify_module
1832       if test -n "$module"; then
1833         func_get_license "$module"
1834       fi
1835     done
1836     ;;
1837
1838   extract-maintainer )
1839     for module
1840     do
1841       func_verify_module
1842       if test -n "$module"; then
1843         func_get_maintainer "$module"
1844       fi
1845     done
1846     ;;
1847
1848   extract-tests-module )
1849     for module
1850     do
1851       func_verify_module
1852       if test -n "$module"; then
1853         func_get_tests_module "$module"
1854       fi
1855     done
1856     ;;
1857
1858   * )
1859     func_fatal_error "unknown operation mode --$mode" ;;
1860 esac
1861
1862 exit 0