annotate gnulib-tool @ 40246:c34f677e6117 default tip master

_Noreturn: GCC 4.7 does not support [[noreturn]] in C++11 mode * lib/_Noreturn.h, m4/gnulib-common.m4: Don't use [[noreturn]] before GCC 4.8.
author Akim Demaille <akim.demaille@gmail.com>
date Sun, 17 Mar 2019 19:27:20 +0100
parents fab7ce42e03f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 #! /bin/sh
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 #
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 39944
diff changeset
3 # Copyright (C) 2002-2019 Free Software Foundation, Inc.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 #
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9284
diff changeset
5 # This program is free software: you can redistribute it and/or modify
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 # it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9284
diff changeset
7 # the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9284
diff changeset
8 # (at your option) any later version.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 #
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 # This program is distributed in the hope that it will be useful,
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 # GNU General Public License for more details.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 #
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
16 # along with this program. If not, see <https://www.gnu.org/licenses/>.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 #
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 # This program is meant for authors or maintainers which want to import
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 # modules from gnulib into their packages.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
40234
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
22 # CODING STYLE for this file:
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
23 # * Indentation: Indent by 2 spaces. Indent case clauses by 2 spaces as well.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
24 # * Shell variable references: Use double-quote around shell variable
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
25 # references always (except when word splitting is explicitly desired),
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
26 # even when you know the double-quote are not needed. This style tends to
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
27 # avoid undesired word splitting caused by omitted double-quotes (the
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
28 # number one mistake in shell scripts).
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
29 # When the referenced variable can only have a finite number of possible
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
30 # values and these values are all simple words (e.g. true and false), it's
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
31 # OK to omit the double-quotes.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
32 # * Backquotes:
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
33 # - Use backquotes like in `command`, not $(command).
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
34 # - Don't use `command` inside double-quotes. Instead assign the result of
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
35 # `command` to a variable, and use the value of the variable afterwards.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
36 # * Functions:
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
37 # - All functions that don't emulate a program or shell built-in have a name
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
38 # that starts with 'func_'.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
39 # - Document the implicit and explicit arguments of all functions, as well
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
40 # as their output variables and side effects.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
41 # * Use test condition instead of [ condition ].
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
42 # * Minimize the use of eval; when you need it, make sure the string to be
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
43 # evaluated has a very simple syntactic structure.
fab7ce42e03f gnulib-tool: Clarify the coding style.
Bruno Haible <bruno@clisp.org>
parents: 40185
diff changeset
44
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 progname=$0
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
46 package=gnulib
7322
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
47 nl='
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
48 '
9005
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
49 IFS=" "" $nl"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50
39944
eb64273b66c2 Assume Autoconf >= 2.63.
Bruno Haible <bruno@clisp.org>
parents: 39943
diff changeset
51 # You can set AUTOCONFPATH to empty if autoconf 2.63 is already in your PATH.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 AUTOCONFPATH=
5250
46a747db97f2 Comment out private settings.
Bruno Haible <bruno@clisp.org>
parents: 5237
diff changeset
53 #case $USER in
46a747db97f2 Comment out private settings.
Bruno Haible <bruno@clisp.org>
parents: 5237
diff changeset
54 # bruno )
39944
eb64273b66c2 Assume Autoconf >= 2.63.
Bruno Haible <bruno@clisp.org>
parents: 39943
diff changeset
55 # AUTOCONFBINDIR=/arch/x86-linux/gnu-inst-autoconf/2.63/bin
5250
46a747db97f2 Comment out private settings.
Bruno Haible <bruno@clisp.org>
parents: 5237
diff changeset
56 # AUTOCONFPATH="eval env PATH=${AUTOCONFBINDIR}:\$PATH "
46a747db97f2 Comment out private settings.
Bruno Haible <bruno@clisp.org>
parents: 5237
diff changeset
57 # ;;
46a747db97f2 Comment out private settings.
Bruno Haible <bruno@clisp.org>
parents: 5237
diff changeset
58 #esac
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
59
39943
b1ba0c77fa16 Assume Automake >= 1.11.
Bruno Haible <bruno@clisp.org>
parents: 39941
diff changeset
60 # You can set AUTOMAKEPATH to empty if automake 1.11 is already in your PATH.
6547
1a65fb7ddbbb Don't waste time in a recursive autoreconf.
Bruno Haible <bruno@clisp.org>
parents: 6546
diff changeset
61 AUTOMAKEPATH=
1a65fb7ddbbb Don't waste time in a recursive autoreconf.
Bruno Haible <bruno@clisp.org>
parents: 6546
diff changeset
62
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
63 # You can set GETTEXTPATH to empty if autopoint 0.15 is already in your PATH.
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
64 GETTEXTPATH=
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
65
12978
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
66 # You can set LIBTOOLPATH to empty if libtoolize 2.x is already in your PATH.
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
67 LIBTOOLPATH=
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
68
6551
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
69 # If you didn't set AUTOCONFPATH and AUTOMAKEPATH, you can also set the
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
70 # variables AUTOCONF, AUTOHEADER, ACLOCAL, AUTOMAKE, AUTORECONF individually.
6551
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
71 if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
72 AUTOCONF="${AUTOCONFPATH}autoconf"
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
73 fi
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
74 if test -z "${AUTOHEADER}" || test -n "${AUTOCONFPATH}"; then
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
75 AUTOHEADER="${AUTOCONFPATH}autoheader"
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
76 fi
6551
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
77 if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
78 ACLOCAL="${AUTOMAKEPATH}aclocal"
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
79 fi
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
80 if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
81 AUTOMAKE="${AUTOMAKEPATH}automake"
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
82 fi
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
83 if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
84 AUTORECONF="${AUTOCONFPATH}autoreconf"
d37637700b4e Make the AUTOCONF etc. commands overridable by the user.
Bruno Haible <bruno@clisp.org>
parents: 6550
diff changeset
85 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
86
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
87 # If you didn't set GETTEXTPATH, you can also set the variable AUTOPOINT.
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
88 if test -z "${AUTOPOINT}" || test -n "${GETTEXTPATH}"; then
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
89 AUTOPOINT="${GETTEXTPATH}autopoint"
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
90 fi
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
91
12978
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
92 # If you didn't set LIBTOOLPATH, you can also set the variable LIBTOOLIZE.
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
93 if test -z "${LIBTOOLIZE}" || test -n "${LIBTOOLPATH}"; then
12979
845824c37d6a gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
Simon Josefsson <simon@josefsson.org>
parents: 12978
diff changeset
94 LIBTOOLIZE="${LIBTOOLPATH}libtoolize"
12978
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
95 fi
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
96
11404
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
97 # You can set MAKE.
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
98 if test -z "${MAKE}"; then
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
99 MAKE=make
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
100 fi
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
101
11249
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
102 # When using GNU sed, turn off as many GNU extensions as possible,
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
103 # to minimize the risk of accidentally using non-portable features.
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
104 # However, do this only for gnulib-tool itself, not for the code that
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
105 # gnulib-tool generates, since we don't want "sed --posix" to leak
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
106 # into makefiles. And do it only for sed versions 4.2 or newer,
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
107 # because "sed --posix" is buggy in GNU sed 4.1.5, see
19439
8bfc20b57265 maint: shorten https://lists.gnu.org/archive/html/... links
Jim Meyering <meyering@fb.com>
parents: 19271
diff changeset
108 # <https://lists.gnu.org/r/bug-gnulib/2009-02/msg00225.html>.
11249
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
109 if (alias) > /dev/null 2>&1 \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
110 && echo | sed --posix -e d >/dev/null 2>&1 \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
111 && case `sed --version | sed -e 's/^[^0-9]*//' -e 1q` in \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
112 [1-3]* | 4.[01]*) false;; \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
113 *) true;; \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
114 esac \
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
115 ; then
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
116 # Define sed as an alias.
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
117 # It is not always possible to use aliases. Aliases are guaranteed to work
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
118 # if the executing shell is bash and either it is invoked as /bin/sh or
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
119 # is a version >= 2.0, supporting shopt. This is the common case.
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
120 # Two other approaches (use of a variable $sed or of a function func_sed
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
121 # instead of an alias) require massive, fragile code changes.
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
122 # An other approach (use of function sed) requires `which sed` - but
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
123 # 'which' is hard to emulate, due to missing "test -x" on some platforms.
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
124 if test -n "$BASH_VERSION"; then
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
125 shopt -s expand_aliases >/dev/null 2>&1
9213
6c916785c03e Try harder to enable the alias for 'sed'.
Bruno Haible <bruno@clisp.org>
parents: 9189
diff changeset
126 fi
11249
0a95b8deac2e Re-enable the use of "sed --posix" with sed >= 4.2.
Bruno Haible <bruno@clisp.org>
parents: 11232
diff changeset
127 alias sed='sed --posix'
7737
19ff03763d73 Use "sed --posix" instead of "sed" when possible.
Bruno Haible <bruno@clisp.org>
parents: 7722
diff changeset
128 fi
19ff03763d73 Use "sed --posix" instead of "sed" when possible.
Bruno Haible <bruno@clisp.org>
parents: 7722
diff changeset
129
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
130 # sed_noop is a sed expression that does nothing.
10401
4881ac7042cf Oops, typo in comment.
Bruno Haible <bruno@clisp.org>
parents: 10400
diff changeset
131 # An empty expression does not work with the native 'sed' on AIX 6.1.
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
132 sed_noop='s,x,x,'
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
133
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
134 # sed_comments is true or false, depending whether 'sed' supports comments.
13562
f304978fb062 Fix gnulib-tool sed script de-commentation for AIX sed.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 13420
diff changeset
135 # AIX 5.3 sed barfs over indented comments.
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
136 if echo fo | sed -e 's/f/g/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
137 # s/o/u/
13562
f304978fb062 Fix gnulib-tool sed script de-commentation for AIX sed.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 13420
diff changeset
138 # indented comment
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
139 s/o/e/' 2>/dev/null | grep ge > /dev/null; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
140 sed_comments=true
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
141 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
142 sed_comments=false
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
143 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
144
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
145 # func_usage
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
146 # outputs to stdout the --help usage message.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
147 func_usage ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
148 {
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
149 echo "\
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
150 Usage: gnulib-tool --list
14385
ed68f818ecca gnulib-tool: remove use of bold display in help screen
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 14323
diff changeset
151 gnulib-tool --find filename
5344
c2f5677fc6ed Initialize supplied_libname. Tweak usage message.
Bruno Haible <bruno@clisp.org>
parents: 5343
diff changeset
152 gnulib-tool --import [module1 ... moduleN]
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
153 gnulib-tool --add-import [module1 ... moduleN]
14385
ed68f818ecca gnulib-tool: remove use of bold display in help screen
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 14323
diff changeset
154 gnulib-tool --remove-import [module1 ... moduleN]
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
155 gnulib-tool --update
7484
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
156 gnulib-tool --create-testdir --dir=directory [module1 ... moduleN]
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
157 gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN]
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
158 gnulib-tool --test --dir=directory module1 ... moduleN
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
159 gnulib-tool --megatest --dir=directory [module1 ... moduleN]
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
160 gnulib-tool --extract-description module
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
161 gnulib-tool --extract-comment module
10743
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
162 gnulib-tool --extract-status module
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
163 gnulib-tool --extract-notice module
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
164 gnulib-tool --extract-applicability module
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
165 gnulib-tool --extract-filelist module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
166 gnulib-tool --extract-dependencies module
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
167 gnulib-tool --extract-recursive-dependencies module
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
168 gnulib-tool --extract-autoconf-snippet module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
169 gnulib-tool --extract-automake-snippet module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
170 gnulib-tool --extract-include-directive module
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
171 gnulib-tool --extract-link-directive module
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
172 gnulib-tool --extract-recursive-link-directive module
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
173 gnulib-tool --extract-license module
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
174 gnulib-tool --extract-maintainer module
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
175 gnulib-tool --extract-tests-module module
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
176 gnulib-tool --copy-file file [destination]
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
177
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
178 Operation modes:
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
179
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
180 --list print the available module names
14385
ed68f818ecca gnulib-tool: remove use of bold display in help screen
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 14323
diff changeset
181 --find find the modules which contain the specified file
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
182 --import import the given modules into the current package
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
183 --add-import augment the list of imports from gnulib into the
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
184 current package, by adding the given modules;
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
185 if no modules are specified, update the current
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
186 package from the current gnulib
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
187 --remove-import reduce the list of imports from gnulib into the
14385
ed68f818ecca gnulib-tool: remove use of bold display in help screen
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 14323
diff changeset
188 current package, by removing the given modules
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
189 --update update the current package, restore files omitted
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
190 from version control
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
191 --create-testdir create a scratch package with the given modules
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
192 --create-megatestdir create a mega scratch package with the given modules
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
193 one by one and all together
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
194 --test test the combination of the given modules
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
195 (recommended to use CC=\"gcc -Wall\" here)
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
196 --megatest test the given modules one by one and all together
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
197 (recommended to use CC=\"gcc -Wall\" here)
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
198 --extract-description extract the description
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
199 --extract-comment extract the comment
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
200 --extract-status extract the status (obsolete etc.)
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
201 --extract-notice extract the notice or banner
13069
5a91813baecc Addendum to 2010-02-07 commit.
Bruno Haible <bruno@clisp.org>
parents: 13067
diff changeset
202 --extract-applicability extract the applicability
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
203 --extract-filelist extract the list of files
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
204 --extract-dependencies extract the dependencies
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
205 --extract-recursive-dependencies extract the dependencies of the module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
206 and its dependencies, recursively, all
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
207 together, but without the conditions
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
208 --extract-autoconf-snippet extract the snippet for configure.ac
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
209 --extract-automake-snippet extract the snippet for library makefile
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
210 --extract-include-directive extract the #include directive
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
211 --extract-link-directive extract the linker directive
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
212 --extract-recursive-link-directive extract the linker directive of the
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
213 module and its dependencies,
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
214 recursively, all together
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
215 --extract-license report the license terms of the source files
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
216 under lib/
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
217 --extract-maintainer report the maintainer(s) inside gnulib
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
218 --extract-tests-module report the unit test module, if it exists
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
219 --copy-file copy a file that is not part of any module
16377
c06c4d94d8a4 gnulib-tool: Improve usage message.
Bruno Haible <bruno@clisp.org>
parents: 16370
diff changeset
220 --help Show this help text.
c06c4d94d8a4 gnulib-tool: Improve usage message.
Bruno Haible <bruno@clisp.org>
parents: 16370
diff changeset
221 --version Show version and authorship information.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
222
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
223 General options:
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
224
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
225 --dir=DIRECTORY Specify the target directory.
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
226 For --import, this specifies where your
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
227 configure.ac can be found. Defaults to current
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
228 directory.
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
229 --local-dir=DIRECTORY Specify a local override directory where to look
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
230 up files before looking in gnulib's directory.
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
231 --cache-modules Enable module caching optimization.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
232 --no-cache-modules Disable module caching optimization.
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
233 --verbose Increase verbosity. May be repeated.
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
234 --quiet Decrease verbosity. May be repeated.
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
235
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
236 Options for --import, --add/remove-import, --update:
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
237
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
238 --dry-run Only print what would have been done.
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
239
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
240 Options for --import, --add/remove-import:
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
241
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
242 --with-tests Include unit tests for the included modules.
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
243
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
244 Options for --create-[mega]testdir, --[mega]test:
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
245
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
246 --without-tests Don't include unit tests for the included modules.
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
247
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
248 Options for --import, --add/remove-import,
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
249 --create-[mega]testdir, --[mega]test:
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
250
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
251 --with-obsolete Include obsolete modules when they occur among the
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
252 dependencies. By default, dependencies to obsolete
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
253 modules are ignored.
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
254 --with-c++-tests Include even unit tests for C++ interoperability.
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
255 --without-c++-tests Exclude unit tests for C++ interoperability.
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
256 --with-longrunning-tests
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
257 Include even unit tests that are long-runners.
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
258 --without-longrunning-tests
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
259 Exclude unit tests that are long-runners.
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
260 --with-privileged-tests
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
261 Include even unit tests that require root
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
262 privileges.
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
263 --without-privileged-tests
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
264 Exclude unit tests that require root privileges.
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
265 --with-unportable-tests
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
266 Include even unit tests that fail on some platforms.
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
267 --without-unportable-tests
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
268 Exclude unit tests that fail on some platforms.
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
269 --with-all-tests Include all kinds of problematic unit tests.
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
270 --avoid=MODULE Avoid including the given MODULE. Useful if you
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
271 have code that provides equivalent functionality.
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
272 This option can be repeated.
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
273 --conditional-dependencies
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
274 Support conditional dependencies (may save configure
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
275 time and object code).
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
276 --no-conditional-dependencies
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
277 Don't use conditional dependencies.
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
278 --libtool Use libtool rules.
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
279 --no-libtool Don't use libtool rules.
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
280
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
281 Options for --import, --add/remove-import:
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
282
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
283 --lib=LIBRARY Specify the library name. Defaults to 'libgnu'.
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
284 --source-base=DIRECTORY
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
285 Directory relative to --dir where source code is
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
286 placed (default \"lib\").
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
287 --m4-base=DIRECTORY Directory relative to --dir where *.m4 macros are
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
288 placed (default \"m4\").
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
289 --po-base=DIRECTORY Directory relative to --dir where *.po files are
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
290 placed (default \"po\").
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
291 --doc-base=DIRECTORY Directory relative to --dir where doc files are
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
292 placed (default \"doc\").
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
293 --tests-base=DIRECTORY
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
294 Directory relative to --dir where unit tests are
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
295 placed (default \"tests\").
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
296 --aux-dir=DIRECTORY Directory relative to --dir where auxiliary build
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
297 tools are placed (default comes from configure.ac).
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
298 --gnu-make Output for GNU Make instead of for the default
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
299 Automake
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
300 --lgpl[=2|=3orGPLv2|=3]
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
301 Abort if modules aren't available under the LGPL.
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
302 Also modify license template from GPL to LGPL.
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
303 The version number of the LGPL can be specified;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
304 the default is currently LGPLv3.
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
305 --makefile-name=NAME Name of makefile in the source-base and tests-base
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
306 directories (default \"Makefile.am\", or
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
307 \"Makefile.in\" if --gnu-make).
7068
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
308 --macro-prefix=PREFIX Specify the prefix of the macros 'gl_EARLY' and
ec1cfcfd352a Revert the --help output reordering.
Bruno Haible <bruno@clisp.org>
parents: 7067
diff changeset
309 'gl_INIT'. Default is 'gl'.
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
310 --po-domain=NAME Specify the prefix of the i18n domain. Usually use
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
311 the package name. A suffix '-gnulib' is appended.
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
312 --witness-c-macro=NAME Specify the C macro that is defined when the
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
313 sources in this directory are compiled or used.
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
314 --vc-files Update version control related files.
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
315 --no-vc-files Don't update version control related files
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
316 (.gitignore and/or .cvsignore).
7069
0fb5ef99e00f Split the --help output into several paragraphs.
Bruno Haible <bruno@clisp.org>
parents: 7068
diff changeset
317
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
318 Options for --create-[mega]testdir, --[mega]test:
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
319
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
320 --single-configure Generate a single configure file, not a separate
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
321 configure file for the tests directory.
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
322
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
323 Options for --import, --add/remove-import, --update,
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
324 --create-[mega]testdir, --[mega]test:
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
325
6966
42730fffa002 help message tweaks
Karl Berry <karl@freefriends.org>
parents: 6955
diff changeset
326 -s, --symbolic, --symlink Make symbolic links instead of copying files.
7643
d67f9dc6019d New option --local-symlink.
Bruno Haible <bruno@clisp.org>
parents: 7642
diff changeset
327 --local-symlink Make symbolic links instead of copying files, only
d67f9dc6019d New option --local-symlink.
Bruno Haible <bruno@clisp.org>
parents: 7642
diff changeset
328 for files from the local override directory.
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
329 -h, --hardlink Make hard links instead of copying files.
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
330 --local-hardlink Make hard links instead of copying files, only
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
331 for files from the local override directory.
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
332
13705
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
333 Options for --import, --add/remove-import, --update:
ed2bd36db406 gnulib-tool: Fix --help output.
Bruno Haible <bruno@clisp.org>
parents: 13660
diff changeset
334
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
335 -S, --more-symlinks Make symbolic links instead of copying files, and
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
336 don't replace copyright notices.
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
337 -H, --more-hardlinks Make hard links instead of copying files, and
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
338 don't replace copyright notices.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
339
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
340 Report bugs to <bug-gnulib@gnu.org>."
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
341 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
342
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
343 # func_version
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
344 # outputs to stdout the --version message.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
345 func_version ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
346 {
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
347 func_gnulib_dir
9805
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
348 if test -d "$gnulib_dir"/.git \
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
349 && (git --version) >/dev/null 2>/dev/null \
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
350 && (date --version) >/dev/null 2>/dev/null; then
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
351 # gnulib checked out from git.
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
352 sed_extract_first_date='/^Date/{
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
353 s/^Date:[ ]*//p
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
354 q
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
355 }'
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
356 date=`cd "$gnulib_dir" && git log ChangeLog | sed -n -e "$sed_extract_first_date"`
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
357 # Turn "Fri Mar 21 07:16:51 2008 -0600" into "Mar 21 2008 07:16:51 -0600".
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
358 sed_year_before_time='s/^[^ ]* \([^ ]*\) \([0-9]*\) \([0-9:]*\) \([0-9]*\) /\1 \2 \4 \3 /'
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
359 date=`echo "$date" | sed -e "$sed_year_before_time"`
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
360 # Use GNU date to compute the time in GMT.
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
361 date=`date -d "$date" -u +"%Y-%m-%d %H:%M:%S"`
10495
78d1bdfaa67e Make "gnulib-tool --version" work from any directory.
Bruno Haible <bruno@clisp.org>
parents: 10479
diff changeset
362 version=' '`cd "$gnulib_dir" && ./build-aux/git-version-gen /dev/null | sed -e 's/-dirty/-modified/'`
9805
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
363 else
17378
1d9362a18c34 Assume gnulib is checked out from Git, not CVS
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 17269
diff changeset
364 # gnulib copy without versioning information.
1d9362a18c34 Assume gnulib is checked out from Git, not CVS
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 17269
diff changeset
365 date=`sed -e 's/ .*//;q' "$gnulib_dir"/ChangeLog`
9805
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
366 version=
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
367 fi
12417
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
368 year=`"$gnulib_dir"/build-aux/mdate-sh "$self_abspathname" | sed -e 's,^.* ,,'`
7347
d86464f614f7 * gnulib-tool (func_version): Create output all at once. This
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7335
diff changeset
369 echo "\
9805
d3af04de9f0b Tweak "gnulib --version" output.
Bruno Haible <bruno@clisp.org>
parents: 9804
diff changeset
370 gnulib-tool (GNU $package $date)$version
7347
d86464f614f7 * gnulib-tool (func_version): Create output all at once. This
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7335
diff changeset
371 Copyright (C) $year Free Software Foundation, Inc.
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
372 License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
373 This is free software: you are free to change and redistribute it.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
374 There is NO WARRANTY, to the extent permitted by law.
16802
b21cba808f11 gnulib-tool: Fix list of authors.
Bruno Haible <bruno@clisp.org>
parents: 16714
diff changeset
375 "
b21cba808f11 gnulib-tool: Fix list of authors.
Bruno Haible <bruno@clisp.org>
parents: 16714
diff changeset
376 printf "Written by %s, %s, and %s.\n" "Bruno Haible" "Paul Eggert" "Simon Josefsson"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
377 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
378
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
379 # func_emit_copyright_notice
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
380 # outputs to stdout a header for a generated file.
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
381 func_emit_copyright_notice ()
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
382 {
12417
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
383 sed -n -e '/Copyright/ {
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
384 p
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
385 q
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
386 }' < "$self_abspathname"
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
387 echo "#"
15790
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
388 echo "# This file is free software; you can redistribute it and/or modify"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
389 echo "# it under the terms of the GNU General Public License as published by"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
390 echo "# the Free Software Foundation; either version 3 of the License, or"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
391 echo "# (at your option) any later version."
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
392 echo "#"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
393 echo "# This file is distributed in the hope that it will be useful,"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
394 echo "# but WITHOUT ANY WARRANTY; without even the implied warranty of"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
395 echo "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
396 echo "# GNU General Public License for more details."
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
397 echo "#"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
398 echo "# You should have received a copy of the GNU General Public License"
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
399 echo "# along with this file. If not, see <https://www.gnu.org/licenses/>."
15790
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
400 echo "#"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
401 echo "# As a special exception to the GNU General Public License,"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
402 echo "# this file may be distributed as part of a program that"
ccb791a4a8a7 gnulib: use more-standard license notice wording
Paul Eggert <eggert@cs.ucla.edu>
parents: 15482
diff changeset
403 echo "# contains a configuration script generated by Autoconf, under"
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
404 echo "# the same distribution terms as the rest of that program."
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
405 echo "#"
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
406 echo "# Generated by gnulib-tool."
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
407 }
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
408
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
409 # func_exit STATUS
10453
483ea2002278 Update comment.
Bruno Haible <bruno@clisp.org>
parents: 10401
diff changeset
410 # exits with a given status.
483ea2002278 Update comment.
Bruno Haible <bruno@clisp.org>
parents: 10401
diff changeset
411 # This function needs to be used, rather than 'exit', when a 'trap' handler is
483ea2002278 Update comment.
Bruno Haible <bruno@clisp.org>
parents: 10401
diff changeset
412 # in effect that refers to $?.
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
413 func_exit ()
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
414 {
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
415 (exit $1); exit $1
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
416 }
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
417
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
418 # func_gnulib_dir
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
419 # locates the directory where the gnulib repository lives
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
420 # Input:
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
421 # - progname name of this program
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
422 # Sets variables
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
423 # - self_abspathname absolute pathname of gnulib-tool
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
424 # - gnulib_dir absolute pathname of gnulib repository
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
425 func_gnulib_dir ()
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
426 {
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
427 case "$progname" in
17812
f84b5489521b gnulib-tool: recognize x:* as an absolute path
KO Myung-Hun <komh78@gmail.com>
parents: 17754
diff changeset
428 /* | ?:*) self_abspathname="$progname" ;;
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
429 */*) self_abspathname=`pwd`/"$progname" ;;
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
430 *)
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
431 # Look in $PATH.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
432 # Iterate through the elements of $PATH.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
433 # We use IFS=: instead of
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
434 # for d in `echo ":$PATH:" | sed -e 's/:::*/:.:/g' | sed -e 's/:/ /g'`
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
435 # because the latter does not work when some PATH element contains spaces.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
436 # We use a canonicalized $pathx instead of $PATH, because empty PATH
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
437 # elements are by definition equivalent to '.', however field splitting
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
438 # according to IFS=: loses empty fields in many shells:
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
439 # - /bin/sh on OSF/1 and Solaris loses all empty fields (at the
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
440 # beginning, at the end, and in the middle),
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
441 # - /bin/sh on IRIX and /bin/ksh on IRIX and OSF/1 lose empty fields
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
442 # at the beginning and at the end,
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
443 # - GNU bash, /bin/sh on AIX and HP-UX, and /bin/ksh on AIX, HP-UX,
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
444 # Solaris lose empty fields at the end.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
445 # The 'case' statement is an optimization, to avoid evaluating the
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
446 # explicit canonicalization command when $PATH contains no empty fields.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
447 self_abspathname=
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
448 if test "$PATH_SEPARATOR" = ";"; then
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
449 # On Windows, programs are searched in "." before $PATH.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
450 pathx=".;$PATH"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
451 else
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
452 # On Unix, we have to convert empty PATH elements to ".".
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
453 pathx="$PATH"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
454 case :$PATH: in
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
455 *::*)
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
456 pathx=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'`
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
457 ;;
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
458 esac
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
459 fi
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
460 save_IFS="$IFS"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
461 IFS="$PATH_SEPARATOR"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
462 for d in $pathx; do
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
463 IFS="$save_IFS"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
464 test -z "$d" && d=.
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
465 if test -x "$d/$progname" && test ! -d "$d/$progname"; then
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
466 self_abspathname="$d/$progname"
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
467 break
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
468 fi
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
469 done
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
470 IFS="$save_IFS"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
471 if test -z "$self_abspathname"; then
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
472 func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?"
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
473 fi
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
474 ;;
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
475 esac
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
476 while test -h "$self_abspathname"; do
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
477 # Resolve symbolic link.
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
478 linkval=`func_readlink "$self_abspathname"`
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
479 test -n "$linkval" || break
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
480 case "$linkval" in
17812
f84b5489521b gnulib-tool: recognize x:* as an absolute path
KO Myung-Hun <komh78@gmail.com>
parents: 17754
diff changeset
481 /* | ?:* ) self_abspathname="$linkval" ;;
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
482 * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;;
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
483 esac
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
484 done
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
485 gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
486 }
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
487
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
488 # func_tmpdir
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
489 # creates a temporary directory.
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
490 # Input:
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
491 # - progname name of this program
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
492 # Sets variable
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
493 # - tmp pathname of freshly created temporary directory
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
494 func_tmpdir ()
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
495 {
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
496 # Use the environment variable TMPDIR, falling back to /tmp. This allows
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
497 # users to specify a different temporary directory, for example, if their
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
498 # /tmp is filled up or too small.
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
499 : ${TMPDIR=/tmp}
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
500 {
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
501 # Use the mktemp program if available. If not available, hide the error
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
502 # message.
6581
bc61a0c9a750 * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
Paul Eggert <eggert@cs.ucla.edu>
parents: 6570
diff changeset
503 tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
504 test -n "$tmp" && test -d "$tmp"
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
505 } ||
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
506 {
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
507 # Use a simple mkdir command. It is guaranteed to fail if the directory
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
508 # already exists. $RANDOM is bash specific and expands to empty in shells
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
509 # other than bash, ksh and zsh. Its use does not increase security;
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
510 # rather, it minimizes the probability of failure in a very cluttered /tmp
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
511 # directory.
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
512 tmp=$TMPDIR/gl$$-$RANDOM
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
513 (umask 077 && mkdir "$tmp")
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
514 } ||
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
515 {
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
516 echo "$progname: cannot create a temporary directory in $TMPDIR" >&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
517 func_exit 1
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
518 }
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
519 }
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
520
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
521 # func_append var value
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
522 # appends the given value to the shell variable var.
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
523 if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
524 # Use bash's += operator. It reduces complexity of appending repeatedly to
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
525 # a single variable from O(n^2) to O(n).
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
526 func_append ()
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
527 {
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
528 eval "$1+=\"\$2\""
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
529 }
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
530 fast_func_append=true
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
531 else
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
532 func_append ()
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
533 {
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
534 eval "$1=\"\$$1\$2\""
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
535 }
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
536 fast_func_append=false
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
537 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
538
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
539 # func_remove_prefix var prefix
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
540 # removes the given prefix from the value of the shell variable var.
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
541 # var should be the name of a shell variable.
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
542 # Its value should not contain a newline and not start or end with whitespace.
11037
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
543 # prefix should not contain the characters "$`\{}[]^|.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
544 if ( foo=bar; eval 'test "${foo#b}" = ar' ) >/dev/null 2>&1; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
545 func_remove_prefix ()
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
546 {
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
547 eval "$1=\${$1#\$2}"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
548 }
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
549 fast_func_remove_prefix=true
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
550 else
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
551 func_remove_prefix ()
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
552 {
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
553 eval "value=\"\$$1\""
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
554 prefix="$2"
11037
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
555 case "$prefix" in
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
556 *.*)
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
557 sed_escape_dots='s/\([.]\)/\\\1/g'
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
558 prefix=`echo "$prefix" | sed -e "$sed_escape_dots"`
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
559 ;;
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
560 esac
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
561 value=`echo "$value" | sed -e "s|^${prefix}||"`
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
562 eval "$1=\"\$value\""
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
563 }
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
564 fast_func_remove_prefix=false
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
565 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
566
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
567 # Determine whether we should use ':' or ';' as PATH_SEPARATOR.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
568 func_determine_path_separator ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
569 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
570 if test "${PATH_SEPARATOR+set}" != set; then
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
571 # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
572 # contains only /bin. Note that ksh looks also at the FPATH variable,
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
573 # so we have to set that as well for the test.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
574 PATH_SEPARATOR=:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
575 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
576 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
577 || PATH_SEPARATOR=';'
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
578 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
579 fi
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
580 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
581
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
582 # func_path_append pathvar directory
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
583 # appends directory to pathvar, delimiting directories by PATH_SEPARATOR.
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
584 func_path_append ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
585 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
586 if eval "test -n \"\$$1\""; then
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
587 func_append "$1" "$PATH_SEPARATOR$2"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
588 else
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
589 eval "$1=\$2"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
590 fi
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
591 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
592
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
593 # func_path_foreach_inner
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
594 # helper for func_path_foreach because we need new 'args' array
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
595 # Input:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
596 # - fpf_dir directory from local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
597 # - fpf_cb callback to be run for fpf_dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
598 func_path_foreach_inner ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
599 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
600 set %start% "$@"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
601 for _fpf_arg
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
602 do
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
603 case "$_fpf_arg" in
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
604 %start%)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
605 set dummy
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
606 ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
607 %dir%)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
608 set "$@" "$fpf_dir"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
609 ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
610 *)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
611 set "$@" "$_fpf_arg"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
612 ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
613 esac
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
614 done
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
615 shift
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
616
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
617 "$fpf_cb" "$@"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
618 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
619
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
620 # func_path_foreach path method args
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
621 # Execute method for each directory in path. The method will be called
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
622 # like `method args` while any argument '%dir%' within args will be replaced
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
623 # with processed directory from path.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
624 func_path_foreach ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
625 {
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
626 fpf_dirs="$1"; shift
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
627 fpf_cb="$1"; shift
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
628 fpf_rc=false
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
629
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
630 fpf_save_IFS="$IFS"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
631 IFS="$PATH_SEPARATOR"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
632 for fpf_dir in $fpf_dirs
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
633 do
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
634 IFS="$fpf_save_IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
635 func_path_foreach_inner "$@" && fpf_rc=:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
636 done
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
637 IFS="$fpf_save_IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
638 $fpf_rc
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
639 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
640
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
641 # func_remove_suffix var suffix
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
642 # removes the given suffix from the value of the shell variable var.
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
643 # var should be the name of a shell variable.
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
644 # Its value should not contain a newline and not start or end with whitespace.
11037
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
645 # suffix should not contain the characters "$`\{}[]^|.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
646 if ( foo=bar; eval 'test "${foo%r}" = ba' ) >/dev/null 2>&1; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
647 func_remove_suffix ()
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
648 {
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
649 eval "$1=\${$1%\$2}"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
650 }
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
651 fast_func_remove_suffix=true
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
652 else
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
653 func_remove_suffix ()
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
654 {
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
655 eval "value=\"\$$1\""
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
656 suffix="$2"
11037
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
657 case "$suffix" in
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
658 *.*)
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
659 sed_escape_dots='s/\([.]\)/\\\1/g'
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
660 suffix=`echo "$suffix" | sed -e "$sed_escape_dots"`
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
661 ;;
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
662 esac
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
663 value=`echo "$value" | sed -e "s|${suffix}\$||"`
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
664 eval "$1=\"\$value\""
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
665 }
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
666 fast_func_remove_suffix=false
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
667 fi
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
668
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
669 # func_fatal_error message
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
670 # outputs to stderr a fatal error message, and terminates the program.
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
671 # Input:
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
672 # - progname name of this program
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
673 func_fatal_error ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
674 {
10501
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
675 echo "$progname: *** $1" 1>&2
4e04aaeb17f9 Fix previous patch, and tweak references to $0.
Eric Blake <ebb9@byu.net>
parents: 10495
diff changeset
676 echo "$progname: *** Stop." 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
677 func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
678 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
679
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
680 # func_warning message
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
681 # Outputs to stderr a warning message,
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
682 func_warning ()
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
683 {
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
684 echo "gnulib-tool: warning: $1" 1>&2
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
685 }
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
686
6248
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
687 # func_readlink SYMLINK
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
688 # outputs the target of the given symlink.
16925
eb8ffcf6fd24 Do use readlink if available
Bernd Jendrissek <bernd.jendrissek@gmail.com>
parents: 16808
diff changeset
689 if (type readlink) > /dev/null 2>&1; then
6248
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
690 func_readlink ()
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
691 {
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
692 # Use the readlink program from GNU coreutils.
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
693 readlink "$1"
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
694 }
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
695 else
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
696 func_readlink ()
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
697 {
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
698 # Use two sed invocations. A single sed -n -e 's,^.* -> \(.*\)$,\1,p'
6263
9750529a8cf5 Sort in a locale-independent way.
Bruno Haible <bruno@clisp.org>
parents: 6262
diff changeset
699 # would do the wrong thing if the link target contains " -> ".
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
700 LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p'
6248
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
701 }
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
702 fi
ba937772eda4 Portability fix: readlink is not portable.
Bruno Haible <bruno@clisp.org>
parents: 6247
diff changeset
703
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
704 # func_relativize DIR1 DIR2
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
705 # computes a relative pathname RELDIR such that DIR1/RELDIR = DIR2.
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
706 # Input:
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
707 # - DIR1 relative pathname, relative to the current directory
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
708 # - DIR2 relative pathname, relative to the current directory
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
709 # Output:
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
710 # - reldir relative pathname of DIR2, relative to DIR1
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
711 func_relativize ()
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
712 {
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
713 dir0=`pwd`
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
714 dir1="$1"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
715 dir2="$2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
716 sed_first='s,^\([^/]*\)/.*$,\1,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
717 sed_rest='s,^[^/]*/*,,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
718 sed_last='s,^.*/\([^/]*\)$,\1,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
719 sed_butlast='s,/*[^/]*$,,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
720 while test -n "$dir1"; do
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
721 first=`echo "$dir1" | sed -e "$sed_first"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
722 if test "$first" != "."; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
723 if test "$first" = ".."; then
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
724 dir2=`echo "$dir0" | sed -e "$sed_last"`/"$dir2"
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
725 dir0=`echo "$dir0" | sed -e "$sed_butlast"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
726 else
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
727 first2=`echo "$dir2" | sed -e "$sed_first"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
728 if test "$first2" = "$first"; then
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
729 dir2=`echo "$dir2" | sed -e "$sed_rest"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
730 else
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
731 dir2="../$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
732 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
733 dir0="$dir0"/"$first"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
734 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
735 fi
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
736 dir1=`echo "$dir1" | sed -e "$sed_rest"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
737 done
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
738 reldir="$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
739 }
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
740
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
741 # func_relconcat DIR1 DIR2
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
742 # computes a relative pathname DIR1/DIR2, with obvious simplifications.
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
743 # Input:
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
744 # - DIR1 relative pathname, relative to the current directory
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
745 # - DIR2 relative pathname, relative to DIR1
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
746 # Output:
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
747 # - relconcat DIR1/DIR2, relative to the current directory
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
748 func_relconcat ()
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
749 {
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
750 dir1="$1"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
751 dir2="$2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
752 sed_first='s,^\([^/]*\)/.*$,\1,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
753 sed_rest='s,^[^/]*/*,,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
754 sed_last='s,^.*/\([^/]*\)$,\1,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
755 sed_butlast='s,/*[^/]*$,,'
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
756 while true; do
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
757 first=`echo "$dir2" | sed -e "$sed_first"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
758 if test "$first" = "."; then
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
759 dir2=`echo "$dir2" | sed -e "$sed_rest"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
760 if test -z "$dir2"; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
761 relconcat="$dir1"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
762 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
763 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
764 else
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
765 last=`echo "$dir1" | sed -e "$sed_last"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
766 while test "$last" = "."; do
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
767 dir1=`echo "$dir1" | sed -e "$sed_butlast"`
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
768 last=`echo "$dir1" | sed -e "$sed_last"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
769 done
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
770 if test -z "$dir1"; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
771 relconcat="$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
772 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
773 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
774 if test "$first" = ".."; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
775 if test "$last" = ".."; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
776 relconcat="$dir1/$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
777 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
778 fi
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
779 dir1=`echo "$dir1" | sed -e "$sed_butlast"`
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
780 dir2=`echo "$dir2" | sed -e "$sed_rest"`
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
781 if test -z "$dir1"; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
782 relconcat="$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
783 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
784 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
785 if test -z "$dir2"; then
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
786 relconcat="$dir1"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
787 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
788 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
789 else
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
790 relconcat="$dir1/$dir2"
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
791 break
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
792 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
793 fi
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
794 done
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
795 }
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
796
18214
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
797 # func_ln_s SRC DEST
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
798 # Like ln -s, except use cp -p if ln -s fails.
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
799 func_ln_s ()
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
800 {
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
801 ln -s "$1" "$2" || {
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
802 echo "$progname: ln -s failed; falling back on cp -p" >&2
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
803
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
804 case "$1" in
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
805 /* | ?:*) # SRC is absolute.
18951
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
806 cp_src="$1" ;;
18214
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
807 *) # SRC is relative to the directory of DEST.
18951
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
808 case "$2" in
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
809 */*) cp_src="${2%/*}/$1" ;;
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
810 *) cp_src="$1" ;;
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
811 esac
232f131e1d0f gnulib-tool: Fix bug in func_ln_s, from 2016-01-15.
Bruno Haible <bruno@clisp.org>
parents: 18937
diff changeset
812 ;;
18214
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
813 esac
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
814
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
815 cp -p "$cp_src" "$2"
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
816 }
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
817 }
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
818
18952
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
819 # func_symlink_target SRC DEST
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
820 # Determines LINK_TARGET such that "ln -s LINK_TARGET DEST" will create a
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
821 # symbolic link DEST that points to SRC.
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
822 # Output:
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
823 # - link_target link target, relative to the directory of DEST
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
824 func_symlink_target ()
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
825 {
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
826 case "$1" in
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
827 /* | ?:*)
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
828 link_target="$1" ;;
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
829 *) # SRC is relative.
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
830 case "$2" in
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
831 /* | ?:*)
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
832 link_target="`pwd`/$1" ;;
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
833 *) # DEST is relative too.
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
834 ln_destdir=`echo "$2" | sed -e 's,[^/]*$,,'`
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
835 test -n "$ln_destdir" || ln_destdir="."
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
836 func_relativize "$ln_destdir" "$1"
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
837 link_target="$reldir"
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
838 ;;
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
839 esac
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
840 ;;
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
841 esac
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
842 }
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
843
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
844 # func_symlink SRC DEST
18214
582ba937cae1 gnulib-tool: don't assume ln -s works
Paul Eggert <eggert@cs.ucla.edu>
parents: 18189
diff changeset
845 # Like func_ln_s, except that SRC is given relative to the current directory (or
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
846 # absolute), not given relative to the directory of DEST.
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
847 func_symlink ()
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
848 {
18952
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
849 func_symlink_target "$1" "$2"
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
850 func_ln_s "$link_target" "$2"
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
851 }
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
852
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
853 # func_symlink_if_changed SRC DEST
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
854 # Like func_symlink, but avoids munging timestamps if the link is correct.
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
855 # SRC is given relative to the current directory (or absolute).
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
856 func_symlink_if_changed ()
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
857 {
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
858 if test $# -ne 2; then
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
859 echo "usage: func_symlink_if_changed SRC DEST" >&2
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
860 fi
18952
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
861 func_symlink_target "$1" "$2"
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
862 ln_target=`func_readlink "$2"`
18952
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
863 if test -h "$2" && test "$link_target" = "$ln_target"; then
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
864 :
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
865 else
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
866 rm -f "$2"
18952
2f7ab9aaa825 gnulib-tool: Fix bug in func_symlink_if_changed, from 2006-11-13.
Bruno Haible <bruno@clisp.org>
parents: 18951
diff changeset
867 func_ln_s "$link_target" "$2"
7642
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
868 fi
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
869 }
0878abcc59c9 Fix the symlinks installed by the --symlink option.
Bruno Haible <bruno@clisp.org>
parents: 7641
diff changeset
870
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
871 # func_hardlink SRC DEST
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
872 # Like ln, except use cp -p if ln fails.
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
873 # SRC is given relative to the current directory (or absolute).
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
874 func_hardlink ()
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
875 {
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
876 ln "$1" "$2" || {
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
877 echo "$progname: ln failed; falling back on cp -p" >&2
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
878 cp -p "$1" "$2"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
879 }
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
880 }
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
881
12882
4c2d2e457224 Typo in comment.
Bruno Haible <bruno@clisp.org>
parents: 12881
diff changeset
882 # Ensure an 'echo' command that
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
883 # 1. does not interpret backslashes and
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
884 # 2. does not print an error message "broken pipe" when writing into a pipe
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
885 # with no writers.
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
886 #
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
887 # Test cases for problem 1:
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
888 # echo '\n' | wc -l prints 1 when OK, 2 when KO
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
889 # echo '\t' | grep t > /dev/null has return code 0 when OK, 1 when KO
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
890 # Test cases for problem 2:
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
891 # echo hi | true frequently prints
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
892 # "bash: echo: write error: Broken pipe"
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
893 # to standard error in bash 3.2.
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
894 #
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
895 # Problem 1 is a weird heritage from SVR4. BSD got it right (except that
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
896 # BSD echo interprets '-n' as an option, which is also not desirable).
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
897 # Nowadays the problem occurs in 4 situations:
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
898 # - in bash, when the shell option xpg_echo is set (bash >= 2.04)
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
899 # or when it was built with --enable-usg-echo-default (bash >= 2.0)
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
900 # or when it was built with DEFAULT_ECHO_TO_USG (bash < 2.0),
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
901 # - in zsh, when sh-emulation is not set,
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
902 # - in ksh (e.g. AIX /bin/sh and Solaris /usr/xpg4/bin/sh are ksh instances,
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
903 # and HP-UX /bin/sh and IRIX /bin/sh behave similarly),
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
904 # - in Solaris /bin/sh and OSF/1 /bin/sh.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
905 # We try the following workarounds:
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
906 # - for all: respawn using $CONFIG_SHELL if that is set and works.
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
907 # - for bash >= 2.04: unset the shell option xpg_echo.
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
908 # - for bash >= 2.0: define echo to a function that uses the printf built-in.
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
909 # - for bash < 2.0: define echo to a function that uses cat of a here document.
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
910 # - for zsh: turn sh-emulation on.
9008
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
911 # - for ksh: alias echo to 'print -r'.
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
912 # - for ksh: alias echo to a function that uses cat of a here document.
9008
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
913 # - for Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh and rely on
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
914 # the ksh workaround.
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
915 # - otherwise: respawn using /bin/sh and rely on the workarounds.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
916 # When respawning, we pass --no-reexec as first argument, so as to avoid
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
917 # turning this script into a fork bomb in unlucky situations.
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
918 #
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
919 # Problem 2 is specific to bash 3.2 and affects the 'echo' built-in, but not
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
920 # the 'printf' built-in. See
19439
8bfc20b57265 maint: shorten https://lists.gnu.org/archive/html/... links
Jim Meyering <meyering@fb.com>
parents: 19271
diff changeset
921 # <https://lists.gnu.org/r/bug-bash/2008-12/msg00050.html>
8bfc20b57265 maint: shorten https://lists.gnu.org/archive/html/... links
Jim Meyering <meyering@fb.com>
parents: 19271
diff changeset
922 # <https://lists.gnu.org/r/bug-gnulib/2010-02/msg00154.html>
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
923 # The workaround is: define echo to a function that uses the printf built-in.
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
924 have_echo=
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
925 if echo '\t' | grep t > /dev/null; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
926 have_echo=yes # Lucky!
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
927 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
928 # Try the workarounds.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
929 # Respawn using $CONFIG_SHELL if that is set and works.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
930 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
931 && test "X$1" != "X--no-reexec" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
932 && test -n "$CONFIG_SHELL" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
933 && test -f "$CONFIG_SHELL" \
11919
6a1268d2cf2a Fix test whether $CONFIG_SHELL has a working 'echo' command.
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 11737
diff changeset
934 && $CONFIG_SHELL -c "echo '\\t' | grep t > /dev/null"; then
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
935 exec $CONFIG_SHELL "$0" --no-reexec "$@"
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
936 exit 127
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
937 fi
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
938 # For bash >= 2.04: unset the shell option xpg_echo.
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
939 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
940 && test -n "$BASH_VERSION" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
941 && (shopt -o xpg_echo; echo '\t' | grep t > /dev/null) 2>/dev/null; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
942 shopt -o xpg_echo
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
943 have_echo=yes
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
944 fi
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
945 # For bash >= 2.0: define echo to a function that uses the printf built-in.
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
946 # For bash < 2.0: define echo to a function that uses cat of a here document.
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
947 # (There is no win in using 'printf' over 'cat' if it is not a shell built-in.)
12903
82f649e8c371 Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
Bruno Haible <bruno@clisp.org>
parents: 12882
diff changeset
948 # Also handle problem 2, specific to bash 3.2, here.
82f649e8c371 Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
Bruno Haible <bruno@clisp.org>
parents: 12882
diff changeset
949 if { test -z "$have_echo" \
82f649e8c371 Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
Bruno Haible <bruno@clisp.org>
parents: 12882
diff changeset
950 || case "$BASH_VERSION" in 3.2*) true;; *) false;; esac; \
82f649e8c371 Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
Bruno Haible <bruno@clisp.org>
parents: 12882
diff changeset
951 } \
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
952 && test -n "$BASH_VERSION"; then \
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
953 if type printf 2>/dev/null | grep / > /dev/null; then
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
954 # 'printf' is not a shell built-in.
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
955 echo ()
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
956 {
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
957 cat <<EOF
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
958 $*
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
959 EOF
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
960 }
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
961 else
9007
620c0e20f9db Tweak comment.
Bruno Haible <bruno@clisp.org>
parents: 9006
diff changeset
962 # 'printf' is a shell built-in.
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
963 echo ()
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
964 {
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
965 printf '%s\n' "$*"
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
966 }
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
967 fi
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
968 if echo '\t' | grep t > /dev/null; then
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
969 have_echo=yes
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
970 fi
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
971 fi
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
972 # For zsh: turn sh-emulation on.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
973 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
974 && test -n "$ZSH_VERSION" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
975 && (emulate sh) >/dev/null 2>&1; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
976 emulate sh
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
977 fi
9008
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
978 # For ksh: alias echo to 'print -r'.
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
979 if test -z "$have_echo" \
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
980 && (type print) >/dev/null 2>&1; then
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
981 # A 'print' command exists.
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
982 if type print 2>/dev/null | grep / > /dev/null; then
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
983 :
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
984 else
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
985 # 'print' is a shell built-in.
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
986 if (print -r '\told' | grep told > /dev/null) 2>/dev/null; then
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
987 # 'print' is the ksh shell built-in.
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
988 alias echo='print -r'
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
989 fi
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
990 fi
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
991 fi
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
992 if test -z "$have_echo" \
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
993 && echo '\t' | grep t > /dev/null; then
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
994 have_echo=yes
78f53a569f31 Make use of ksh's 'print' built-in.
Bruno Haible <bruno@clisp.org>
parents: 9007
diff changeset
995 fi
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
996 # For ksh: alias echo to a function that uses cat of a here document.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
997 # The ksh manual page says:
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
998 # "Aliasing is performed when scripts are read, not while they are executed.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
999 # Therefore, for an alias to take effect, the alias definition command has
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1000 # to be executed before the command which references the alias is read."
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1001 # Because of this, we have to play strange tricks with have_echo, to ensure
9006
0df4abf0cce4 Add better support for bash versions < 2.04.
Bruno Haible <bruno@clisp.org>
parents: 9005
diff changeset
1002 # that the top-level statement containing the test starts after the 'alias'
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1003 # command.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1004 if test -z "$have_echo"; then
13658
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1005 bsd_echo ()
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1006 {
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1007 cat <<EOF
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1008 $*
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1009 EOF
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1010 }
13658
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1011 if (alias echo=bsd_echo) 2>/dev/null; then
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1012 alias echo=bsd_echo 2>/dev/null
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1013 fi
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1014 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1015 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1016 && echo '\t' | grep t > /dev/null; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1017 have_echo=yes
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1018 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1019 if test -z "$have_echo"; then
13658
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1020 if (alias echo=bsd_echo) 2>/dev/null; then
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1021 unalias echo 2>/dev/null
a597697ae97c gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
Bruno Haible <bruno@clisp.org>
parents: 13650
diff changeset
1022 fi
9003
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1023 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1024 # For Solaris /bin/sh and OSF/1 /bin/sh: respawn using /bin/ksh.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1025 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1026 && test "X$1" != "X--no-reexec" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1027 && test -f /bin/ksh; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1028 exec /bin/ksh "$0" --no-reexec "$@"
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1029 exit 127
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1030 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1031 # Otherwise: respawn using /bin/sh.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1032 if test -z "$have_echo" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1033 && test "X$1" != "X--no-reexec" \
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1034 && test -f /bin/sh; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1035 exec /bin/sh "$0" --no-reexec "$@"
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1036 exit 127
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1037 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1038 if test -z "$have_echo"; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1039 func_fatal_error "Shell does not support 'echo' correctly. Please install GNU bash and set the environment variable CONFIG_SHELL to point to it."
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1040 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1041 if echo '\t' | grep t > /dev/null; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1042 : # Works fine now.
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1043 else
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1044 func_fatal_error "Shell does not support 'echo' correctly. Workaround does not work. Please report this as a bug to bug-gnulib@gnu.org."
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1045 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1046 if test "X$1" = "X--no-reexec"; then
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1047 shift
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1048 fi
952d16aa4c29 Ensure a POSIX:2001 compliant 'echo' command.
Bruno Haible <bruno@clisp.org>
parents: 9001
diff changeset
1049
17530
c9e3d7edb7cf gnulib-tool: protect against CDPATH
Jim Meyering <meyering@fb.com>
parents: 17385
diff changeset
1050 # Unset CDPATH. Otherwise, output from 'cd dir' can surprise callers.
c9e3d7edb7cf gnulib-tool: protect against CDPATH
Jim Meyering <meyering@fb.com>
parents: 17385
diff changeset
1051 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
c9e3d7edb7cf gnulib-tool: protect against CDPATH
Jim Meyering <meyering@fb.com>
parents: 17385
diff changeset
1052
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1053 # Determine the path separator early because the following option parsing code
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1054 # requires that.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1055 func_determine_path_separator
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1056
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1057 # Command-line option processing.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1058 # Removes the OPTIONS from the arguments. Sets the variables:
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1059 # - mode one of: list, find, import, add-import, remove-import,
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1060 # update, create-testdir, create-megatestdir, test, megatest,
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1061 # copy-file
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1062 # - destdir from --dir
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1063 # - local_gnulib_path from --local-dir, highest priority dir comes first
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1064 # - modcache true or false, from --cache-modules/--no-cache-modules
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1065 # - verbose integer, default 0, inc/decremented by --verbose/--quiet
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
1066 # - libname, supplied_libname from --lib
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1067 # - sourcebase from --source-base
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1068 # - m4base from --m4-base
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1069 # - pobase from --po-base
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1070 # - docbase from --doc-base
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1071 # - testsbase from --tests-base
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1072 # - auxdir from --aux-dir
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1073 # - inctests true if --with-tests was given, false if --without-tests
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1074 # was given, blank otherwise
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1075 # - incobsolete true if --with-obsolete was given, blank otherwise
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1076 # - inc_cxx_tests true if --with-c++-tests was given, blank otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1077 # - inc_longrunning_tests true if --with-longrunning-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1078 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1079 # - inc_privileged_tests true if --with-privileged-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1080 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1081 # - inc_unportable_tests true if --with-unportable-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1082 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1083 # - inc_all_tests true if --with-all-tests was given, blank otherwise
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1084 # - excl_cxx_tests true if --without-c++-tests was given, blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1085 # - excl_longrunning_tests true if --without-longrunning-tests was given,
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1086 # blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1087 # - excl_privileged_tests true if --without-privileged-tests was given, blank
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1088 # otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1089 # - excl_unportable_tests true if --without-unportable-tests was given, blank
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1090 # otherwise
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1091 # - single_configure true if --single-configure was given, false otherwise
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1092 # - avoidlist list of modules to avoid, from --avoid
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
1093 # - cond_dependencies true if --conditional-dependencies was given, false if
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
1094 # --no-conditional-dependencies was given, blank otherwise
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1095 # - lgpl yes or a number if --lgpl was given, blank otherwise
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
1096 # - gnu_make true if --gnu-make was given, false otherwise
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1097 # - makefile_name from --makefile-name
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
1098 # - libtool true if --libtool was given, false if --no-libtool was
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
1099 # given, blank otherwise
6994
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
1100 # - macro_prefix from --macro-prefix
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1101 # - po_domain from --po-domain
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1102 # - witness_c_macro from --witness-c-macro
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1103 # - vc_files true if --vc-files was given, false if --no-vc-files was
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1104 # given, blank otherwise
6994
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
1105 # - autoconf_minversion minimum supported autoconf version
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
1106 # - doit : if actions shall be executed, false if only to be printed
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1107 # - copymode symlink if --symlink or --more-symlinks was given,
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1108 # hardlink if --hardlink or --more-hardlinks was given,
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1109 # blank otherwise
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1110 # - lcopymode symlink if --local-symlink was given,
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1111 # hardlink if --local-hardlink was given,
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1112 # blank otherwise
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1113 # - do_copyrights blank if --more-symlinks or --more-hardlinks was given,
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1114 # true otherwise
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1115 {
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1116 mode=
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1117 destdir=
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1118 local_gnulib_path=
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1119 modcache=true
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1120 verbose=0
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1121 libname=libgnu
5344
c2f5677fc6ed Initialize supplied_libname. Tweak usage message.
Bruno Haible <bruno@clisp.org>
parents: 5343
diff changeset
1122 supplied_libname=
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1123 sourcebase=
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1124 m4base=
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1125 pobase=
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1126 docbase=
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1127 testsbase=
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1128 auxdir=
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1129 inctests=
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1130 incobsolete=
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1131 inc_cxx_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1132 inc_longrunning_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1133 inc_privileged_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1134 inc_unportable_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1135 inc_all_tests=
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1136 excl_cxx_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1137 excl_longrunning_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1138 excl_privileged_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1139 excl_unportable_tests=
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1140 single_configure=false
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1141 avoidlist=
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
1142 cond_dependencies=
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1143 lgpl=
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
1144 gnu_make=false
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1145 makefile_name=
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1146 libtool=
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1147 macro_prefix=
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1148 po_domain=
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1149 witness_c_macro=
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1150 vc_files=
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
1151 doit=:
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1152 copymode=
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1153 lcopymode=
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
1154 do_copyrights=true
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1155
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1156 supplied_opts="$@"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1157
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1158 while test $# -gt 0; do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1159 case "$1" in
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1160 --list | --lis )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1161 mode=list
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1162 shift ;;
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1163 --find | --fin | --fi | --f )
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1164 mode=find
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1165 shift ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1166 --import | --impor | --impo | --imp | --im | --i )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1167 mode=import
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1168 shift ;;
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1169 --add-import | --add-impor | --add-impo | --add-imp | --add-im | --add-i | --add- | --add | --ad )
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1170 mode=add-import
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1171 shift ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1172 --remove-import | --remove-impor | --remove-impo | --remove-imp | --remove-im | --remove-i | --remove- | --remove | --remov | --remo | --rem | --re | --r )
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1173 mode=remove-import
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1174 shift ;;
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1175 --update | --updat | --upda | --upd | --up | --u )
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1176 mode=update
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1177 shift ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1178 --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1179 mode=create-testdir
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1180 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1181 --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1182 mode=create-megatestdir
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1183 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1184 --test | --tes | --te | --t )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1185 mode=test
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1186 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1187 --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1188 mode=megatest
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1189 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1190 --extract-* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1191 mode=`echo "X$1" | sed -e 's/^X--//'`
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1192 shift ;;
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
1193 --copy-file | --copy-fil | --copy-fi | --copy-f | --copy- | --copy | --cop )
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
1194 mode=copy-file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
1195 shift ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1196 --dir )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1197 shift
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1198 if test $# = 0; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1199 func_fatal_error "missing argument for --dir"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1200 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1201 destdir=$1
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1202 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1203 --dir=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1204 destdir=`echo "X$1" | sed -e 's/^X--dir=//'`
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1205 shift ;;
7215
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1206 --local-dir )
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1207 shift
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1208 if test $# = 0; then
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1209 func_fatal_error "missing argument for --local-dir"
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1210 fi
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1211 func_path_append local_gnulib_path "$1"
7215
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1212 shift ;;
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1213 --local-dir=* )
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1214 local_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'`
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1215 func_path_append local_gnulib_path "$local_dir"
7215
3869ca15e2bb Reorder some statements.
Bruno Haible <bruno@clisp.org>
parents: 7214
diff changeset
1216 shift ;;
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1217 --cache-modules | --cache-module | --cache-modul | --cache-modu | --cache-mod | --cache-mo | --cache-m | --cache- | --cache | --cach | --cac | --ca )
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1218 modcache=true
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1219 shift ;;
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1220 --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 )
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1221 modcache=false
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1222 shift ;;
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1223 --verbose | --verbos | --verbo | --verb )
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1224 verbose=`expr $verbose + 1`
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1225 shift ;;
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1226 --quiet | --quie | --qui | --qu | --q )
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1227 verbose=`expr $verbose - 1`
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1228 shift ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1229 --lib )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1230 shift
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1231 if test $# = 0; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1232 func_fatal_error "missing argument for --lib"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1233 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1234 libname=$1
5343
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
1235 supplied_libname=true
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1236 shift ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1237 --lib=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1238 libname=`echo "X$1" | sed -e 's/^X--lib=//'`
5343
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
1239 supplied_libname=true
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1240 shift ;;
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1241 --source-base )
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1242 shift
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1243 if test $# = 0; then
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1244 func_fatal_error "missing argument for --source-base"
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1245 fi
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1246 sourcebase=$1
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1247 shift ;;
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1248 --source-base=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1249 sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'`
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1250 shift ;;
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1251 --m4-base )
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1252 shift
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1253 if test $# = 0; then
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1254 func_fatal_error "missing argument for --m4-base"
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1255 fi
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1256 m4base=$1
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1257 shift ;;
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1258 --m4-base=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1259 m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'`
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1260 shift ;;
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1261 --po-base )
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1262 shift
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1263 if test $# = 0; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1264 func_fatal_error "missing argument for --po-base"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1265 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1266 pobase=$1
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1267 shift ;;
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1268 --po-base=* )
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1269 pobase=`echo "X$1" | sed -e 's/^X--po-base=//'`
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1270 shift ;;
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1271 --doc-base )
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1272 shift
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1273 if test $# = 0; then
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1274 func_fatal_error "missing argument for --doc-base"
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1275 fi
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1276 docbase=$1
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1277 shift ;;
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1278 --doc-base=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1279 docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'`
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1280 shift ;;
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1281 --tests-base )
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1282 shift
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1283 if test $# = 0; then
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1284 func_fatal_error "missing argument for --tests-base"
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1285 fi
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1286 testsbase=$1
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1287 shift ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1288 --tests-base=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1289 testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'`
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1290 shift ;;
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1291 --aux-dir )
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1292 shift
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1293 if test $# = 0; then
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1294 func_fatal_error "missing argument for --aux-dir"
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1295 fi
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1296 auxdir=$1
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1297 shift ;;
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1298 --aux-dir=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1299 auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'`
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1300 shift ;;
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1301 --with-tests | --with-test | --with-tes | --with-te | --with-t)
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1302 inctests=true
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1303 shift ;;
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1304 --with-obsolete | --with-obsolet | --with-obsole | --with-obsol | --with-obso | --with-obs | --with-ob | --with-o)
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1305 incobsolete=true
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1306 shift ;;
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1307 --with-c++-tests | --with-c++-test | --with-c++-tes | --with-c++-te | --with-c++-t | --with-c++- | --with-c++ | --with-c+ | --with-c)
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1308 inc_cxx_tests=true
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1309 shift ;;
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1310 --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)
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1311 inc_longrunning_tests=true
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1312 shift ;;
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1313 --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)
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1314 inc_privileged_tests=true
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1315 shift ;;
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1316 --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)
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1317 inc_unportable_tests=true
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1318 shift ;;
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1319 --with-all-tests | --with-all-test | --with-all-tes | --with-all-te | --with-all-t | --with-all- | --with-all | --with-al | --with-a)
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1320 inc_all_tests=true
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1321 shift ;;
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1322 --without-tests | --without-test | --without-tes | --without-te | --without-t)
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1323 inctests=false
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1324 shift ;;
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1325 --without-c++-tests | --without-c++-test | --without-c++-tes | --without-c++-te | --without-c++-t | --without-c++- | --without-c++ | --without-c+ | --without-c)
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1326 excl_cxx_tests=true
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1327 shift ;;
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1328 --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)
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1329 excl_longrunning_tests=true
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1330 shift ;;
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1331 --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)
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1332 excl_privileged_tests=true
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1333 shift ;;
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1334 --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)
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1335 excl_unportable_tests=true
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1336 shift ;;
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1337 --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)
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1338 single_configure=true
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1339 shift ;;
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1340 --avoid )
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1341 shift
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1342 if test $# = 0; then
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1343 func_fatal_error "missing argument for --avoid"
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1344 fi
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
1345 func_append avoidlist " $1"
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1346 shift ;;
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1347 --avoid=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1348 arg=`echo "X$1" | sed -e 's/^X--avoid=//'`
7327
6db875979695 * gnulib-tool (avoidlist): Fix typo that broke options like
Paul Eggert <eggert@cs.ucla.edu>
parents: 7326
diff changeset
1349 func_append avoidlist " $arg"
5198
9317c9ebe82c Add --source-base, --m4-base, --libtool options.
Paul Eggert <eggert@cs.ucla.edu>
parents: 4717
diff changeset
1350 shift ;;
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
1351 --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)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
1352 cond_dependencies=true
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
1353 shift ;;
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
1354 --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)
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
1355 cond_dependencies=false
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
1356 shift ;;
5262
97ed4b64d853 New parameter --lgpl, to asseert that modules are
Paul Eggert <eggert@cs.ucla.edu>
parents: 5255
diff changeset
1357 --lgpl )
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1358 lgpl=yes
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1359 shift ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1360 --lgpl=* )
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1361 arg=`echo "X$1" | sed -e 's/^X--lgpl=//'`
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1362 case "$arg" in
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
1363 2 | 3orGPLv2 | 3) ;;
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1364 *) func_fatal_error "invalid LGPL version number for --lgpl" ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1365 esac
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
1366 lgpl=$arg
5262
97ed4b64d853 New parameter --lgpl, to asseert that modules are
Paul Eggert <eggert@cs.ucla.edu>
parents: 5255
diff changeset
1367 shift ;;
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
1368 --gnu-make )
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
1369 gnu_make=true
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
1370 shift ;;
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1371 --makefile-name )
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1372 shift
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1373 if test $# = 0; then
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1374 func_fatal_error "missing argument for --makefile-name"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1375 fi
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1376 makefile_name="$1"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1377 shift ;;
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1378 --makefile-name=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1379 makefile_name=`echo "X$1" | sed -e 's/^X--makefile-name=//'`
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
1380 shift ;;
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1381 --libtool )
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1382 libtool=true
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
1383 shift ;;
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
1384 --no-libtool )
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
1385 libtool=false
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
1386 shift ;;
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1387 --macro-prefix )
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1388 shift
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1389 if test $# = 0; then
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1390 func_fatal_error "missing argument for --macro-prefix"
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1391 fi
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1392 macro_prefix="$1"
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1393 shift ;;
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1394 --macro-prefix=* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1395 macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'`
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
1396 shift ;;
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1397 --po-domain )
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1398 shift
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1399 if test $# = 0; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1400 func_fatal_error "missing argument for --po-domain"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1401 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1402 po_domain="$1"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1403 shift ;;
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1404 --po-domain=* )
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1405 po_domain=`echo "X$1" | sed -e 's/^X--po-domain=//'`
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1406 shift ;;
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1407 --witness-c-macro )
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1408 shift
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1409 if test $# = 0; then
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1410 func_fatal_error "missing argument for --witness-c-macro"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1411 fi
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1412 witness_c_macro="$1"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1413 shift ;;
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1414 --witness-c-macro=* )
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1415 witness_c_macro=`echo "X$1" | sed -e 's/^X--witness-c-macro=//'`
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1416 shift ;;
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1417 --vc-files )
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1418 vc_files=true
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1419 shift ;;
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1420 --no-vc-files )
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1421 vc_files=false
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
1422 shift ;;
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1423 --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch )
17065
e7db46543239 gnulib-tool: Remove no-op option --no-changelog.
Bruno Haible <bruno@clisp.org>
parents: 17047
diff changeset
1424 # A no-op for backward compatibility.
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1425 shift ;;
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1426 --dry-run )
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
1427 doit=false
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
1428 shift ;;
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1429 -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy )
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1430 copymode=symlink
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
1431 shift ;;
7643
d67f9dc6019d New option --local-symlink.
Bruno Haible <bruno@clisp.org>
parents: 7642
diff changeset
1432 --local-symlink | --local-symlin | --local-symli | --local-syml | --local-sym | --local-sy | --local-s )
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1433 lcopymode=symlink
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1434 shift ;;
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1435 -h | --hardlink | --hardlin | --hardli | --hardl | --hard | --har | --ha )
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1436 copymode=hardlink
7643
d67f9dc6019d New option --local-symlink.
Bruno Haible <bruno@clisp.org>
parents: 7642
diff changeset
1437 shift ;;
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1438 --local-hardlink | --local-hardlin | --local-hardli | --local-hardl | --local-hard | --local-har | --local-ha | --local-h )
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1439 lcopymode=hardlink
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1440 shift ;;
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1441 -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | --more-syml | --more-sym | --more-sy | --more-s )
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1442 copymode=symlink
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
1443 do_copyrights=
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
1444 shift ;;
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1445 -H | --more-hardlinks | --more-hardlink | --more-hardlin | --more-hardli | --more-hardl | --more-hard | --more-har | --more-ha | --more-h )
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1446 copymode=hardlink
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1447 do_copyrights=
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1448 shift ;;
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
1449 --help | --hel | --he )
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1450 func_usage
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1451 func_exit $? ;;
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
1452 --version | --versio | --versi | --vers )
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1453 func_version
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1454 func_exit $? ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1455 -- )
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1456 # Stop option processing
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1457 shift
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1458 break ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1459 -* )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1460 echo "gnulib-tool: unknown option $1" 1>&2
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1461 echo "Try 'gnulib-tool --help' for more information." 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1462 func_exit 1 ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1463 * )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1464 break ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1465 esac
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1466 done
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1467
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1468 if case "$mode" in import | add-import | remove-import) true;; *) false;; esac; then
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1469 if test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1470 || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
1471 || test "$single_configure" != false; then
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1472 echo "gnulib-tool: invalid options for '$mode' mode" 1>&2
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1473 echo "Try 'gnulib-tool --help' for more information." 1>&2
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1474 func_exit 1
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1475 fi
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1476 fi
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1477 if test "$mode" = update; then
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1478 if test $# != 0; then
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1479 echo "gnulib-tool: too many arguments in 'update' mode" 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1480 echo "Try 'gnulib-tool --help' for more information." 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1481 echo "If you really want to modify the gnulib configuration of your project," 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1482 echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1483 func_exit 1
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1484 fi
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1485 if test -n "$local_gnulib_path" || test -n "$supplied_libname" \
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1486 || test -n "$sourcebase" || test -n "$m4base" || test -n "$pobase" \
6993
dc8f2a1ff75f Reorder tests in doc-base patch.
Bruno Haible <bruno@clisp.org>
parents: 6966
diff changeset
1487 || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1488 || test -n "$inctests" || test -n "$incobsolete" \
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1489 || test -n "$inc_cxx_tests" || test -n "$inc_longrunning_tests" \
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1490 || test -n "$inc_privileged_tests" || test -n "$inc_unportable_tests" \
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
1491 || test -n "$inc_all_tests" \
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1492 || test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
1493 || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1494 || test -n "$avoidlist" || test -n "$lgpl" || test -n "$makefile_name" \
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
1495 || test -n "$macro_prefix" || test -n "$po_domain" \
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
1496 || test -n "$witness_c_macro" || test -n "$vc_files"; then
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1497 echo "gnulib-tool: invalid options for 'update' mode" 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1498 echo "Try 'gnulib-tool --help' for more information." 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1499 echo "If you really want to modify the gnulib configuration of your project," 1>&2
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1500 echo "you need to use 'gnulib --import' - at your own risk!" 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1501 func_exit 1
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1502 fi
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1503 fi
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1504 if test -n "$pobase" && test -z "$po_domain"; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1505 echo "gnulib-tool: together with --po-base, you need to specify --po-domain" 1>&2
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1506 echo "Try 'gnulib-tool --help' for more information." 1>&2
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1507 func_exit 1
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1508 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1509 if test -z "$pobase" && test -n "$po_domain"; then
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
1510 func_warning "--po-domain has no effect without a --po-base option"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1511 fi
39737
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
1512 case $mode,$gnu_make in
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
1513 *test*,true)
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
1514 echo "gnulib-tool: --gnu-make not supported when including tests"
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
1515 func_exit 1;;
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
1516 esac
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1517 # Canonicalize the inctests variable.
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1518 case "$mode" in
17004
1a403c75d360 gnulib-tool: Fix handling of inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16932
diff changeset
1519 import | add-import | remove-import | update)
16931
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1520 if test -z "$inctests"; then
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1521 inctests=false
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1522 fi
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1523 ;;
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1524 create-testdir | create-megatestdir | test | megatest)
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1525 if test -z "$inctests"; then
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1526 inctests=true
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1527 fi
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1528 ;;
9c0df43d88f4 gnulib-tool: --create-[mega]testdir, --[mega]test implies --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 16925
diff changeset
1529 esac
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
1530 # Now the only possible values of "$inctests" are true and false
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
1531 # (or blank but then it is irrelevant).
6443
1a35941d29ab Implement the --update option.
Bruno Haible <bruno@clisp.org>
parents: 6425
diff changeset
1532
7071
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1533 # Determine the minimum supported autoconf version from the project's
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1534 # configure.ac.
39944
eb64273b66c2 Assume Autoconf >= 2.63.
Bruno Haible <bruno@clisp.org>
parents: 39943
diff changeset
1535 DEFAULT_AUTOCONF_MINVERSION="2.63"
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1536 autoconf_minversion=
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1537 configure_ac=
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1538 if case "$mode" in import | add-import | remove-import | update) true;; *) false;; esac \
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1539 && test -n "$destdir"; then
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1540 if test -f "$destdir"/configure.ac; then
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1541 configure_ac="$destdir/configure.ac"
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1542 else
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1543 if test -f "$destdir"/configure.in; then
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1544 configure_ac="$destdir/configure.in"
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1545 fi
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1546 fi
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1547 else
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1548 if test -f configure.ac; then
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1549 configure_ac="configure.ac"
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1550 else
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1551 if test -f configure.in; then
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1552 configure_ac="configure.in"
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1553 fi
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1554 fi
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1555 fi
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1556 if test -n "$configure_ac"; then
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1557 # Use sed, not autoconf --trace, to look for the AC_PREREQ invocation,
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
1558 # because when some m4 files are omitted from a version control repository,
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1559 # "autoconf --trace=AC_PREREQ" fails with an error message like this:
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1560 # m4: aclocal.m4:851: Cannot open m4/absolute-header.m4: No such file or directory
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1561 # autom4te: m4 failed with exit status: 1
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1562 prereqs=
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1563 my_sed_traces='
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1564 s,#.*$,,
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1565 s,^dnl .*$,,
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1566 s, dnl .*$,,
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1567 /AC_PREREQ/ {
7767
0339d0fb77b2 * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7754
diff changeset
1568 s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,\1,p
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1569 }'
7767
0339d0fb77b2 * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7754
diff changeset
1570 prereqs=`sed -n -e "$my_sed_traces" < "$configure_ac"`
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1571 if test -n "$prereqs"; then
7767
0339d0fb77b2 * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7754
diff changeset
1572 autoconf_minversion=`
0339d0fb77b2 * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7754
diff changeset
1573 for version in $prereqs; do echo $version; done |
12417
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
1574 LC_ALL=C sort -nru | sed -e 1q
7767
0339d0fb77b2 * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7754
diff changeset
1575 `
7078
a060dfddc867 Improve autoconf_minversion detection.
Bruno Haible <bruno@clisp.org>
parents: 7077
diff changeset
1576 fi
7071
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1577 fi
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1578 if test -z "$autoconf_minversion"; then
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1579 autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION
71c5caf223fc Remove the --assume-autoconf option.
Bruno Haible <bruno@clisp.org>
parents: 7070
diff changeset
1580 fi
6994
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
1581 case "$autoconf_minversion" in
39944
eb64273b66c2 Assume Autoconf >= 2.63.
Bruno Haible <bruno@clisp.org>
parents: 39943
diff changeset
1582 1.* | 2.[0-5]* | 2.6[0-2]*)
eb64273b66c2 Assume Autoconf >= 2.63.
Bruno Haible <bruno@clisp.org>
parents: 39943
diff changeset
1583 func_fatal_error "minimum supported autoconf version is 2.63. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;;
6994
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
1584 esac
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
1585
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1586 # Remove trailing slashes from the directory names. This is necessary for
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1587 # m4base (to avoid an error in func_import) and optional for the others.
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1588 sed_trimtrailingslashes='s,\([^/]\)//*$,\1,'
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1589 old_local_gnulib_path="$local_gnulib_path"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1590 local_gnulib_path=
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1591 save_IFS="$IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1592 IFS=:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1593 for dir in $old_local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1594 do
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1595 IFS="$save_IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1596 case "$dir" in
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1597 */ ) dir=`echo "$dir" | sed -e "$sed_trimtrailingslashes"` ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1598 esac
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1599 func_path_append local_gnulib_path "$dir"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1600 done
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1601 IFS="$save_IFS"
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1602 case "$sourcebase" in
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1603 */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;;
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1604 esac
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1605 case "$m4base" in
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1606 */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;;
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1607 esac
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1608 case "$pobase" in
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1609 */ ) pobase=`echo "$pobase" | sed -e "$sed_trimtrailingslashes"` ;;
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
1610 esac
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1611 case "$docbase" in
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1612 */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;;
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
1613 esac
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1614 case "$testsbase" in
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1615 */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;;
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1616 esac
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1617 case "$auxdir" in
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1618 */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;;
6264
eaa3b6787ec9 Ignore trailing slashes in --m4-base value etc.
Bruno Haible <bruno@clisp.org>
parents: 6263
diff changeset
1619 esac
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1620 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1621
9793
f899dba61804 Fix 'gnulib-tool --version' output to work with git.
Eric Blake <ebb9@byu.net>
parents: 9541
diff changeset
1622 func_gnulib_dir
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1623 func_tmpdir
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1624 trap 'exit_status=$?
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1625 if test "$signal" != 0; then
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1626 echo "caught signal $signal" >&2
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1627 fi
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1628 rm -rf "$tmp"
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1629 exit $exit_status' 0
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1630 for signal in 1 2 3 13 15; do
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1631 trap '{ signal='$signal'; func_exit 1; }' $signal
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1632 done
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
1633 signal=0
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1634
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1635 # Note: The 'eval' silences stderr output in dash.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1636 if (declare -A x && { x[f/2]='foo'; x[f/3]='bar'; eval test '${x[f/2]}' = foo; }) 2>/dev/null; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1637 # Zsh 4 and Bash 4 have associative arrays.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1638 have_associative=true
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1639 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1640 # For other shells, use 'eval' with computed shell variable names.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1641 have_associative=false
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1642 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
1643
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1644 # func_lookup_local_file_cb dir file
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1645 # returns true and sets func_lookup_local_file_result if the file $dir/$file
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1646 # exists.
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1647 func_lookup_local_file_cb ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1648 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1649 test -n "$func_lookup_local_file_result" && return 1 # already found?
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1650 test -f "$1/$2" || return 1
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1651 func_lookup_local_file_result=$1/$2
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1652 :
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1653 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1654
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1655 # func_lookup_local_file file
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1656 # looks up a file in $local_gnulib_path.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1657 # Input:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1658 # - local_gnulib_path from --local-dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1659 # Output:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1660 # - func_lookup_local_file_result name of the file, valid only when the
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1661 # function succeeded.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1662 func_lookup_local_file ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1663 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1664 func_lookup_local_file_result=
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1665 func_path_foreach "$local_gnulib_path" func_lookup_local_file_cb %dir% "$1"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1666 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1667
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1668 # func_lookup_file_cb dir
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1669 # does one step in processing the $local_gnulib_path, looking for $dir/$lkfile
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1670 # and $dir/$lkfile.diff.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1671 func_lookup_file_cb ()
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1672 {
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1673 # If we found the file already in a --local-dir of higher priority, nothing
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1674 # more to do.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1675 if test -z "$lookedup_file"; then
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1676 # Otherwise, look for $dir/$lkfile and $dir/$lkfile.diff.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1677 if test -f "$1/$lkfile"; then
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1678 lookedup_file="$1/$lkfile"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1679 else
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1680 if test -f "$1/$lkfile.diff"; then
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1681 lkpatches="$1/$lkfile.diff${lkpatches:+$PATH_SEPARATOR$lkpatches}"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1682 fi
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1683 fi
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1684 fi
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1685 }
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1686
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1687 # func_lookup_file file
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1688 # looks up a file in $local_gnulib_path or $gnulib_dir, or combines it through
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1689 # 'patch'.
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1690 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1691 # - local_gnulib_path from --local-dir
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1692 # Output:
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1693 # - lookedup_file name of the merged (combined) file
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1694 # - lookedup_tmp true if it is located in the tmp directory, blank otherwise
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1695 func_lookup_file ()
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1696 {
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1697 lkfile="$1"
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1698 # Each element in $local_gnulib_path is a directory whose contents overrides
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1699 # or amends the result of the lookup in the rest of $local_gnulib_path and
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1700 # $gnulib_dir. So, the first element of $local_gnulib_path is the highest
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1701 # priority one.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1702 lookedup_file=
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1703 lkpatches=
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1704 func_path_foreach "$local_gnulib_path" func_lookup_file_cb %dir%
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1705 # Treat $gnulib_dir like a lowest-priority --local-dir, except that here we
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1706 # don't look for .diff files.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1707 if test -z "$lookedup_file"; then
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1708 if test -f "$gnulib_dir/$lkfile"; then
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1709 lookedup_file="$gnulib_dir/$lkfile"
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1710 else
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1711 func_fatal_error "file $gnulib_dir/$lkfile not found"
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1712 fi
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1713 fi
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1714 # Now apply the patches, from lowest-priority to highest-priority.
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1715 lookedup_tmp=
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1716 if test -n "$lkpatches"; then
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1717 lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'`
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1718 rm -f "$tmp/$lkbase"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1719 cp "$lookedup_file" "$tmp/$lkbase"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1720 save_IFS="$IFS"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1721 IFS="$PATH_SEPARATOR"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1722 for patchfile in $lkpatches; do
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1723 IFS="$save_IFS"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1724 patch -s "$tmp/$lkbase" < "$patchfile" >&2 \
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1725 || func_fatal_error "patch file $patchfile didn't apply cleanly"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1726 done
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1727 IFS="$save_IFS"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1728 lookedup_file="$tmp/$lkbase"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1729 lookedup_tmp=true
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
1730 fi
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1731 }
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1732
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1733 # func_sanitize_modulelist
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1734 # receives a list of possible module names on standard input, one per line.
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1735 # It removes those which are just file names unrelated to modules, and outputs
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1736 # the resulting list to standard output, one per line.
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1737 func_sanitize_modulelist ()
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1738 {
17378
1d9362a18c34 Assume gnulib is checked out from Git, not CVS
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 17269
diff changeset
1739 sed -e '/^ChangeLog$/d' -e '/\/ChangeLog$/d' \
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1740 -e '/^COPYING$/d' -e '/\/COPYING$/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1741 -e '/^README$/d' -e '/\/README$/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1742 -e '/^TEMPLATE$/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1743 -e '/^TEMPLATE-EXTENDED$/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1744 -e '/^TEMPLATE-TESTS$/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1745 -e '/^\..*/d' \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1746 -e '/~$/d'
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1747 }
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1748
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1749
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1750 # func_modules_in_dir dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1751 # outputs all module files in dir to standard output.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1752 func_modules_in_dir ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1753 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1754 (test -d "$1" && cd "$1" && find modules -type f -print)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1755 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1756
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1757 # func_all_modules
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1758 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1759 # - local_gnulib_path from --local-dir
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1760 func_all_modules ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1761 {
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1762 # Filter out metainformation files like README, which are not modules.
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1763 # Filter out unit test modules; they can be retrieved through
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1764 # --extract-tests-module if desired.
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1765 {
7805
2ee7433618fe Add support for subdirectories of the 'modules/' directory.
Bruno Haible <bruno@clisp.org>
parents: 7788
diff changeset
1766 (cd "$gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,')
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1767 func_path_foreach "$local_gnulib_path" func_modules_in_dir %dir% | sed -e 's,^modules/,,' -e 's,\.diff$,,'
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
1768 } \
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
1769 | func_sanitize_modulelist \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
1770 | sed -e '/-tests$/d' \
7319
1726cc39709b Use "sort -u" where it makes sense.
Bruno Haible <bruno@clisp.org>
parents: 7299
diff changeset
1771 | LC_ALL=C sort -u
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1772 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1773
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1774 # func_exists_local_module dir module
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1775 # returns true if module exists in dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1776 func_exists_local_module ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1777 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1778 test -d "$1/modules" && test -f "$1/modules/$2";
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1779 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1780
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1781 # func_exists_module module
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1782 # tests whether a module, given by name, exists
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1783 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1784 # - local_gnulib_path from --local-dir
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1785 func_exists_module ()
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1786 {
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1787 { test -f "$gnulib_dir/modules/$1" \
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1788 || func_path_foreach "$local_gnulib_path" func_exists_local_module %dir% "$1" ; } \
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1789 && test "ChangeLog" != "$1" \
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1790 && test "COPYING" != "$1" \
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1791 && test "README" != "$1" \
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1792 && test "TEMPLATE" != "$1" \
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1793 && test "TEMPLATE-EXTENDED" != "$1" \
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1794 && test "TEMPLATE-TESTS" != "$1"
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1795 }
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1796
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1797 # func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1798 # verifies a module name
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1799 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1800 # - local_gnulib_path from --local-dir
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1801 # - module module name argument
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
1802 # Output:
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
1803 # - module unchanged if OK, empty if not OK
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
1804 # - lookedup_file if OK: name of the merged (combined) module description file
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
1805 # - lookedup_tmp if OK: true if it is located in the tmp directory, blank otherwise
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1806 func_verify_module ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1807 {
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
1808 if func_exists_module "$module"; then
7168
56632b3512af Make it work also with Solaris /bin/sh.
Bruno Haible <bruno@clisp.org>
parents: 7142
diff changeset
1809 # OK, $module is a correct module name.
7212
232ee448d272 Better error handling.
Bruno Haible <bruno@clisp.org>
parents: 7199
diff changeset
1810 # Verify that building the module description with 'patch' succeeds.
232ee448d272 Better error handling.
Bruno Haible <bruno@clisp.org>
parents: 7199
diff changeset
1811 func_lookup_file "modules/$module"
7168
56632b3512af Make it work also with Solaris /bin/sh.
Bruno Haible <bruno@clisp.org>
parents: 7142
diff changeset
1812 else
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
1813 func_warning "module $module doesn't exist"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1814 module=
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1815 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1816 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1817
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1818 # func_verify_nontests_module
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1819 # verifies a module name, excluding tests modules
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1820 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1821 # - local_gnulib_path from --local-dir
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1822 # - module module name argument
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1823 func_verify_nontests_module ()
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1824 {
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1825 case "$module" in
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1826 *-tests ) module= ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1827 * ) func_verify_module ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1828 esac
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1829 }
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1830
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1831 # func_verify_tests_module
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1832 # verifies a module name, considering only tests modules
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1833 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
1834 # - local_gnulib_path from --local-dir
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
1835 # - module module name argument
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1836 func_verify_tests_module ()
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1837 {
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1838 case "$module" in
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1839 *-tests ) func_verify_module ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1840 * ) module= ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1841 esac
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1842 }
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
1843
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1844 # Suffix of a sed expression that extracts a particular field from a
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1845 # module description.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1846 # A field starts with a line that contains a keyword, such as 'Description',
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1847 # followed by a colon and optional whitespace. All following lines, up to
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1848 # the next field (or end of file if there is none) form the contents of the
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1849 # field.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1850 # An absent field is equivalent to a field with empty contents.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1851 # NOTE: Keep this in sync with sed_extract_cache_prog below!
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1852 sed_extract_prog=':[ ]*$/ {
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1853 :a
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1854 n
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1855 s/^Description:[ ]*$//
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
1856 s/^Comment:[ ]*$//
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1857 s/^Status:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1858 s/^Notice:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1859 s/^Applicability:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1860 s/^Files:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1861 s/^Depends-on:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1862 s/^configure\.ac-early:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1863 s/^configure\.ac:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1864 s/^Makefile\.am:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1865 s/^Include:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1866 s/^Link:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1867 s/^License:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1868 s/^Maintainer:[ ]*$//
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1869 tb
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1870 p
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1871 ba
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1872 :b
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1873 }'
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
1874
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1875 # Piece of a sed expression that converts a field header line to a shell
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1876 # variable name,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1877 # NOTE: Keep this in sync with sed_extract_prog above!
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1878 sed_extract_field_header='
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1879 s/^Description:[ ]*$/description/
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
1880 s/^Comment:[ ]*$/comment/
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1881 s/^Status:[ ]*$/status/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1882 s/^Notice:[ ]*$/notice/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1883 s/^Applicability:[ ]*$/applicability/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1884 s/^Files:[ ]*$/files/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1885 s/^Depends-on:[ ]*$/dependson/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1886 s/^configure\.ac-early:[ ]*$/configureac_early/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1887 s/^configure\.ac:[ ]*$/configureac/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1888 s/^Makefile\.am:[ ]*$/makefile/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1889 s/^Include:[ ]*$/include/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1890 s/^Link:[ ]*$/link/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1891 s/^License:[ ]*$/license/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1892 s/^Maintainer:[ ]*$/maintainer/'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1893
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1894 if $modcache; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1895
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1896 if $have_associative; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1897
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1898 # Declare the associative arrays.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1899 declare -A modcache_cached
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1900 sed_to_declare_statement='s|^.*/\([a-zA-Z0-9_]*\)/$|declare -A modcache_\1|p'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1901 declare_script=`echo "$sed_extract_field_header" | sed -n -e "$sed_to_declare_statement"`
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1902 eval "$declare_script"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1903
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1904 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1905
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1906 # func_cache_var module
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1907 # computes the cache variable name corresponding to $module.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1908 # Note: This computation can map different module names to the same
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1909 # cachevar (such as 'foo-bar', 'foo_bar', or 'foo/bar'); the caller has
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1910 # to protect against this case.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1911 # Output:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1912 # - cachevar a shell variable name
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1913 if (f=foo; eval echo '${f//o/e}') < /dev/null 2>/dev/null | grep fee >/dev/null; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1914 # Bash 2.0 and newer, ksh, and zsh support the syntax
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1915 # ${param//pattern/replacement}
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1916 # as a shorthand for
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1917 # `echo "$param" | sed -e "s/pattern/replacement/g"`.
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
1918 # Note: The 'eval' is necessary for dash and NetBSD /bin/sh.
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
1919 eval 'func_cache_var ()
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1920 {
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1921 cachevar=c_${1//[!a-zA-Z0-9_]/_}
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
1922 }'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1923 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1924 func_cache_var ()
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1925 {
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1926 case $1 in
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1927 *[!a-zA-Z0-9_]*)
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1928 cachevar=c_`echo "$1" | LC_ALL=C sed -e 's/[^a-zA-Z0-9_]/_/g'` ;;
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1929 *)
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1930 cachevar=c_$1 ;;
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1931 esac
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1932 }
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1933 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1934
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1935 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1936
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1937 # func_init_sed_convert_to_cache_statements
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1938 # Input:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1939 # - modcachevar_assignment
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1940 # Output:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1941 # - sed_convert_to_cache_statements
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1942 func_init_sed_convert_to_cache_statements ()
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1943 {
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1944 # 'sed' script that turns a module description into shell script
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1945 # assignments, suitable to be eval'ed. All active characters are escaped.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1946 # This script turns
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1947 # Description:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1948 # Some module's description
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1949 #
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1950 # Files:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1951 # lib/file.h
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1952 # into:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1953 # modcache_description[$1]=\
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1954 # 'Some module'"'"'s description
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1955 # '
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1956 # modcache_files[$1]=\
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1957 # 'lib/file.h'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1958 # or:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1959 # c_MODULE_description_set=set; c_MODULE_description=\
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1960 # 'Some module'"'"'s description
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1961 # '
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1962 # c_MODULE_files_set=set; c_MODULE_files=\
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1963 # 'lib/file.h'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1964 # The script consists of two parts:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1965 # 1) Ignore the lines before the first field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1966 # 2) A loop, treating non-field-header lines by escaping single quotes
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1967 # and adding a closing quote in the last line,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1968 sed_convert_to_cache_statements="
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1969 :llla
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1970 # Here we have not yet seen a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1971
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1972 # See if the current line contains a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1973 t llla1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1974 :llla1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1975 ${sed_extract_field_header}
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1976 t lllb
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1977
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1978 # No field header. Ignore the line.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1979
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1980 # Read the next line. Upon EOF, just exit.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1981 n
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1982 b llla
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1983
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1984 :lllb
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1985 # The current line contains a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1986
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1987 # Turn it into the beginning of an assignment.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1988 s/^\\(.*\\)\$/${modcachevar_assignment}\\\\/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1989
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1990 # Move it to the hold space. Don't print it yet,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1991 # because we want no assignment if the field is empty.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1992 h
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1993
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1994 # Read the next line.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1995 # Upon EOF, the field was empty. Print no assignment. Just exit.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1996 n
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1997
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1998 # See if the current line contains a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
1999 t lllb1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2000 :lllb1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2001 ${sed_extract_field_header}
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2002 # If it is, the previous field was empty. Print no assignment.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2003 t lllb
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2004
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2005 # Not a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2006
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2007 # Print the previous line, held in the hold space.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2008 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2009 p
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2010 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2011
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2012 # Transform single quotes.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2013 s/'/'\"'\"'/g
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2014
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2015 # Prepend a single quote.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2016 s/^/'/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2017
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2018 :lllc
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2019
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2020 # Move it to the hold space.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2021 h
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2022
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2023 # Read the next line.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2024 # Upon EOF, branch.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2025 \${
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2026 b llle
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2027 }
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2028 n
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2029
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2030 # See if the current line contains a field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2031 t lllc1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2032 :lllc1
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2033 ${sed_extract_field_header}
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2034 t llld
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2035
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2036 # Print the previous line, held in the hold space.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2037 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2038 p
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2039 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2040
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2041 # Transform single quotes.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2042 s/'/'\"'\"'/g
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2043
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2044 b lllc
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2045
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2046 :llld
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2047 # A field header.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2048 # Print the previous line, held in the hold space, with a single quote
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2049 # to end the assignment.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2050 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2051 s/\$/'/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2052 p
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2053 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2054
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2055 b lllb
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2056
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2057 :llle
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2058 # EOF seen.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2059 # Print the previous line, held in the hold space, with a single quote
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2060 # to end the assignment.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2061 x
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2062 s/\$/'/
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2063 p
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2064 # Exit.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2065 n
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2066 "
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2067 if ! $sed_comments; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2068 # Remove comments.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2069 sed_convert_to_cache_statements=`echo "$sed_convert_to_cache_statements" \
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2070 | sed -e 's/^ *//' -e 's/^#.*//'`
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2071 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2072 }
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2073
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2074 if $have_associative; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2075 # sed_convert_to_cache_statements does not depend on the module.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2076 modcachevar_assignment='modcache_\1[$1]='
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2077 func_init_sed_convert_to_cache_statements
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2078 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2079
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2080 # func_cache_lookup_module module
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2081 #
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2082 # looks up a module, like 'func_lookup_file modules/$module', and stores all
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2083 # of its relevant data in a cache in the memory of the processing shell. If
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2084 # already cached, it does not look it up again, thus saving file access time.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2085 # Parameters:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2086 # - module non-empty string
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2087 # Output if $have_associative:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2088 # - modcache_cached[$module] set to yes
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2089 # - modcache_description[$module] ==
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2090 # - modcache_status[$module] \ set to the field's value, minus the
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2091 # - ... / final newline,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2092 # - modcache_maintainer[$module] == or unset if the field's value is empty
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2093 # Output if ! $have_associative:
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2094 # - cachevar a shell variable name
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2095 # - ${cachevar}_cached set to $module
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2096 # - ${cachevar}_description ==
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2097 # - ${cachevar}_status \ set to the field's value, minus the
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2098 # - ... / final newline,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2099 # - ${cachevar}_maintainer == or unset if the field's value is empty
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2100 # - ${cachevar}_description_set ==
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2101 # - ${cachevar}_status_set \ set to non-empty if the field's value
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2102 # - ... / is non-empty,
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2103 # - ${cachevar}_maintainer_set == or unset if the field's value is empty
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2104 func_cache_lookup_module ()
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2105 {
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2106 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2107 eval 'cached=${modcache_cached[$1]}'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2108 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2109 func_cache_var "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2110 eval "cached=\"\$${cachevar}_cached\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2111 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2112 if test -z "$cached"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2113 # Not found in cache. Look it up on the file system.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2114 func_lookup_file "modules/$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2115 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2116 eval 'modcache_cached[$1]=yes'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2117 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2118 eval "${cachevar}_cached=\"\$1\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2119 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2120 if ! $have_associative; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2121 # sed_convert_to_cache_statements depends on the module.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2122 modcachevar_assignment="${cachevar}"'_\1_set=set; '"${cachevar}"'_\1='
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2123 func_init_sed_convert_to_cache_statements
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2124 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2125 cache_statements=`LC_ALL=C sed -n -e "$sed_convert_to_cache_statements" < "$lookedup_file"`
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2126 eval "$cache_statements"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2127 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2128 if ! $have_associative; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2129 if test "$1" != "$cached"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2130 func_fatal_error "cache variable collision between $1 and $cached"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2131 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2132 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2133 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2134 }
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2135
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2136 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2137
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2138 # func_get_description module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2139 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2140 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2141 # - modcache true or false, from --cache-modules/--no-cache-modules
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2142 func_get_description ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2143 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2144 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2145 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2146 sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2147 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2148 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2149 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2150 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2151 if eval 'test -n "${modcache_description[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2152 eval 'echo "${modcache_description[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2153 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2154 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2155 eval "field_set=\"\$${cachevar}_description_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2156 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2157 eval "field_value=\"\$${cachevar}_description\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2158 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2159 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2160 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2161 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2162 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2163
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2164 # func_get_comment module
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2165 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2166 # - local_gnulib_path from --local-dir
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2167 # - modcache true or false, from --cache-modules/--no-cache-modules
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2168 func_get_comment ()
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2169 {
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2170 if ! $modcache; then
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2171 func_lookup_file "modules/$1"
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2172 sed -n -e "/^Comment$sed_extract_prog" < "$lookedup_file"
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2173 else
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2174 func_cache_lookup_module "$1"
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2175 # Output the field's value, including the final newline (if any).
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2176 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2177 if eval 'test -n "${modcache_comment[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2178 eval 'echo "${modcache_comment[$1]}"'
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2179 fi
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2180 else
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2181 eval "field_set=\"\$${cachevar}_comment_set\""
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2182 if test -n "$field_set"; then
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2183 eval "field_value=\"\$${cachevar}_comment\""
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2184 echo "${field_value}"
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2185 fi
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2186 fi
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2187 fi
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2188 }
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
2189
10743
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2190 # func_get_status module
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2191 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2192 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2193 # - modcache true or false, from --cache-modules/--no-cache-modules
10743
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2194 func_get_status ()
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2195 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2196 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2197 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2198 sed -n -e "/^Status$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2199 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2200 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2201 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2202 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2203 if eval 'test -n "${modcache_status[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2204 eval 'echo "${modcache_status[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2205 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2206 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2207 eval "field_set=\"\$${cachevar}_status_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2208 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2209 eval "field_value=\"\$${cachevar}_status\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2210 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2211 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2212 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2213 fi
10743
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2214 }
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
2215
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2216 # func_get_notice module
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2217 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2218 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2219 # - modcache true or false, from --cache-modules/--no-cache-modules
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2220 func_get_notice ()
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2221 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2222 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2223 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2224 sed -n -e "/^Notice$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2225 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2226 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2227 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2228 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2229 if eval 'test -n "${modcache_notice[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2230 eval 'echo "${modcache_notice[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2231 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2232 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2233 eval "field_set=\"\$${cachevar}_notice_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2234 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2235 eval "field_value=\"\$${cachevar}_notice\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2236 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2237 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2238 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2239 fi
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2240 }
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
2241
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2242 # func_get_applicability module
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2243 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2244 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2245 # - modcache true or false, from --cache-modules/--no-cache-modules
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2246 # The expected result (on stdout) is either 'main', or 'tests', or 'all'.
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2247 func_get_applicability ()
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2248 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2249 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2250 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2251 my_applicability=`sed -n -e "/^Applicability$sed_extract_prog" < "$lookedup_file"`
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2252 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2253 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2254 # Get the field's value, without the final newline.
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2255 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2256 eval 'my_applicability="${modcache_applicability[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2257 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2258 eval "my_applicability=\"\$${cachevar}_applicability\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2259 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2260 fi
12854
a57c17c10b63 gnulib-tool: cache module metainformation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12819
diff changeset
2261 if test -n "$my_applicability"; then
a57c17c10b63 gnulib-tool: cache module metainformation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12819
diff changeset
2262 echo $my_applicability
a57c17c10b63 gnulib-tool: cache module metainformation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12819
diff changeset
2263 else
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2264 # The default is 'main' or 'tests', depending on the module's name.
12854
a57c17c10b63 gnulib-tool: cache module metainformation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12819
diff changeset
2265 case $1 in
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2266 *-tests) echo "tests";;
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2267 *) echo "main";;
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2268 esac
12854
a57c17c10b63 gnulib-tool: cache module metainformation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12819
diff changeset
2269 fi
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2270 }
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
2271
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2272 # func_get_filelist module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2273 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2274 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2275 # - modcache true or false, from --cache-modules/--no-cache-modules
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2276 func_get_filelist ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2277 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2278 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2279 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2280 sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2281 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2282 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2283 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2284 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2285 if eval 'test -n "${modcache_files[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2286 eval 'echo "${modcache_files[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2287 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2288 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2289 eval "field_set=\"\$${cachevar}_files_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2290 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2291 eval "field_value=\"\$${cachevar}_files\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2292 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2293 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2294 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2295 fi
11094
5e937a2f5647 Backport improved autoconf semantics of AC_DEFUN_ONCE.
Eric Blake <ebb9@byu.net>
parents: 11065
diff changeset
2296 echo m4/00gnulib.m4
7788
e3424061171f Back from an automatic module-indicator macro to a module-indicator macro
Bruno Haible <bruno@clisp.org>
parents: 7781
diff changeset
2297 echo m4/gnulib-common.m4
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2298 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2299
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2300 # func_filter_filelist outputvar separator filelist prefix suffix removed_prefix removed_suffix [added_prefix [added_suffix]]
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2301 # stores in outputvar the filtered and processed filelist. Filtering: Only the
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2302 # elements starting with prefix and ending with suffix are considered.
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2303 # Processing: removed_prefix and removed_suffix are removed from each element,
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2304 # added_prefix and added_suffix are added to each element.
12743
3d337755e12c gnulib-tool: fix filelist for AIX, HP-UX ksh.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12741
diff changeset
2305 # prefix, suffix should not contain shell-special characters.
11037
d94dc78c3947 Improve func_remove_prefix, func_remove_suffix.
Bruno Haible <bruno@clisp.org>
parents: 10993
diff changeset
2306 # removed_prefix, removed_suffix should not contain the characters "$`\{}[]^|.
11421
57b6d75143fd Fix comment for func_filter_filelist.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11404
diff changeset
2307 # added_prefix, added_suffix should not contain the characters \|&.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2308 func_filter_filelist ()
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2309 {
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2310 if test "$2" != "$nl" \
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2311 || { $fast_func_append \
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2312 && { test -z "$6" || $fast_func_remove_prefix; } \
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2313 && { test -z "$7" || $fast_func_remove_suffix; }; \
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2314 }; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2315 ffflist=
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2316 for fff in $3; do
12743
3d337755e12c gnulib-tool: fix filelist for AIX, HP-UX ksh.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12741
diff changeset
2317 # Do not quote possibly-empty parameters in case patterns,
3d337755e12c gnulib-tool: fix filelist for AIX, HP-UX ksh.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12741
diff changeset
2318 # AIX and HP-UX ksh won't match them if they are empty.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2319 case "$fff" in
12743
3d337755e12c gnulib-tool: fix filelist for AIX, HP-UX ksh.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12741
diff changeset
2320 $4*$5)
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2321 if test -n "$6"; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2322 func_remove_prefix fff "$6"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2323 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2324 if test -n "$7"; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2325 func_remove_suffix fff "$7"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2326 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2327 fff="$8${fff}$9"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2328 if test -z "$ffflist"; then
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2329 ffflist="${fff}"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2330 else
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2331 func_append ffflist "$2${fff}"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2332 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2333 ;;
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2334 esac
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2335 done
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2336 else
10993
996a5b3859fe gnulib-tool: fix sed-based filtering
Jim Meyering <meyering@redhat.com>
parents: 10989
diff changeset
2337 sed_fff_filter="s|^$6\(.*\)$7\$|$8\\1$9|"
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2338 ffflist=`for fff in $3; do
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2339 case "$fff" in
12743
3d337755e12c gnulib-tool: fix filelist for AIX, HP-UX ksh.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12741
diff changeset
2340 $4*$5) echo "$fff" ;;
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2341 esac
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2342 done | sed -e "$sed_fff_filter"`
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2343 fi
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2344 eval "$1=\"\$ffflist\""
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2345 }
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2346
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2347 # func_get_dependencies module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2348 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2349 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2350 # - modcache true or false, from --cache-modules/--no-cache-modules
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2351 func_get_dependencies ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2352 {
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
2353 # ${module}-tests implicitly depends on ${module}, if that module exists.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2354 case "$1" in
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2355 *-tests)
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2356 fgd1="$1"
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2357 func_remove_suffix fgd1 '-tests'
13081
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
2358 if func_exists_module "$fgd1"; then
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
2359 echo "$fgd1"
012563ccbd85 gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
Bruno Haible <bruno@clisp.org>
parents: 13080
diff changeset
2360 fi
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2361 ;;
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2362 esac
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2363 # Then the explicit dependencies listed in the module description.
14908
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2364 { if ! $modcache; then
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2365 func_lookup_file "modules/$1"
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2366 sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2367 else
14908
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2368 func_cache_lookup_module "$1"
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2369 # Output the field's value, including the final newline (if any).
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2370 if $have_associative; then
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2371 if eval 'test -n "${modcache_dependson[$1]+set}"'; then
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2372 eval 'echo "${modcache_dependson[$1]}"'
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2373 fi
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2374 else
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2375 eval "field_set=\"\$${cachevar}_dependson_set\""
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2376 if test -n "$field_set"; then
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2377 eval "field_value=\"\$${cachevar}_dependson\""
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2378 echo "${field_value}"
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2379 fi
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2380 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2381 fi
14908
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2382 } \
2b58e21ecf3c gnulib-tool: Allow comments in the 'Depends-on' section.
Bruno Haible <bruno@clisp.org>
parents: 14894
diff changeset
2383 | sed -e '/^#/d'
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2384 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2385
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2386 sed_dependencies_without_conditions='s/ *\[.*//'
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2387
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2388 # func_get_autoconf_early_snippet module
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2389 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2390 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2391 # - modcache true or false, from --cache-modules/--no-cache-modules
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2392 func_get_autoconf_early_snippet ()
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2393 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2394 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2395 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2396 sed -n -e "/^configure\.ac-early$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2397 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2398 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2399 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2400 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2401 if eval 'test -n "${modcache_configureac_early[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2402 eval 'echo "${modcache_configureac_early[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2403 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2404 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2405 eval "field_set=\"\$${cachevar}_configureac_early_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2406 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2407 eval "field_value=\"\$${cachevar}_configureac_early\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2408 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2409 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2410 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2411 fi
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2412 }
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
2413
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2414 # func_get_autoconf_snippet module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2415 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2416 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2417 # - modcache true or false, from --cache-modules/--no-cache-modules
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2418 func_get_autoconf_snippet ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2419 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2420 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2421 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2422 sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2423 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2424 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2425 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2426 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2427 if eval 'test -n "${modcache_configureac[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2428 eval 'echo "${modcache_configureac[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2429 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2430 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2431 eval "field_set=\"\$${cachevar}_configureac_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2432 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2433 eval "field_value=\"\$${cachevar}_configureac\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2434 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2435 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2436 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2437 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2438 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2439
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2440 # Concatenate lines with trailing slash.
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2441 # $1 is an optional filter to restrict the
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2442 # concatenation to groups starting with that expression
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2443 combine_lines() {
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2444 sed -e "/$1.*"'\\$/{
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2445 :a
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2446 N
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2447 s/\\\n/ /
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2448 s/\\$/\\/
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2449 ta
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2450 }'
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2451 }
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2452
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2453 # func_get_automake_snippet_conditional module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2454 # returns the part of the Makefile.am snippet that can be put inside Automake
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2455 # conditionals.
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2456 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2457 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2458 # - modcache true or false, from --cache-modules/--no-cache-modules
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2459 func_get_automake_snippet_conditional ()
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2460 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2461 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2462 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2463 sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2464 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2465 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2466 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2467 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2468 if eval 'test -n "${modcache_makefile[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2469 eval 'echo "${modcache_makefile[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2470 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2471 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2472 eval "field_set=\"\$${cachevar}_makefile_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2473 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2474 eval "field_value=\"\$${cachevar}_makefile\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2475 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2476 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2477 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2478 fi
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2479 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2480
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2481 # func_get_automake_snippet_unconditional module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2482 # returns the part of the Makefile.am snippet that must stay outside of
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2483 # Automake conditionals.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2484 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2485 # - local_gnulib_path from --local-dir
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2486 # - modcache true or false, from --cache-modules/--no-cache-modules
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2487 func_get_automake_snippet_unconditional ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2488 {
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2489 case "$1" in
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2490 *-tests)
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2491 # *-tests module live in tests/, not lib/.
9284
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2492 # Synthesize an EXTRA_DIST augmentation.
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2493 all_files=`func_get_filelist $1`
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2494 func_filter_filelist tests_files " " "$all_files" 'tests/' '' 'tests/' ''
9284
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2495 extra_files="$tests_files"
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2496 if test -n "$extra_files"; then
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2497 echo "EXTRA_DIST +=" $extra_files
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2498 echo
afba4e078ebc Synthesize an EXTRA_DIST augmentation also for tests modules.
Bruno Haible <bruno@clisp.org>
parents: 9275
diff changeset
2499 fi
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2500 ;;
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2501 *)
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2502 # Synthesize an EXTRA_DIST augmentation.
7754
ed8105720327 * modules/absolute-header: New module.
Eric Blake <ebb9@byu.net>
parents: 7752
diff changeset
2503 sed_extract_mentioned_files='s/^lib_SOURCES[ ]*+=[ ]*//p'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2504 already_mentioned_files=` \
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2505 { if ! $modcache; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2506 func_lookup_file "modules/$1"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2507 sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2508 else
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2509 func_cache_lookup_module "$1"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2510 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2511 if eval 'test -n "${modcache_makefile[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2512 eval 'echo "${modcache_makefile[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2513 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2514 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2515 eval 'field_set="$'"${cachevar}"'_makefile_set"'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2516 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2517 eval 'field_value="$'"${cachevar}"'_makefile"'
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2518 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2519 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2520 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2521 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2522 } \
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
2523 | combine_lines \
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2524 | sed -n -e "$sed_extract_mentioned_files" | sed -e 's/#.*//'`
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2525 all_files=`func_get_filelist $1`
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2526 func_filter_filelist lib_files "$nl" "$all_files" 'lib/' '' 'lib/' ''
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2527 # Remove $already_mentioned_files from $lib_files.
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2528 echo "$lib_files" | LC_ALL=C sort -u > "$tmp"/lib-files
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
2529 extra_files=`for f in $already_mentioned_files; do echo $f; done \
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2530 | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/lib-files`
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2531 if test -n "$extra_files"; then
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2532 echo "EXTRA_DIST +=" $extra_files
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2533 echo
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2534 fi
7640
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2535 # Synthesize also an EXTRA_lib_SOURCES augmentation.
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2536 # This is necessary so that automake can generate the right list of
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2537 # dependency rules.
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2538 # A possible approach would be to use autom4te --trace of the redefined
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2539 # AC_LIBOBJ and AC_REPLACE_FUNCS macros when creating the Makefile.am
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2540 # (use autom4te --trace, not just grep, so that AC_LIBOBJ invocations
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2541 # inside autoconf's built-in macros are not missed).
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2542 # But it's simpler and more robust to do it here, based on the file list.
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2543 # If some .c file exists and is not used with AC_LIBOBJ - for example,
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2544 # a .c file is preprocessed into another .c file for BUILT_SOURCES -,
a4d97c9b97de Synthesize also an EXTRA_lib_SOURCES augmentation.
Bruno Haible <bruno@clisp.org>
parents: 7638
diff changeset
2545 # automake will generate a useless dependency; this is harmless.
8356
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2546 case "$1" in
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2547 relocatable-prog-wrapper) ;;
13759
38b745d4e6a4 gnulib-tool: Fixes for --create-testdir with --libtool.
Bruno Haible <bruno@clisp.org>
parents: 13752
diff changeset
2548 pt_chown) ;;
8356
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2549 *)
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2550 func_filter_filelist extra_files "$nl" "$extra_files" '' '.c' '' ''
8356
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2551 if test -n "$extra_files"; then
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2552 echo "EXTRA_lib_SOURCES +=" $extra_files
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2553 echo
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2554 fi
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2555 ;;
72f47158c694 Special handling for the 'relocatable-prog-wrapper' module.
Bruno Haible <bruno@clisp.org>
parents: 8079
diff changeset
2556 esac
9107
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2557 # Synthesize an EXTRA_DIST augmentation also for the files in build-aux/.
10989
8b11d1d206e0 Speed up gnulib-tool by doing more string processing through shell built-ins.
Bruno Haible <bruno@clisp.org>
parents: 10987
diff changeset
2558 func_filter_filelist buildaux_files "$nl" "$all_files" 'build-aux/' '' 'build-aux/' ''
9107
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2559 if test -n "$buildaux_files"; then
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2560 sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2561 echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"`
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2562 echo
2878e8c70604 Ensure that also files under build-aux/ are distributed.
Bruno Haible <bruno@clisp.org>
parents: 9096
diff changeset
2563 fi
7497
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2564 ;;
6a764f23e302 gnulib-tool now synthesizes the EXTRA_DIST line.
Bruno Haible <bruno@clisp.org>
parents: 7486
diff changeset
2565 esac
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2566 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2567
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2568 # func_get_automake_snippet module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2569 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2570 # - local_gnulib_path from --local-dir
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2571 # - modcache true or false, from --cache-modules/--no-cache-modules
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2572 func_get_automake_snippet ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2573 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2574 func_get_automake_snippet_conditional "$1"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2575 func_get_automake_snippet_unconditional "$1"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2576 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2577
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2578 # func_get_include_directive module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2579 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2580 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2581 # - modcache true or false, from --cache-modules/--no-cache-modules
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2582 func_get_include_directive ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2583 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2584 {
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2585 if ! $modcache; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2586 func_lookup_file "modules/$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2587 sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2588 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2589 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2590 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2591 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2592 if eval 'test -n "${modcache_include[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2593 eval 'echo "${modcache_include[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2594 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2595 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2596 eval "field_set=\"\$${cachevar}_include_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2597 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2598 eval "field_value=\"\$${cachevar}_include\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2599 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2600 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2601 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2602 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2603 } | sed -e 's/^\(["<]\)/#include \1/'
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2604 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2605
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2606 # func_get_link_directive module
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2607 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2608 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2609 # - modcache true or false, from --cache-modules/--no-cache-modules
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2610 func_get_link_directive ()
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2611 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2612 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2613 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2614 sed -n -e "/^Link$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2615 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2616 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2617 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2618 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2619 if eval 'test -n "${modcache_link[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2620 eval 'echo "${modcache_link[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2621 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2622 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2623 eval "field_set=\"\$${cachevar}_link_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2624 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2625 eval "field_value=\"\$${cachevar}_link\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2626 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2627 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2628 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2629 fi
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2630 }
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
2631
16153
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2632 # func_get_license_raw module
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2633 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2634 # - local_gnulib_path from --local-dir
16153
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2635 # - modcache true or false, from --cache-modules/--no-cache-modules
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2636 func_get_license_raw ()
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2637 {
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2638 if ! $modcache; then
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2639 func_lookup_file "modules/$1"
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2640 sed -n -e "/^License$sed_extract_prog" < "$lookedup_file"
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2641 else
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2642 func_cache_lookup_module "$1"
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2643 # Output the field's value, including the final newline (if any).
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2644 if $have_associative; then
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2645 if eval 'test -n "${modcache_license[$1]+set}"'; then
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2646 eval 'echo "${modcache_license[$1]}"'
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2647 fi
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2648 else
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2649 eval "field_set=\"\$${cachevar}_license_set\""
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2650 if test -n "$field_set"; then
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2651 eval "field_value=\"\$${cachevar}_license\""
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2652 echo "${field_value}"
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2653 fi
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2654 fi
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2655 fi
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2656 }
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2657
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
2658 # func_get_license module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2659 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2660 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2661 # - modcache true or false, from --cache-modules/--no-cache-modules
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
2662 func_get_license ()
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
2663 {
16153
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2664 # Warn if the License field is missing.
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2665 case "$1" in
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2666 *-tests ) ;;
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2667 * )
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2668 license=`func_get_license_raw "$1"`
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2669 if test -z "$license"; then
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2670 func_warning "module $1 lacks a License"
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2671 fi
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2672 ;;
04717ea7c365 gnulib-tool: Verify that the License field is present and non-empty.
Bruno Haible <bruno@clisp.org>
parents: 16122
diff changeset
2673 esac
18474
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2674 case "$1" in
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2675 parse-datetime )
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2676 # These modules are under a weaker license only for the purpose of some
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2677 # users who hand-edit it and don't use gnulib-tool. For the regular
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2678 # gnulib users they are under a stricter license.
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2679 echo "GPL"
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2680 ;;
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2681 * )
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2682 {
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2683 func_get_license_raw "$1"
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2684 # The default is GPL.
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2685 echo "GPL"
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2686 } | sed -e 's,^ *$,,' | sed -e 1q
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2687 ;;
1745af1e1b1d Avoid gnulib-tool warnings about the dependencies of 'parse-datetime'.
Bruno Haible <bruno@clisp.org>
parents: 18471
diff changeset
2688 esac
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
2689 }
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
2690
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
2691 # func_get_maintainer module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2692 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2693 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2694 # - modcache true or false, from --cache-modules/--no-cache-modules
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
2695 func_get_maintainer ()
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
2696 {
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2697 if ! $modcache; then
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2698 func_lookup_file "modules/$1"
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2699 sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file"
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2700 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2701 func_cache_lookup_module "$1"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2702 # Output the field's value, including the final newline (if any).
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2703 if $have_associative; then
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2704 if eval 'test -n "${modcache_maintainer[$1]+set}"'; then
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
2705 eval 'echo "${modcache_maintainer[$1]}"'
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2706 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2707 else
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2708 eval "field_set=\"\$${cachevar}_maintainer_set\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2709 if test -n "$field_set"; then
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2710 eval "field_value=\"\$${cachevar}_maintainer\""
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2711 echo "${field_value}"
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2712 fi
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2713 fi
12855
e4098d9b46fa gnulib-tool: Make caching optional.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12854
diff changeset
2714 fi
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
2715 }
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
2716
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2717 # func_get_tests_module module
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2718 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2719 # - local_gnulib_path from --local-dir
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2720 func_get_tests_module ()
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2721 {
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2722 # The naming convention for tests modules is hardwired: ${module}-tests.
7214
eb43edab28c3 Small fix after --local-dir introduction.
Bruno Haible <bruno@clisp.org>
parents: 7213
diff changeset
2723 if test -f "$gnulib_dir/modules/$1"-tests \
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2724 || func_path_foreach "$local_gnulib_path" func_exists_local_module %dir% "$1-tests"; then
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2725 echo "$1"-tests
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2726 fi
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2727 }
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
2728
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2729 # func_get_dependencies_recursively module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2730 # Input:
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2731 # - local_gnulib_path from --local-dir
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2732 # - modcache true or false, from --cache-modules/--no-cache-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2733 func_get_dependencies_recursively ()
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2734 {
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2735 # In order to process every module only once (for speed), process an "input
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2736 # list" of modules, producing an "output list" of modules. During each round,
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2737 # more modules can be queued in the input list. Once a module on the input
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2738 # list has been processed, it is added to the "handled list", so we can avoid
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2739 # to process it again.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2740 handledmodules=
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2741 inmodules="$1"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2742 outmodules=
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2743 while test -n "$inmodules"; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2744 inmodules_this_round="$inmodules"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2745 inmodules= # Accumulator, queue for next round
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2746 for module in $inmodules_this_round; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2747 func_verify_module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2748 if test -n "$module"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2749 func_append outmodules " $module"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2750 deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2751 for dep in $deps; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2752 func_append inmodules " $dep"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2753 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2754 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2755 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2756 handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2757 # Remove $handledmodules from $inmodules.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2758 for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2759 inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2760 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2761 rm -f "$tmp"/queued-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2762 for m in $outmodules; do echo $m; done | LC_ALL=C sort -u
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2763 }
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2764
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2765 # func_get_link_directive_recursively module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2766 # Input:
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2767 # - local_gnulib_path from --local-dir
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2768 # - modcache true or false, from --cache-modules/--no-cache-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2769 func_get_link_directive_recursively ()
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2770 {
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2771 # In order to process every module only once (for speed), process an "input
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2772 # list" of modules, producing an "output list" of modules. During each round,
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2773 # more modules can be queued in the input list. Once a module on the input
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2774 # list has been processed, it is added to the "handled list", so we can avoid
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2775 # to process it again.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2776 handledmodules=
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2777 inmodules="$1"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2778 outmodules=
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2779 while test -n "$inmodules"; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2780 inmodules_this_round="$inmodules"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2781 inmodules= # Accumulator, queue for next round
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2782 for module in $inmodules_this_round; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2783 func_verify_module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2784 if test -n "$module"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2785 if grep '^Link:[ ]*$' "$lookedup_file" >/dev/null; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2786 # The module description has a 'Link:' field. Ignore the dependencies.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2787 func_append outmodules " $module"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2788 else
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2789 # The module description has no 'Link:' field. Recurse through the dependencies.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2790 deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2791 for dep in $deps; do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2792 func_append inmodules " $dep"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2793 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2794 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2795 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2796 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2797 handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2798 # Remove $handledmodules from $inmodules.
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2799 for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2800 inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2801 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2802 rm -f "$tmp"/queued-modules
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2803 for m in $outmodules; do func_get_link_directive "$m"; done | LC_ALL=C sort -u | sed -e '/^$/d'
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2804 }
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
2805
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2806 # func_acceptable module
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2807 # tests whether a module is acceptable.
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2808 # Input:
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2809 # - avoidlist list of modules to avoid
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2810 func_acceptable ()
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2811 {
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2812 for avoid in $avoidlist; do
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2813 if test "$avoid" = "$1"; then
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2814 return 1
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2815 fi
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2816 done
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2817 return 0
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2818 }
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2819
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2820 # sed expression to keep the first 32 characters of each line.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2821 sed_first_32_chars='s/^\(................................\).*/\1/'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2822
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2823 # func_module_shellfunc_name module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2824 # computes the shell function name that will contain the m4 macros for the module.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2825 # Input:
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2826 # - macro_prefix prefix to use
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2827 # Output:
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2828 # - shellfunc shell function name
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2829 func_module_shellfunc_name ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2830 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2831 case $1 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2832 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2833 shellfunc=func_${macro_prefix}_gnulib_m4code_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2834 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2835 shellfunc=func_${macro_prefix}_gnulib_m4code_$1 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2836 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2837 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2838
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2839 # func_module_shellvar_name module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2840 # computes the shell variable name the will be set to true once the m4 macros
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2841 # for the module have been executed.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2842 # Output:
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2843 # - shellvar shell variable name
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2844 func_module_shellvar_name ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2845 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2846 case $1 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2847 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2848 shellvar=${macro_prefix}_gnulib_enabled_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2849 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2850 shellvar=${macro_prefix}_gnulib_enabled_$1 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2851 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2852 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2853
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2854 # func_module_conditional_name module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2855 # computes the automake conditional name for the module.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2856 # Output:
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2857 # - conditional name of automake conditional
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2858 func_module_conditional_name ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2859 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2860 case $1 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2861 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2862 conditional=${macro_prefix}_GNULIB_ENABLED_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2863 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2864 conditional=${macro_prefix}_GNULIB_ENABLED_$1 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2865 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2866 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2867
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2868 # func_uncond_add_module B
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2869 # notes the presence of B as an unconditional module.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2870 #
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2871 # func_conddep_add_module A B cond
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2872 # notes the presence of a conditional dependency from module A to module B,
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2873 # subject to the condition that A is enabled and cond is true.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2874 #
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2875 # func_cond_module_p B
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2876 # tests whether module B is conditional.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2877 #
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2878 # func_cond_module_condition A B
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2879 # returns the condition when B should be enabled as a dependency of A, once the
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2880 # m4 code for A has been executed.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2881 # Output: - condition
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2882 #
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2883 if $have_associative; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2884 declare -A conddep_isuncond
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2885 declare -A conddep_dependers
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2886 declare -A conddep_condition
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2887 func_uncond_add_module ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2888 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2889 eval 'conddep_isuncond[$1]=true'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2890 eval 'unset conddep_dependers[$1]'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2891 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2892 func_conddep_add_module ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2893 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2894 eval 'isuncond="${conddep_isuncond[$2]}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2895 if test -z "$isuncond"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2896 # No unconditional dependency to B known at this point.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2897 eval 'conddep_dependers[$2]="${conddep_dependers[$2]} $1"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2898 eval 'conddep_condition[$1---$2]="$3"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2899 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2900 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2901 func_cond_module_p ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2902 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2903 eval 'previous_dependers="${conddep_dependers[$1]}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2904 test -n "$previous_dependers"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2905 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2906 func_cond_module_condition ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2907 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2908 eval 'condition="${conddep_condition[$1---$2]}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2909 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2910 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2911 func_uncond_add_module ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2912 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2913 case $1 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2914 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2915 suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2916 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2917 suffix=$1 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2918 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2919 eval 'conddep_isuncond_'"$suffix"'=true'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2920 eval 'unset conddep_dependers_'"$suffix"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2921 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2922 func_conddep_add_module ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2923 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2924 case $2 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2925 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2926 suffix=`echo "$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2927 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2928 suffix=$2 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2929 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2930 eval 'isuncond="${conddep_isuncond_'"$suffix"'}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2931 if test -z "$isuncond"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2932 eval 'conddep_dependers_'"$suffix"'="${conddep_dependers_'"$suffix"'} $1"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2933 suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"`
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2934 eval 'conddep_condition_'"$suffix"'="$3"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2935 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2936 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2937 func_cond_module_p ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2938 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2939 case $1 in
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2940 *[!a-zA-Z0-9_]*)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2941 suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2942 *)
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2943 suffix=$1 ;;
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2944 esac
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2945 eval 'previous_dependers="${conddep_dependers_'"$suffix"'}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2946 test -n "$previous_dependers"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2947 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2948 func_cond_module_condition ()
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2949 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2950 suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"`
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2951 eval 'condition="${conddep_condition_'"$suffix"'}"'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2952 }
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2953 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2954
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2955 # func_modules_transitive_closure
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2956 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
2957 # - local_gnulib_path from --local-dir
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
2958 # - gnu_make true if --gnu-make was given, false otherwise
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
2959 # - modcache true or false, from --cache-modules/--no-cache-modules
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2960 # - modules list of specified modules
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
2961 # - inctests true if tests should be included, false otherwise
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
2962 # - incobsolete true if obsolete modules among dependencies should be
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
2963 # included, blank otherwise
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2964 # - inc_cxx_tests true if C++ interoperability tests should be included,
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2965 # blank otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2966 # - inc_longrunning_tests true if long-runnings tests should be included,
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2967 # blank otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2968 # - inc_privileged_tests true if tests that require root privileges should be
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2969 # included, blank otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2970 # - inc_unportable_tests true if tests that fail on some platforms should be
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
2971 # included, blank otherwise
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2972 # - inc_all_direct_tests true if all kinds of problematic unit tests among
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2973 # the unit tests of the specified modules should be
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2974 # included, blank otherwise
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2975 # - inc_all_indirect_tests true if all kinds of problematic unit tests among
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2976 # the unit tests of the dependencies should be
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
2977 # included, blank otherwise
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2978 # - excl_cxx_tests true if C++ interoperability tests should be excluded,
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2979 # blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2980 # - excl_longrunning_tests true if long-runnings tests should be excluded,
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2981 # blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2982 # - excl_privileged_tests true if tests that require root privileges should be
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2983 # excluded, blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2984 # - excl_unportable_tests true if tests that fail on some platforms should be
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
2985 # excluded, blank otherwise
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
2986 # - avoidlist list of modules to avoid
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2987 # - cond_dependencies true if conditional dependencies shall be supported,
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2988 # blank otherwise
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
2989 # - tmp pathname of a temporary directory
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2990 # Output:
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2991 # - modules list of modules, including dependencies
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2992 # - conddep_dependers, conddep_condition information about conditionally
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2993 # enabled modules
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
2994 func_modules_transitive_closure ()
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
2995 {
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
2996 sed_escape_dependency='s|\([/.]\)|\\\1|g'
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
2997 # In order to process every module only once (for speed), process an "input
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
2998 # list" of modules, producing an "output list" of modules. During each round,
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
2999 # more modules can be queued in the input list. Once a module on the input
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3000 # list has been processed, it is added to the "handled list", so we can avoid
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3001 # to process it again.
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3002 handledmodules=
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3003 inmodules="$modules"
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3004 outmodules=
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
3005 fmtc_inc_all_tests="$inc_all_direct_tests"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
3006 if test "$cond_dependencies" = true; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3007 for module in $inmodules; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3008 func_verify_module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3009 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3010 if func_acceptable $module; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3011 func_uncond_add_module $module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3012 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3013 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3014 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3015 fi
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3016 while test -n "$inmodules"; do
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3017 inmodules_this_round="$inmodules"
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3018 inmodules= # Accumulator, queue for next round
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3019 for module in $inmodules_this_round; do
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
3020 func_verify_module
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
3021 if test -n "$module"; then
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
3022 if func_acceptable $module; then
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
3023 func_append outmodules " $module"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
3024 if test "$cond_dependencies" = true; then
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3025 if ! $gnu_make \
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3026 && func_get_automake_snippet_conditional $module \
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3027 | grep '^if ' > /dev/null; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3028 # A module whose Makefile.am snippet contains a reference to an
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3029 # automake conditional. If we were to use it conditionally, we
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3030 # would get an error
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3031 # configure: error: conditional "..." was never defined.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3032 # because automake 1.11.1 does not handle nested conditionals
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3033 # correctly. As a workaround, make the module unconditional.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3034 func_uncond_add_module $module
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3035 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3036 if func_cond_module_p $module; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3037 conditional=true
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3038 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3039 conditional=false
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3040 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3041 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3042 deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3043 # Duplicate dependencies are harmless, but Jim wants a warning.
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3044 duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d`
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3045 if test -n "$duplicated_deps"; then
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
3046 func_warning "module $module has duplicated dependencies: "`echo $duplicated_deps`
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3047 fi
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
3048 if $inctests; then
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3049 testsmodule=`func_get_tests_module $module`
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3050 if test -n "$testsmodule"; then
13299
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3051 deps="$deps $testsmodule"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3052 fi
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3053 fi
13299
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3054 for dep in $deps; do
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3055 # Determine whether to include the dependency or tests module.
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3056 inc=true
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3057 for word in `func_get_status $dep`; do
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3058 case "$word" in
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3059 obsolete)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3060 test -n "$incobsolete" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3061 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3062 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3063 c++-test)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3064 test -z "$excl_cxx_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3065 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3066 test -n "$fmtc_inc_all_tests" || test -n "$inc_cxx_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3067 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3068 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3069 longrunning-test)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3070 test -z "$excl_longrunning_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3071 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3072 test -n "$fmtc_inc_all_tests" || test -n "$inc_longrunning_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3073 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3074 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3075 privileged-test)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3076 test -z "$excl_privileged_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3077 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3078 test -n "$fmtc_inc_all_tests" || test -n "$inc_privileged_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3079 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3080 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3081 unportable-test)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3082 test -z "$excl_unportable_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3083 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3084 test -n "$fmtc_inc_all_tests" || test -n "$inc_unportable_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3085 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3086 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3087 *-test)
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3088 test -n "$fmtc_inc_all_tests" \
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3089 || inc=false
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3090 ;;
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3091 esac
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3092 done
15854
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
3093 if $inc && func_acceptable "$dep"; then
13299
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3094 func_append inmodules " $dep"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
3095 if test "$cond_dependencies" = true; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3096 escaped_dep=`echo "$dep" | sed -e "$sed_escape_dependency"`
14806
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3097 sed_extract_condition1='/^ *'"$escaped_dep"' *$/{
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3098 s/^.*$/true/p
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3099 }'
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3100 sed_extract_condition2='/^ *'"$escaped_dep"' *\[.*\] *$/{
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3101 s/^ *'"$escaped_dep"' *\[\(.*\)\] *$/\1/p
e551e9a7ef38 gnulib-tool: fix portability problem with MacOS sed
Paul Eggert <eggert@cs.ucla.edu>
parents: 14682
diff changeset
3102 }'
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3103 condition=`func_get_dependencies $module | sed -n -e "$sed_extract_condition1" -e "$sed_extract_condition2"`
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3104 if test "$condition" = true; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3105 condition=
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3106 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3107 if test -n "$condition"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3108 func_conddep_add_module "$module" "$dep" "$condition"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3109 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3110 if $conditional; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3111 func_conddep_add_module "$module" "$dep" true
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3112 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3113 func_uncond_add_module "$dep"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3114 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3115 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3116 fi
13299
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3117 fi
b50c33cca624 Fix regression from 2010-04-25.
Bruno Haible <bruno@clisp.org>
parents: 13264
diff changeset
3118 done
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
3119 fi
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
3120 fi
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
3121 done
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3122 handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u`
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3123 # Remove $handledmodules from $inmodules.
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3124 for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
3125 inmodules=`echo "$handledmodules" | LC_ALL=C join -v 2 - "$tmp"/queued-modules`
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
3126 fmtc_inc_all_tests="$inc_all_indirect_tests"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
3127 done
7320
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3128 modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u`
9349ee4e633c Speed up func_modules_transitive_closure.
Bruno Haible <bruno@clisp.org>
parents: 7319
diff changeset
3129 rm -f "$tmp"/queued-modules
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
3130 }
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
3131
13420
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3132 # func_show_module_list
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3133 # Input:
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3134 # - specified_modules list of specified modules (one per line, sorted)
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3135 # - modules complete list of modules (one per line, sorted)
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3136 # - tmp pathname of a temporary directory
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3137 func_show_module_list ()
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3138 {
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3139 if case "$TERM" in
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3140 xterm*) test -t 1;;
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3141 *) false;;
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3142 esac; then
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3143 # Assume xterm compatible escape sequences.
17964
5a6167820a2c gnulib-tool: output bold attribute more portably
Mats Erik Andersson <gnu@gisladisker.se>
parents: 17888
diff changeset
3144 bold_on=`printf '\033[1m'`
5a6167820a2c gnulib-tool: output bold attribute more portably
Mats Erik Andersson <gnu@gisladisker.se>
parents: 17888
diff changeset
3145 bold_off=`printf '\033[0m'`
13420
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3146 else
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3147 bold_on=
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3148 bold_off=
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3149 fi
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3150 echo "Module list with included dependencies (indented):"
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3151 echo "$specified_modules" | sed -e '/^$/d' -e 's/$/| /' > "$tmp"/specified-modules
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3152 echo "$modules" | sed -e '/^$/d' \
14625
1a2352cb014f Change gnulib-tool to support NetBSD's join
J.T. Conklin <jtc@acorntoolworks.com>
parents: 14385
diff changeset
3153 | LC_ALL=C join -t '|' -a2 "$tmp"/specified-modules - \
13420
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3154 | sed -e 's/^\(.*\)|.*/|\1/' -e 's/^/ /' -e 's/^ |\(.*\)$/ '"${bold_on}"'\1'"${bold_off}"'/'
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3155 }
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
3156
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3157 # func_modules_transitive_closure_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3158 # Determine main module list and tests-related module list separately.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3159 # The main module list is the transitive closure of the specified modules,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3160 # ignoring tests modules. Its lib/* sources go into $sourcebase/. If --lgpl
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3161 # is specified, it will consist only of LGPLed source.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3162 # The tests-related module list is the transitive closure of the specified
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3163 # modules, including tests modules, minus the main module list excluding
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3164 # modules of applicability 'all'. Its lib/* sources (brought in through
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3165 # dependencies of *-tests modules) go into $testsbase/. It may contain GPLed
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3166 # source, even if --lgpl is specified.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3167 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3168 # - local_gnulib_path from --local-dir
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3169 # - modcache true or false, from --cache-modules/--no-cache-modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3170 # - specified_modules list of specified modules
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
3171 # - inctests true if tests should be included, false otherwise
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3172 # - incobsolete true if obsolete modules among dependencies should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3173 # included, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3174 # - inc_cxx_tests true if C++ interoperability tests should be included,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3175 # blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3176 # - inc_longrunning_tests true if long-runnings tests should be included,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3177 # blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3178 # - inc_privileged_tests true if tests that require root privileges should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3179 # included, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3180 # - inc_unportable_tests true if tests that fail on some platforms should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3181 # included, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3182 # - inc_all_direct_tests true if all kinds of problematic unit tests among
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3183 # the unit tests of the specified modules should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3184 # included, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3185 # - inc_all_indirect_tests true if all kinds of problematic unit tests among
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3186 # the unit tests of the dependencies should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3187 # included, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3188 # - excl_cxx_tests true if C++ interoperability tests should be excluded,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3189 # blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3190 # - excl_longrunning_tests true if long-runnings tests should be excluded,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3191 # blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3192 # - excl_privileged_tests true if tests that require root privileges should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3193 # excluded, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3194 # - excl_unportable_tests true if tests that fail on some platforms should be
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3195 # excluded, blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3196 # - avoidlist list of modules to avoid
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3197 # - cond_dependencies true if conditional dependencies shall be supported,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3198 # blank otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3199 # - tmp pathname of a temporary directory
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3200 # Output:
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3201 # - main_modules list of modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3202 # - testsrelated_modules list of tests-related modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3203 # - conddep_dependers, conddep_condition information about conditionally
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3204 # enabled modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3205 func_modules_transitive_closure_separately ()
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3206 {
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3207 # Determine main module list.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3208 saved_inctests="$inctests"
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
3209 inctests=false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3210 modules="$specified_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3211 func_modules_transitive_closure
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3212 main_modules="$modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3213 inctests="$saved_inctests"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3214 if test $verbose -ge 1; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3215 echo "Main module list:"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3216 echo "$main_modules" | sed -e 's/^/ /'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3217 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3218 # Determine tests-related module list.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3219 echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3220 testsrelated_modules=`for module in $main_modules; do
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3221 if test \`func_get_applicability $module\` = main; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3222 echo $module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3223 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3224 done \
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3225 | LC_ALL=C sort -u | LC_ALL=C join -v 2 - "$tmp"/final-modules`
18741
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3226 # If testsrelated_modules consists only of modules with applicability 'all',
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3227 # set it to empty (because such modules are only helper modules for other modules).
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3228 have_nontrivial_testsrelated_modules=
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3229 for module in $testsrelated_modules; do
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3230 if test `func_get_applicability $module` != all; then
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3231 have_nontrivial_testsrelated_modules=yes
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3232 break
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3233 fi
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3234 done
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3235 if test -z "$have_nontrivial_testsrelated_modules"; then
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3236 testsrelated_modules=
8eca26cecdfe gnulib-tool: Don't produce a tests directory with only snippet .h files.
Bruno Haible <bruno@clisp.org>
parents: 18734
diff changeset
3237 fi
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3238 if test $verbose -ge 1; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3239 echo "Tests-related module list:"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3240 echo "$testsrelated_modules" | sed -e 's/^/ /'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3241 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3242 }
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3243
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3244 # func_determine_use_libtests
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3245 # Determines whether a $testsbase/libtests.a is needed.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3246 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3247 # - local_gnulib_path from --local-dir
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3248 # - modcache true or false, from --cache-modules/--no-cache-modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3249 # - testsrelated_modules list of tests-related modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3250 # Output:
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3251 # - use_libtests true if a $testsbase/libtests.a is needed, false otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3252 func_determine_use_libtests ()
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3253 {
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3254 use_libtests=false
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3255 for module in $testsrelated_modules; do
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3256 func_verify_nontests_module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3257 if test -n "$module"; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3258 all_files=`func_get_filelist $module`
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3259 # Test whether some file in $all_files lies in lib/.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3260 for f in $all_files; do
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3261 case $f in
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3262 lib/*)
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3263 use_libtests=true
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3264 break 2
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3265 ;;
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3266 esac
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3267 done
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3268 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3269 done
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3270 }
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3271
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3272 # func_modules_add_dummy
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3273 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3274 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3275 # - modcache true or false, from --cache-modules/--no-cache-modules
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3276 # - modules list of modules, including dependencies
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3277 # Output:
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3278 # - modules list of modules, including 'dummy' if needed
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3279 func_modules_add_dummy ()
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3280 {
10985
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3281 # Determine whether any module provides a lib_SOURCES augmentation.
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3282 have_lib_SOURCES=
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3283 for module in $modules; do
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3284 func_verify_nontests_module
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3285 if test -n "$module"; then
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3286 # Extract the value of "lib_SOURCES += ...".
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
3287 for file in `func_get_automake_snippet "$module" | combine_lines |
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
3288 sed -n -e 's,^lib_SOURCES[ ]*+=\([^#]*\).*$,\1,p'`; do
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3289 # Ignore .h files since they are not compiled.
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3290 case "$file" in
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3291 *.h) ;;
10985
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3292 *)
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3293 have_lib_SOURCES=yes
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3294 break 2
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3295 ;;
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3296 esac
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3297 done
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3298 fi
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3299 done
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3300 # Add the dummy module, to make sure the library will be non-empty.
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3301 if test -z "$have_lib_SOURCES"; then
8668
9c0fa5819ce3 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8626
diff changeset
3302 if func_acceptable "dummy"; then
9c0fa5819ce3 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8626
diff changeset
3303 func_append modules " dummy"
9c0fa5819ce3 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8626
diff changeset
3304 fi
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3305 fi
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3306 }
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
3307
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3308 # func_modules_add_dummy_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3309 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3310 # - local_gnulib_path from --local-dir
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3311 # - modcache true or false, from --cache-modules/--no-cache-modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3312 # - main_modules list of modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3313 # - testsrelated_modules list of tests-related modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3314 # - use_libtests true if a $testsbase/libtests.a is needed, false otherwise
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3315 # Output:
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3316 # - main_modules list of modules, including 'dummy' if needed
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3317 # - testsrelated_modules list of tests-related modules, including 'dummy' if
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3318 # needed
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3319 func_modules_add_dummy_separately ()
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3320 {
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3321 # Add the dummy module to the main module list if needed.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3322 modules="$main_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3323 func_modules_add_dummy
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3324 main_modules="$modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3325
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3326 # Add the dummy module to the tests-related module list if needed.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3327 if $use_libtests; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3328 modules="$testsrelated_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3329 func_modules_add_dummy
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3330 testsrelated_modules="$modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3331 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3332 }
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3333
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3334 # func_modules_notice
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3335 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3336 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3337 # - modcache true or false, from --cache-modules/--no-cache-modules
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3338 # - verbose integer, default 0, inc/decremented by --verbose/--quiet
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3339 # - modules list of modules, including dependencies
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3340 func_modules_notice ()
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3341 {
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3342 if test $verbose -ge -1; then
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3343 for module in $modules; do
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3344 func_verify_module
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3345 if test -n "$module"; then
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3346 msg=`func_get_notice $module`
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3347 if test -n "$msg"; then
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3348 echo "Notice from module $module:"
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3349 echo "$msg" | sed -e 's/^/ /'
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3350 fi
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3351 fi
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3352 done
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3353 fi
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3354 }
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
3355
5348
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3356 # func_modules_to_filelist
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3357 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3358 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3359 # - modcache true or false, from --cache-modules/--no-cache-modules
5348
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3360 # - modules list of modules, including dependencies
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3361 # Output:
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3362 # - files list of files
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3363 func_modules_to_filelist ()
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3364 {
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3365 files=
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3366 for module in $modules; do
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3367 func_verify_module
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3368 if test -n "$module"; then
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
3369 fs=`func_get_filelist $module`
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
3370 func_append files " $fs"
5348
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3371 fi
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3372 done
7319
1726cc39709b Use "sort -u" where it makes sense.
Bruno Haible <bruno@clisp.org>
parents: 7299
diff changeset
3373 files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
5348
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3374 }
6afb021e2fc1 Move duplicated code into function func_modules_to_filelist().
Bruno Haible <bruno@clisp.org>
parents: 5347
diff changeset
3375
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3376 # func_modules_to_filelist_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3377 # Determine the final file lists.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3378 # They must be computed separately, because files in lib/* go into
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3379 # $sourcebase/ if they are in the main file list but into $testsbase/
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3380 # if they are in the tests-related file list. Furthermore lib/dummy.c
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3381 # can be in both.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3382 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3383 # - local_gnulib_path from --local-dir
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3384 # - modcache true or false, from --cache-modules/--no-cache-modules
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3385 # - main_modules list of modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3386 # - testsrelated_modules list of tests-related modules, including dependencies
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3387 func_modules_to_filelist_separately ()
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3388 {
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3389 # Determine final main file list.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3390 modules="$main_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3391 func_modules_to_filelist
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3392 main_files="$files"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3393 # Determine final tests-related file list.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3394 modules="$testsrelated_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3395 func_modules_to_filelist
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3396 testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'`
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3397 # Merge both file lists.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3398 sed_remove_empty_lines='/^$/d'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3399 files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u`
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3400 if test $verbose -ge 0; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3401 echo "File list:"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3402 sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3403 echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/ /'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3404 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3405 }
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3406
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3407 # func_compute_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3408 # Determine include_guard_prefix.
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3409 # Input:
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3410 # - macro_prefix prefix of gl_LIBOBJS macros to use
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3411 # Output:
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3412 # - include_guard_prefix replacement for ${gl_include_guard_prefix}
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3413 # - sed_replace_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3414 # sed expression for resolving ${gl_include_guard_prefix}
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3415 func_compute_include_guard_prefix ()
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3416 {
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3417 if test "$macro_prefix" = gl; then
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3418 include_guard_prefix='GL'
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3419 else
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3420 include_guard_prefix='GL_'`echo "$macro_prefix" | LC_ALL=C tr '[a-z]' '[A-Z]'`
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3421 fi
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3422 sed_replace_include_guard_prefix='s/\${gl_include_guard_prefix}/'"${include_guard_prefix}"'/g'
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3423 }
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3424
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3425 # func_execute_command command [args...]
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3426 # Executes a command.
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3427 # Uses also the variables
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3428 # - verbose integer, default 0, inc/decremented by --verbose/--quiet
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3429 func_execute_command ()
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3430 {
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3431 if test $verbose -ge 0; then
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3432 echo "executing $*"
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3433 "$@"
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3434 else
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
3435 # Commands like automake produce output to stderr even when they succeed.
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3436 # Turn this output off if the command succeeds.
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3437 "$@" > "$tmp"/cmdout 2>&1
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3438 cmdret=$?
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3439 if test $cmdret = 0; then
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3440 rm -f "$tmp"/cmdout
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3441 else
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3442 echo "executing $*"
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3443 cat "$tmp"/cmdout 1>&2
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3444 rm -f "$tmp"/cmdout
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3445 (exit $cmdret)
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3446 fi
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3447 fi
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3448 }
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
3449
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3450 # func_dest_tmpfilename file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3451 # determines the name of a temporary file (file is relative to destdir).
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3452 # Input:
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3453 # - destdir target directory
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3454 # - doit : if actions shall be executed, false if only to be printed
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3455 # - tmp pathname of a temporary directory
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3456 # Sets variable:
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3457 # - tmpfile absolute filename of the temporary file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3458 func_dest_tmpfilename ()
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3459 {
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3460 if $doit; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3461 # Put the new contents of $file in a file in the same directory (needed
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3462 # to guarantee that an 'mv' to "$destdir/$file" works).
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3463 tmpfile="$destdir/$1.tmp"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3464 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3465 # Put the new contents of $file in a file in a temporary directory
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3466 # (because the directory of "$file" might not exist).
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3467 tmpfile="$tmp"/`basename "$1"`.tmp
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3468 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3469 }
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3470
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3471 # func_is_local_file lookedup_file file
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3472 # check whether file should be instantiated from local gnulib directory
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3473 func_is_local_file ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3474 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3475 dname=$1
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3476 func_remove_suffix dname "/$2"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3477 func_path_foreach "$local_gnulib_path" test %dir% = "$dname"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3478 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3479
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3480 # func_should_link
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3481 # determines whether the file $f should be copied, symlinked, or hardlinked.
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3482 # Input:
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3483 # - copymode copy mode for files in general
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3484 # - lcopymode copy mode for files from local_gnulib_path
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3485 # - f the original file name
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3486 # - lookedup_file name of the merged (combined) file
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3487 # Sets variable:
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3488 # - copyaction copy or symlink or hardlink
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3489 func_should_link ()
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3490 {
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3491 if test -n "$lcopymode" && func_is_local_file "$lookedup_file" "$f"; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3492 copyaction="$lcopymode"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3493 else
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3494 if test -n "$copymode"; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3495 copyaction="$copymode"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3496 else
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3497 copyaction=copy
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3498 fi
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3499 fi
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3500 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3501
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3502 # func_add_file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3503 # copies a file from gnulib into the destination directory. The destination
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3504 # is known to not exist.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3505 # Input:
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3506 # - destdir target directory
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3507 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3508 # - modcache true or false, from --cache-modules/--no-cache-modules
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3509 # - f the original file name
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3510 # - lookedup_file name of the merged (combined) file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3511 # - lookedup_tmp true if it is located in the tmp directory, blank otherwise
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3512 # - g the rewritten file name
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3513 # - tmpfile absolute filename of the temporary file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3514 # - doit : if actions shall be executed, false if only to be printed
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3515 # - copymode copy mode for files in general
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3516 # - lcopymode copy mode for files from local_gnulib_path
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3517 func_add_file ()
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3518 {
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3519 if $doit; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3520 echo "Copying file $g"
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3521 func_should_link
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3522 if test "$copyaction" = symlink \
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3523 && test -z "$lookedup_tmp" \
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
3524 && cmp -s "$lookedup_file" "$tmpfile"; then
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3525 func_symlink_if_changed "$lookedup_file" "$destdir/$g"
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3526 else
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3527 if test "$copyaction" = hardlink \
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3528 && test -z "$lookedup_tmp" \
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3529 && cmp -s "$lookedup_file" "$tmpfile"; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3530 func_hardlink "$lookedup_file" "$destdir/$g"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3531 else
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3532 mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3533 fi
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3534 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3535 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3536 echo "Copy file $g"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3537 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3538 }
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3539
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3540 # func_update_file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3541 # copies a file from gnulib into the destination directory. The destination
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3542 # is known to exist.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3543 # Input:
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3544 # - destdir target directory
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3545 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3546 # - modcache true or false, from --cache-modules/--no-cache-modules
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3547 # - f the original file name
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3548 # - lookedup_file name of the merged (combined) file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3549 # - lookedup_tmp true if it is located in the tmp directory, blank otherwise
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3550 # - g the rewritten file name
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3551 # - tmpfile absolute filename of the temporary file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3552 # - doit : if actions shall be executed, false if only to be printed
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3553 # - copymode copy mode for files in general
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3554 # - lcopymode copy mode for files from local_gnulib_path
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3555 # - already_present nonempty if the file should already exist, empty otherwise
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3556 func_update_file ()
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3557 {
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
3558 if cmp -s "$destdir/$g" "$tmpfile"; then
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3559 : # The file has not changed.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3560 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3561 # Replace the file.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3562 if $doit; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3563 if test -n "$already_present"; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3564 echo "Updating file $g (backup in ${g}~)"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3565 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3566 echo "Replacing file $g (non-gnulib code backed up in ${g}~) !!"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3567 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3568 mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3569 func_should_link
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3570 if test "$copyaction" = symlink \
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3571 && test -z "$lookedup_tmp" \
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
3572 && cmp -s "$lookedup_file" "$tmpfile"; then
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3573 func_symlink_if_changed "$lookedup_file" "$destdir/$g"
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3574 else
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3575 if test "$copyaction" = hardlink \
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3576 && test -z "$lookedup_tmp" \
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3577 && cmp -s "$lookedup_file" "$tmpfile"; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3578 func_hardlink "$lookedup_file" "$destdir/$g"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3579 else
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3580 mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
3581 fi
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3582 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3583 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3584 if test -n "$already_present"; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3585 echo "Update file $g (backup in ${g}~)"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3586 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3587 echo "Replace file $g (non-gnulib code backed up in ${g}~) !!"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3588 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3589 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3590 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3591 }
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
3592
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3593 # func_emit_lib_Makefile_am
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
3594 # emits the contents of library makefile to standard output.
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3595 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3596 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3597 # - modcache true or false, from --cache-modules/--no-cache-modules
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3598 # - modules list of modules, including dependencies
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3599 # - libname library name
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3600 # - pobase directory relative to destdir where to place *.po files
7644
3c0ece164bab Replace build-aux/ also in the Makefile snippet.
Bruno Haible <bruno@clisp.org>
parents: 7643
diff changeset
3601 # - auxdir directory relative to destdir where to place build aux files
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3602 # - gnu_make true if --gnu-make was given, false otherwise
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
3603 # - makefile_name from --makefile-name
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
3604 # - libtool true if libtool will be used, false or blank otherwise
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
3605 # - macro_prefix prefix of gl_LIBOBJS macros to use
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3606 # - po_domain prefix of i18n domain to use (without -gnulib suffix)
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
3607 # - witness_c_macro from --witness-c-macro
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3608 # - actioncmd (optional) command that will reproduce this invocation
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3609 # - for_test true if creating a package for testing, false otherwise
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3610 # - sed_replace_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3611 # sed expression for resolving ${gl_include_guard_prefix}
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3612 # - destfile filename relative to destdir of makefile being generated
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3613 # Input/Output:
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3614 # - makefile_am_edits and makefile_am_edit${edit}_{dir,var,val,dotfirst}
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3615 # list of edits to be done to Makefile.am variables
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3616 # Output:
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3617 # - uses_subdirs nonempty if object files in subdirs exist
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3618 func_emit_lib_Makefile_am ()
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3619 {
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3620
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3621 # When using GNU make, or when creating an includable Makefile.am snippet,
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3622 # augment variables with += instead of assigning them.
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3623 if $gnu_make || test -n "$makefile_name"; then
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3624 assign='+='
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3625 else
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3626 assign='='
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3627 fi
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
3628 if test "$libtool" = true; then
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3629 libext=la
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3630 perhapsLT=LT
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
3631 sed_eliminate_LDFLAGS="$sed_noop"
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3632 else
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3633 libext=a
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3634 perhapsLT=
7335
6a496bee90ff * gnulib-tool: Avoid space-tab.
Eric Blake <ebb9@byu.net>
parents: 7332
diff changeset
3635 sed_eliminate_LDFLAGS='/^lib_LDFLAGS[ ]*+=/d'
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3636 fi
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3637 if $for_test; then
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3638 # When creating a package for testing: Attempt to provoke failures,
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3639 # especially link errors, already during "make" rather than during
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3640 # "make check", because "make check" is not possible in a cross-compiling
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3641 # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3642 sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3643 else
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
3644 sed_transform_check_PROGRAMS="$sed_noop"
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3645 fi
7421
8bace4b08db5 Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents: 7391
diff changeset
3646 echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
39737
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
3647 $gnu_make ||
bf73bd094dbd gnulib-tool: minor tweaks for --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
3648 echo "## Process this file with automake to produce Makefile.in."
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
3649 func_emit_copyright_notice
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3650 if test -n "$actioncmd"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
3651 printf '# Reproduce by:\n%s\n' "$actioncmd"
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3652 fi
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3653 echo
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3654 uses_subdirs=
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3655 {
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3656 for module in $modules; do
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3657 func_verify_nontests_module
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3658 if test -n "$module"; then
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3659 {
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3660 func_get_automake_snippet_conditional "$module" |
12917
66202bb71d56 Fix incorrect Makefile.am generation in German locale.
Bruno Haible <bruno@clisp.org>
parents: 12903
diff changeset
3661 LC_ALL=C \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
3662 sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
9005
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
3663 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
3664 -e "$sed_eliminate_LDFLAGS" \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
3665 -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
3666 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
3667 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3668 -e "$sed_transform_check_PROGRAMS" \
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3669 -e "$sed_replace_include_guard_prefix"
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3670 if test "$module" = 'alloca'; then
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3671 echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
3672 echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@"
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3673 fi
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
3674 } | combine_lines "${libname}_${libext}_SOURCES" > "$tmp"/amsnippet1
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3675 {
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3676 func_get_automake_snippet_unconditional "$module" |
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3677 LC_ALL=C sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3678 } > "$tmp"/amsnippet2
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
3679 # Skip the contents if it's entirely empty.
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3680 if grep '[^ ]' "$tmp"/amsnippet1 "$tmp"/amsnippet2 > /dev/null ; then
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3681 echo "## begin gnulib module $module"
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3682 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3683 echo "ifeq (,\$(OMIT_GNULIB_MODULE_$module))"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3684 convert_to_gnu_make='s/^if \(.*\)/ifneq (,$(\1))/'
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3685 else
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3686 convert_to_gnu_make=
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3687 fi
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3688 echo
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
3689 if test "$cond_dependencies" = true; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3690 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3691 func_module_conditional_name "$module"
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3692 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3693 echo "ifneq (,\$($conditional))"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3694 else
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3695 echo "if $conditional"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3696 fi
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3697 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3698 fi
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3699 sed "$convert_to_gnu_make" "$tmp"/amsnippet1
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
3700 if test "$cond_dependencies" = true; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3701 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3702 echo "endif"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3703 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3704 fi
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3705 sed "$convert_to_gnu_make" "$tmp"/amsnippet2
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3706 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3707 echo "endif"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3708 fi
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3709 echo "## end gnulib module $module"
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3710 echo
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3711 fi
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
3712 rm -f "$tmp"/amsnippet1 "$tmp"/amsnippet2
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3713 # Test whether there are some source files in subdirectories.
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3714 for f in `func_get_filelist "$module"`; do
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3715 case $f in
10985
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3716 lib/*/*.c)
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3717 uses_subdirs=yes
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3718 break
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
3719 ;;
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3720 esac
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3721 done
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3722 fi
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3723 done
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
3724 } > "$tmp"/allsnippets
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3725 if test -z "$makefile_name"; then
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3726 # If there are source files in subdirectories, prevent collision of the
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3727 # object files (example: hash.c and libxml/hash.c).
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3728 subdir_options=
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3729 if test -n "$uses_subdirs"; then
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3730 subdir_options=' subdir-objects'
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3731 fi
39943
b1ba0c77fa16 Assume Automake >= 1.11.
Bruno Haible <bruno@clisp.org>
parents: 39941
diff changeset
3732 echo "AUTOMAKE_OPTIONS = 1.11 gnits${subdir_options}"
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3733 fi
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
3734 echo
7246
4a748ab30907 * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
Paul Eggert <eggert@cs.ucla.edu>
parents: 7245
diff changeset
3735 if test -z "$makefile_name"; then
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3736 echo "SUBDIRS ="
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3737 echo "noinst_HEADERS ="
7701
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3738 echo "noinst_LIBRARIES ="
7691
33b654c2cba8 Initialize also noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7660
diff changeset
3739 echo "noinst_LTLIBRARIES ="
16713
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
3740 # Automake versions < 1.11.4 create an empty pkgdatadir at
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
3741 # installation time if you specify pkgdata_DATA to empty.
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
3742 # See automake bugs #10997 and #11030:
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
3743 # * https://debbugs.gnu.org/10997
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
3744 # * https://debbugs.gnu.org/11030
16713
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
3745 # So we need this workaround.
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
3746 if grep '^pkgdata_DATA *+=' "$tmp"/allsnippets > /dev/null; then
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3747 echo "pkgdata_DATA ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3748 fi
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3749 echo "EXTRA_DIST ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3750 echo "BUILT_SOURCES ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3751 echo "SUFFIXES ="
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
3752 fi
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3753 echo "MOSTLYCLEANFILES $assign core *.stackdump"
7246
4a748ab30907 * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
Paul Eggert <eggert@cs.ucla.edu>
parents: 7245
diff changeset
3754 if test -z "$makefile_name"; then
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3755 echo "MOSTLYCLEANDIRS ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3756 echo "CLEANFILES ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3757 echo "DISTCLEANFILES ="
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3758 echo "MAINTAINERCLEANFILES ="
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3759 fi
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3760 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3761 echo "# Start of GNU Make output."
18910
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3762
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3763 # Put autoconf output into a temporary file, so that its exit status
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3764 # can be checked from the shell. Signal any error by putting a
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3765 # syntax error into the output makefile.
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3766 ${AUTOCONF} -t 'AC_SUBST:$1 = @$1@' "$configure_ac" \
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3767 >"$tmp"/makeout 2>"$tmp"/makeout2 &&
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3768 LC_ALL=C sort -u "$tmp"/makeout || {
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3769 echo "== gnulib-tool GNU Make output failed as follows =="
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3770 sed 's/^/# stderr: /' "$tmp"/makeout2
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3771 }
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3772 rm -f "$tmp"/makeout "$tmp"/makeout2
5f711c62458f gnulib-tool: improve GNU Make debugging
Paul Eggert <eggert@cs.ucla.edu>
parents: 18786
diff changeset
3773
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3774 echo "# End of GNU Make output."
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3775 else
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3776 echo "# No GNU Make output."
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3777 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3778 # Execute edits that apply to the Makefile.am being generated.
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3779 edit=0
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3780 while test $edit != $makefile_am_edits; do
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3781 edit=`expr $edit + 1`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3782 eval dir=\"\$makefile_am_edit${edit}_dir\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3783 eval var=\"\$makefile_am_edit${edit}_var\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3784 eval val=\"\$makefile_am_edit${edit}_val\"
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3785 eval dotfirst=\"\$makefile_am_edit${edit}_dotfirst\"
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3786 if test -n "$var"; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3787 if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3788 if test "${var}" = SUBDIRS && test -n "$dotfirst"; then
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3789 # The added subdirectory ${val} needs to be mentioned after '.'.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3790 # Since we don't have '.' among SUBDIRS so far, add it now.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3791 val=". ${val}"
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3792 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3793 echo "${var} += ${val}"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3794 eval "makefile_am_edit${edit}_var="
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3795 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3796 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3797 done
14917
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3798 if test -n "$witness_c_macro"; then
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3799 cppflags_part1=" -D$witness_c_macro=1"
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3800 else
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3801 cppflags_part1=
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3802 fi
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3803 if $for_test; then
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3804 cppflags_part2=" -DGNULIB_STRICT_CHECKING=1"
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3805 else
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3806 cppflags_part2=
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3807 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3808 if test -z "$makefile_name"; then
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3809 echo
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
3810 echo "AM_CPPFLAGS =$cppflags_part1$cppflags_part2"
11261
f0359b41944f Make it easier to use the 'visibility' module.
Bruno Haible <bruno@clisp.org>
parents: 11249
diff changeset
3811 echo "AM_CFLAGS ="
14917
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3812 else
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3813 if test -n "$cppflags_part1$cppflags_part2"; then
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3814 echo
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3815 echo "AM_CPPFLAGS +=$cppflags_part1$cppflags_part2"
42a9e4eb100a gnulib-tool: Addendum to 2011-06-08 commit.
Bruno Haible <bruno@clisp.org>
parents: 14908
diff changeset
3816 fi
7240
e9d3ace50303 Slightly change the output generated by --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7239
diff changeset
3817 fi
6750
608add4e5b80 Support for packages that use "gettextize --intl". From Claudio Fontana.
Bruno Haible <bruno@clisp.org>
parents: 6745
diff changeset
3818 echo
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
3819 if LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$tmp"/allsnippets > /dev/null \
11463
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3820 || { test -n "$makefile_name" \
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3821 && test -f "$sourcebase/Makefile.am" \
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3822 && LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$sourcebase/Makefile.am" > /dev/null; \
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3823 }; then
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3824 # One of the snippets or the user's Makefile.am already specifies an
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3825 # installation location for the library. Don't confuse automake by saying
9b74d1d0b267 Make it easier to distribute gnulib-built libraries.
Bruno Haible <bruno@clisp.org>
parents: 11461
diff changeset
3826 # it should not be installed.
7701
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3827 :
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3828 else
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3829 # By default, the generated library should not be installed.
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3830 echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext"
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3831 fi
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3832 echo
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3833 echo "${libname}_${libext}_SOURCES ="
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3834 # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
3835 # automake during its analysis looks for $(LIBOBJS), not for @LIBOBJS@.
7701
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3836 echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3837 echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)"
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3838 echo "EXTRA_${libname}_${libext}_SOURCES ="
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3839 if test "$libtool" = true; then
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3840 echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)"
13763
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3841 echo "${libname}_${libext}_LDFLAGS += -no-undefined"
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3842 # Synthesize an ${libname}_${libext}_LDFLAGS augmentation by combining
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3843 # the link dependencies of all modules.
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3844 for module in $modules; do
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3845 func_verify_nontests_module
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3846 if test -n "$module"; then
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3847 func_get_link_directive "$module"
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3848 fi
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3849 done \
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3850 | LC_ALL=C sed -e '/^$/d' -e 's/ when linking with libtool.*//' \
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3851 | LC_ALL=C sort -u \
064af6542c0a gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
Bruno Haible <bruno@clisp.org>
parents: 13759
diff changeset
3852 | LC_ALL=C sed -e 's/^/'"${libname}_${libext}"'_LDFLAGS += /'
7701
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3853 fi
c59b96cb52c7 Fix double initialization of noinst_LTLIBRARIES.
Bruno Haible <bruno@clisp.org>
parents: 7691
diff changeset
3854 echo
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3855 if test -n "$pobase"; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3856 echo "AM_CPPFLAGS += -DDEFAULT_TEXT_DOMAIN=\\\"${po_domain}-gnulib\\\""
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3857 echo
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3858 fi
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
3859 cat "$tmp"/allsnippets \
14273
8f6d3e05c7e2 libposix: Revert the unreviewed part of yesterday's big merge.
Bruce Korb <bkorb@gnu.org>
parents: 14271
diff changeset
3860 | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
5357
8bce169f70cc Fix comments. Fix parse problem.
Simon Josefsson <simon@josefsson.org>
parents: 5356
diff changeset
3861 echo
7086
ba6d3c85213f Fix for "make -j 3".
Bruno Haible <bruno@clisp.org>
parents: 7079
diff changeset
3862 echo "mostlyclean-local: mostlyclean-generic"
7545
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
3863 echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
3864 echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
3865 echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
3866 echo " fi; \\"
9010
03602a916a9a Don't let the 'mostlyclean' target fail because of a nonempty directory.
Bruno Haible <bruno@clisp.org>
parents: 9009
diff changeset
3867 echo " done; \\"
03602a916a9a Don't let the 'mostlyclean' target fail because of a nonempty directory.
Bruno Haible <bruno@clisp.org>
parents: 9009
diff changeset
3868 echo " :"
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
3869 rm -f "$tmp"/allsnippets
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3870 }
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
3871
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3872 # func_emit_po_Makevars
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
3873 # emits the contents of po/ makefile parameterization to standard output.
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3874 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3875 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3876 # - modcache true or false, from --cache-modules/--no-cache-modules
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3877 # - sourcebase directory relative to destdir where to place source code
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3878 # - pobase directory relative to destdir where to place *.po files
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3879 # - po_domain prefix of i18n domain to use (without -gnulib suffix)
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3880 func_emit_po_Makevars ()
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3881 {
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3882 echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3883 func_emit_copyright_notice
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3884 echo
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3885 echo "# Usually the message domain is the same as the package name."
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3886 echo "# But here it has a '-gnulib' suffix."
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3887 echo "DOMAIN = ${po_domain}-gnulib"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3888 echo
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3889 echo "# These two variables depend on the location of this directory."
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3890 echo "subdir = ${pobase}"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3891 echo "top_builddir = "`echo "$pobase" | sed -e 's,//*,/,g' -e 's,[^/][^/]*,..,g'`
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3892 echo
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3893 cat <<\EOF
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3894 # These options get passed to xgettext.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3895 XGETTEXT_OPTIONS = \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3896 --keyword=_ --flag=_:1:pass-c-format \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3897 --keyword=N_ --flag=N_:1:pass-c-format \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3898 --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."' \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3899 --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."' \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3900 --flag=error:3:c-format --flag=error_at_line:5:c-format
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3901
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3902 # This is the copyright holder that gets inserted into the header of the
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3903 # $(DOMAIN).pot file. gnulib is copyrighted by the FSF.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3904 COPYRIGHT_HOLDER = Free Software Foundation, Inc.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3905
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3906 # This is the email address or URL to which the translators shall report
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3907 # bugs in the untranslated strings:
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3908 # - Strings which are not entire sentences, see the maintainer guidelines
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3909 # in the GNU gettext documentation, section 'Preparing Strings'.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3910 # - Strings which use unclear terms or require additional context to be
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3911 # understood.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3912 # - Strings which make invalid assumptions about notation of date, time or
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3913 # money.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3914 # - Pluralisation problems.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3915 # - Incorrect English spelling.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3916 # - Incorrect formatting.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3917 # It can be your email address, or a mailing list address where translators
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3918 # can write to without being subscribed, or the URL of a web page through
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3919 # which the translators can contact you.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3920 MSGID_BUGS_ADDRESS = bug-gnulib@gnu.org
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3921
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3922 # This is the list of locale categories, beyond LC_MESSAGES, for which the
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3923 # message catalogs shall be used. It is usually empty.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3924 EXTRA_LOCALE_CATEGORIES =
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3925
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3926 # This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3927 # context. Possible values are "yes" and "no". Set this to yes if the
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3928 # package uses functions taking also a message context, like pgettext(), or
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3929 # if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3930 USE_MSGCTXT = no
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3931 EOF
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3932 }
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3933
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3934 # func_emit_po_POTFILES_in
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3935 # emits the file list to be passed to xgettext to standard output.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3936 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3937 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3938 # - modcache true or false, from --cache-modules/--no-cache-modules
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3939 # - sourcebase directory relative to destdir where to place source code
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3940 # - files list of new files
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3941 func_emit_po_POTFILES_in ()
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3942 {
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3943 echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3944 func_emit_copyright_notice
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3945 echo
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3946 echo "# List of files which contain translatable strings."
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3947 echo "$files" | sed -n -e "s,^lib/,$sourcebase/,p"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3948 }
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
3949
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
3950 # func_emit_tests_Makefile_am witness_macro
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
3951 # emits the contents of tests makefile to standard output.
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3952 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
3953 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
3954 # - modcache true or false, from --cache-modules/--no-cache-modules
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3955 # - modules list of modules, including dependencies
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3956 # - libname library name
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
3957 # - auxdir directory relative to destdir where to place build aux files
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
3958 # - gnu_make true if --gnu-make was given, false otherwise
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
3959 # - makefile_name from --makefile-name
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
3960 # - libtool true if libtool will be used, false or blank otherwise
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3961 # - sourcebase relative directory containing lib source code
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
3962 # - m4base relative directory containing autoconf macros
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
3963 # - testsbase relative directory containing unit test code
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
3964 # - macro_prefix prefix of gl_LIBOBJS macros to use
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
3965 # - witness_c_macro from --witness-c-macro
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3966 # - for_test true if creating a package for testing, false otherwise
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3967 # - single_configure true if a single configure file should be generated,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
3968 # false for a separate configure file for the tests
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
3969 # - use_libtests true if a libtests.a should be built, false otherwise
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3970 # - sed_replace_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
3971 # sed expression for resolving ${gl_include_guard_prefix}
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3972 # - destfile filename relative to destdir of makefile being generated
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3973 # Input/Output:
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
3974 # - makefile_am_edits and makefile_am_edit${edit}_{dir,var,val,dotfirst}
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
3975 # list of edits to be done to Makefile.am variables
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
3976 # Output:
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
3977 # - uses_subdirs nonempty if object files in subdirs exist
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3978 func_emit_tests_Makefile_am ()
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3979 {
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
3980 witness_macro="$1"
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
3981 if test "$libtool" = true; then
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
3982 libext=la
17047
458e7152e580 gnulib-tool: Improve coding style.
Bruno Haible <bruno@clisp.org>
parents: 17046
diff changeset
3983 perhapsLT=LT
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
3984 sed_eliminate_LDFLAGS="$sed_noop"
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
3985 else
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
3986 libext=a
17047
458e7152e580 gnulib-tool: Improve coding style.
Bruno Haible <bruno@clisp.org>
parents: 17046
diff changeset
3987 perhapsLT=
7335
6a496bee90ff * gnulib-tool: Avoid space-tab.
Eric Blake <ebb9@byu.net>
parents: 7332
diff changeset
3988 sed_eliminate_LDFLAGS='/^lib_LDFLAGS[ ]*+=/d'
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
3989 fi
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3990 if $for_test; then
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3991 # When creating a package for testing: Attempt to provoke failures,
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3992 # especially link errors, already during "make" rather than during
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3993 # "make check", because "make check" is not possible in a cross-compiling
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3994 # situation. Turn check_PROGRAMS into noinst_PROGRAMS.
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3995 sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g'
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3996 else
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
3997 sed_transform_check_PROGRAMS="$sed_noop"
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
3998 fi
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
3999 testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'`
7421
8bace4b08db5 Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents: 7391
diff changeset
4000 echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4001 echo "## Process this file with automake to produce Makefile.in."
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
4002 func_emit_copyright_notice
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4003 echo
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4004 uses_subdirs=
12054
1c9a8901e75c Fix value of uses_subdirs in tests/Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12021
diff changeset
4005 {
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4006 for module in $modules; do
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4007 if $for_test && ! $single_configure; then
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4008 func_verify_tests_module
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4009 else
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4010 func_verify_module
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4011 fi
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4012 if test -n "$module"; then
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
4013 {
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
4014 func_get_automake_snippet "$module" |
12917
66202bb71d56 Fix incorrect Makefile.am generation in German locale.
Bruno Haible <bruno@clisp.org>
parents: 12903
diff changeset
4015 LC_ALL=C \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
4016 sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \
9005
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
4017 -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
4018 -e "$sed_eliminate_LDFLAGS" \
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4019 -e 's,lib_\([A-Z][A-Z]*\),libtests_a_\1,g' \
9005
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
4020 -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
4021 -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
4022 -e "$sed_transform_check_PROGRAMS" \
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
4023 -e "$sed_replace_include_guard_prefix"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4024 if $use_libtests && test "$module" = 'alloca'; then
18913
680cbae5afc0 gnulib-tool: Fix generated code when libtests contains module 'alloca'.
Bruno Haible <bruno@clisp.org>
parents: 18910
diff changeset
4025 echo "libtests_a_LIBADD += @ALLOCA@"
680cbae5afc0 gnulib-tool: Fix generated code when libtests contains module 'alloca'.
Bruno Haible <bruno@clisp.org>
parents: 18910
diff changeset
4026 echo "libtests_a_DEPENDENCIES += @ALLOCA@"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4027 fi
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
4028 } > "$tmp"/amsnippet
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
4029 # Skip the contents if it's entirely empty.
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
4030 if grep '[^ ]' "$tmp"/amsnippet > /dev/null ; then
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4031 # Mention long-running tests at the end.
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4032 ofd=3
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4033 for word in `func_get_status "$module"`; do
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4034 if test "$word" = 'longrunning-test'; then
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4035 ofd=4
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4036 break
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4037 fi
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4038 done
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4039 { echo "## begin gnulib module $module"
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4040 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4041 echo "ifeq (,\$(OMIT_GNULIB_MODULE_$module))"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4042 fi
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4043 echo
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4044 cat "$tmp"/amsnippet
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4045 if $gnu_make; then
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4046 echo "endif"
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
4047 fi
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4048 echo "## end gnulib module $module"
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4049 echo
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4050 } >&$ofd
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4051 fi
12741
12d8c6b23748 gnulib-tool: avoid writing in the current directory.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 12559
diff changeset
4052 rm -f "$tmp"/amsnippet
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4053 # Test whether there are some source files in subdirectories.
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4054 for f in `func_get_filelist "$module"`; do
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4055 case $f in
10985
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
4056 lib/*/*.c | tests/*/*.c)
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
4057 uses_subdirs=yes
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
4058 break
32537aa6364d Terminate loops early when possible.
Bruno Haible <bruno@clisp.org>
parents: 10981
diff changeset
4059 ;;
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4060 esac
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4061 done
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4062 fi
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4063 done
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4064 } 3> "$tmp"/main_snippets 4> "$tmp"/longrunning_snippets
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4065 # Generate dependencies here, since it eases the debugging of test failures.
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4066 # If there are source files in subdirectories, prevent collision of the
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4067 # object files (example: hash.c and libxml/hash.c).
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4068 subdir_options=
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4069 if test -n "$uses_subdirs"; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4070 subdir_options=' subdir-objects'
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4071 fi
39943
b1ba0c77fa16 Assume Automake >= 1.11.
Bruno Haible <bruno@clisp.org>
parents: 39941
diff changeset
4072 echo "AUTOMAKE_OPTIONS = 1.11 foreign${subdir_options}"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4073 echo
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4074 if $for_test && ! $single_configure; then
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4075 echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4076 echo
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4077 fi
6533
6bc4290ca85f Avoid an automake error regarding the 'gettext' module.
Bruno Haible <bruno@clisp.org>
parents: 6512
diff changeset
4078 # Nothing is being added to SUBDIRS; nevertheless the existence of this
6bc4290ca85f Avoid an automake error regarding the 'gettext' module.
Bruno Haible <bruno@clisp.org>
parents: 6512
diff changeset
4079 # variable is needed to avoid an error from automake:
6bc4290ca85f Avoid an automake error regarding the 'gettext' module.
Bruno Haible <bruno@clisp.org>
parents: 6512
diff changeset
4080 # "AM_GNU_GETTEXT used but SUBDIRS not defined"
13110
48f80c38f0ed gnulib-tool: Ensure the tests in the main directory are executed first.
Bruno Haible <bruno@clisp.org>
parents: 13107
diff changeset
4081 echo "SUBDIRS = ."
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4082 echo "TESTS ="
12295
b8c65d432a3e Add xalloc-die self-test.
Simon Josefsson <simon@josefsson.org>
parents: 12288
diff changeset
4083 echo "XFAIL_TESTS ="
10732
a97c57b9b48e argp: Use standard gnulib idiom for EXEEXT.
Simon Josefsson <simon@josefsson.org>
parents: 10729
diff changeset
4084 echo "TESTS_ENVIRONMENT ="
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4085 echo "noinst_PROGRAMS ="
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
4086 if ! $for_test; then
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
4087 echo "check_PROGRAMS ="
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
4088 fi
18786
f2fc38f20336 verify tests: Fix spurious failure with parallel make.
Bruno Haible <bruno@clisp.org>
parents: 18741
diff changeset
4089 echo "EXTRA_PROGRAMS ="
6548
060487c0b13c Initialize also noinst_HEADERS to empty.
Bruno Haible <bruno@clisp.org>
parents: 6547
diff changeset
4090 echo "noinst_HEADERS ="
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4091 echo "noinst_LIBRARIES ="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4092 if $use_libtests; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4093 if $for_test; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4094 echo "noinst_LIBRARIES += libtests.a"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4095 else
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4096 echo "check_LIBRARIES = libtests.a"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4097 fi
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4098 fi
16713
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
4099 # Automake versions < 1.11.4 create an empty pkgdatadir at
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
4100 # installation time if you specify pkgdata_DATA to empty.
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
4101 # See automake bugs #10997 and #11030:
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
4102 # * https://debbugs.gnu.org/10997
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 19141
diff changeset
4103 # * https://debbugs.gnu.org/11030
16713
5090324ee0c8 gnulib-tool: fix imprecise comments w.r.t. an automake bug
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 16377
diff changeset
4104 # So we need this workaround.
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4105 if grep '^pkgdata_DATA *+=' "$tmp"/main_snippets "$tmp"/longrunning_snippets > /dev/null; then
7169
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4106 echo "pkgdata_DATA ="
cb505deddb22 Don't create a $(pkgdatadir) if there's nothing to be installed in it.
Bruno Haible <bruno@clisp.org>
parents: 7168
diff changeset
4107 fi
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4108 echo "EXTRA_DIST ="
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4109 echo "BUILT_SOURCES ="
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4110 echo "SUFFIXES ="
7079
ecd48b98b094 Clean core dumps.
Bruno Haible <bruno@clisp.org>
parents: 7078
diff changeset
4111 echo "MOSTLYCLEANFILES = core *.stackdump"
6862
ba1b5722df42 Invent MOSTLYCLEANDIRS.
Bruno Haible <bruno@clisp.org>
parents: 6777
diff changeset
4112 echo "MOSTLYCLEANDIRS ="
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4113 echo "CLEANFILES ="
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4114 echo "DISTCLEANFILES ="
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4115 echo "MAINTAINERCLEANFILES ="
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4116 # Execute edits that apply to the Makefile.am being generated.
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4117 edit=0
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4118 while test $edit != $makefile_am_edits; do
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4119 edit=`expr $edit + 1`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4120 eval dir=\"\$makefile_am_edit${edit}_dir\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4121 eval var=\"\$makefile_am_edit${edit}_var\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4122 eval val=\"\$makefile_am_edit${edit}_val\"
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4123 eval dotfirst=\"\$makefile_am_edit${edit}_dotfirst\"
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4124 if test -n "$var"; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4125 if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4126 if test "${var}" = SUBDIRS && test -n "$dotfirst"; then
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4127 # The added subdirectory ${val} needs to be mentioned after '.'.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4128 # But we have '.' among SUBDIRS already, so do nothing.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4129 :
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
4130 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4131 echo "${var} += ${val}"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4132 eval "makefile_am_edit${edit}_var="
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4133 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4134 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
4135 done
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4136 echo
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4137 echo "AM_CPPFLAGS = \\"
13217
885b58a1c02f Stricter declaration checking in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13111
diff changeset
4138 if $for_test; then
885b58a1c02f Stricter declaration checking in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13111
diff changeset
4139 echo " -DGNULIB_STRICT_CHECKING=1 \\"
885b58a1c02f Stricter declaration checking in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13111
diff changeset
4140 fi
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4141 if test -n "$witness_c_macro"; then
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4142 echo " -D$witness_c_macro=1 \\"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4143 fi
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
4144 if test -n "${witness_macro}"; then
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
4145 echo " -D@${witness_macro}@=1 \\"
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
4146 fi
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4147 echo " -I. -I\$(srcdir) \\"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4148 echo " -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\"
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4149 echo " -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4150 echo
9540
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4151 local_ldadd_before=''
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4152 local_ldadd_after=''
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4153 if $use_libtests; then
9540
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4154 # All test programs need to be linked with libtests.a.
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4155 # It needs to be passed to the linker before ${libname}.${libext}, since
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4156 # the tests-related modules depend on the main modules.
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4157 # It also needs to be passed to the linker after ${libname}.${libext}
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4158 # because the latter might contain incomplete modules (such as the 'error'
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4159 # module whose dependency to 'progname' is voluntarily omitted).
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4160 # The LIBTESTS_LIBDEPS can be passed to the linker once or twice, it does
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4161 # not matter.
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4162 local_ldadd_before=' libtests.a'
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4163 local_ldadd_after=' libtests.a $(LIBTESTS_LIBDEPS)'
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4164 fi
9540
56fe79dce87d Remove unnecessary -l options from LDFLAGS.
Bruno Haible <bruno@clisp.org>
parents: 9523
diff changeset
4165 echo "LDADD =${local_ldadd_before} ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}${local_ldadd_after}"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4166 echo
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4167 if $use_libtests; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4168 echo "libtests_a_SOURCES ="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4169 # Here we use $(LIBOBJS), not @LIBOBJS@. The value is the same. However,
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
4170 # automake during its analysis looks for $(LIBOBJS), not for @LIBOBJS@.
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4171 echo "libtests_a_LIBADD = \$(${macro_prefix}tests_LIBOBJS)"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4172 echo "libtests_a_DEPENDENCIES = \$(${macro_prefix}tests_LIBOBJS)"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4173 echo "EXTRA_libtests_a_SOURCES ="
9523
49f7561fc2d3 Allow circular dependency of separate libtests.a
Eric Blake <ebb9@byu.net>
parents: 9520
diff changeset
4174 # The circular dependency in LDADD requires this.
49f7561fc2d3 Allow circular dependency of separate libtests.a
Eric Blake <ebb9@byu.net>
parents: 9520
diff changeset
4175 echo "AM_LIBTOOLFLAGS = --preserve-dup-deps"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4176 echo
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4177 fi
12775
03aab12b3f15 Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents: 12743
diff changeset
4178 # Many test scripts use ${EXEEXT} or ${srcdir}.
03aab12b3f15 Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents: 12743
diff changeset
4179 # EXEEXT is defined by AC_PROG_CC through autoconf.
03aab12b3f15 Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents: 12743
diff changeset
4180 # srcdir is defined by autoconf and automake.
03aab12b3f15 Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents: 12743
diff changeset
4181 echo "TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='\$(srcdir)'"
03aab12b3f15 Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
Bruno Haible <bruno@clisp.org>
parents: 12743
diff changeset
4182 echo
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4183 cat "$tmp"/main_snippets "$tmp"/longrunning_snippets \
9515
b0f1495adfd8 Fix references to the build-aux directory in the generated tests/Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 9514
diff changeset
4184 | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4185 echo "# Clean up after Solaris cc."
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4186 echo "clean-local:"
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4187 echo " rm -rf SunWS_cache"
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4188 echo
7086
ba6d3c85213f Fix for "make -j 3".
Bruno Haible <bruno@clisp.org>
parents: 7079
diff changeset
4189 echo "mostlyclean-local: mostlyclean-generic"
7545
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
4190 echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
4191 echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
4192 echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"
fade8d6feee3 Avoid syntax error from bash 2.00 ... 2.05.
Bruno Haible <bruno@clisp.org>
parents: 7533
diff changeset
4193 echo " fi; \\"
9010
03602a916a9a Don't let the 'mostlyclean' target fail because of a nonempty directory.
Bruno Haible <bruno@clisp.org>
parents: 9009
diff changeset
4194 echo " done; \\"
03602a916a9a Don't let the 'mostlyclean' target fail because of a nonempty directory.
Bruno Haible <bruno@clisp.org>
parents: 9009
diff changeset
4195 echo " :"
13111
1af4e2d31f2a gnulib-tool: Ensure that long-running tests are executed last.
Bruno Haible <bruno@clisp.org>
parents: 13110
diff changeset
4196 rm -f "$tmp"/main_snippets "$tmp"/longrunning_snippets
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4197 }
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
4198
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4199 # func_emit_initmacro_start macro_prefix
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4200 # emits the first few statements of the gl_INIT macro to standard output.
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4201 # - macro_prefix prefix of gl_EARLY, gl_INIT macros to use
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4202 func_emit_initmacro_start ()
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4203 {
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4204 macro_prefix_arg="$1"
7646
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4205 # Overriding AC_LIBOBJ and AC_REPLACE_FUNCS has the effect of storing
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4206 # platform-dependent object files in ${macro_prefix_arg}_LIBOBJS instead of
7646
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4207 # LIBOBJS. The purpose is to allow several gnulib instantiations under
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4208 # a single configure.ac file. (AC_CONFIG_LIBOBJ_DIR does not allow this
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4209 # flexibility.)
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4210 # Furthermore it avoids an automake error like this when a Makefile.am
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4211 # that uses pieces of gnulib also uses $(LIBOBJ):
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4212 # automatically discovered file `error.c' should not be explicitly mentioned
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4213 echo " m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix_arg}_LIBOBJ]))"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4214 echo " m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix_arg}_REPLACE_FUNCS]))"
7646
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4215 # Overriding AC_LIBSOURCES has the same purpose of avoiding the automake
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4216 # error when a Makefile.am that uses pieces of gnulib also uses $(LIBOBJ):
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4217 # automatically discovered file `error.c' should not be explicitly mentioned
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4218 # We let automake know about the files to be distributed through the
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4219 # EXTRA_lib_SOURCES variable.
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4220 echo " m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix_arg}_LIBSOURCES]))"
10066
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4221 # Create data variables for checking the presence of files that are mentioned
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4222 # as AC_LIBSOURCES arguments. These are m4 variables, not shell variables,
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4223 # because we want the check to happen when the configure file is created,
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4224 # not when it is run. ${macro_prefix_arg}_LIBSOURCES_LIST is the list of
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4225 # files to check for. ${macro_prefix_arg}_LIBSOURCES_DIR is the subdirectory
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4226 # in which to expect them.
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4227 echo " m4_pushdef([${macro_prefix_arg}_LIBSOURCES_LIST], [])"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4228 echo " m4_pushdef([${macro_prefix_arg}_LIBSOURCES_DIR], [])"
9887
f2408973947f Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
Bruno Haible <bruno@clisp.org>
parents: 9879
diff changeset
4229 echo " gl_COMMON"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4230 }
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4231
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4232 # func_emit_initmacro_end macro_prefix
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4233 # emits the last few statements of the gl_INIT macro to standard output.
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4234 # - macro_prefix prefix of gl_EARLY, gl_INIT macros to use
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4235 func_emit_initmacro_end ()
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4236 {
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4237 macro_prefix_arg="$1"
10066
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4238 # Check the presence of files that are mentioned as AC_LIBSOURCES arguments.
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4239 # The check is performed only when autoconf is run from the directory where
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4240 # the configure.ac resides; if it is run from a different directory, the
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4241 # check is skipped.
10067
40a8c0b4f5e0 Oops, fix small mistake in last commit.
Bruno Haible <bruno@clisp.org>
parents: 10066
diff changeset
4242 echo " m4_ifval(${macro_prefix_arg}_LIBSOURCES_LIST, ["
10261
eb86b5a38e84 Work with tar's bootstrap.
Eric Blake <ebb9@byu.net>
parents: 10255
diff changeset
4243 echo " m4_syscmd([test ! -d ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[ ||"
10066
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4244 echo " for gl_file in ]${macro_prefix_arg}_LIBSOURCES_LIST[ ; do"
10261
eb86b5a38e84 Work with tar's bootstrap.
Eric Blake <ebb9@byu.net>
parents: 10255
diff changeset
4245 echo " if test ! -r ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file ; then"
eb86b5a38e84 Work with tar's bootstrap.
Eric Blake <ebb9@byu.net>
parents: 10255
diff changeset
4246 echo " echo \"missing file ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file\" >&2"
10066
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4247 echo " exit 1"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4248 echo " fi"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4249 echo " done])dnl"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4250 echo " m4_if(m4_sysval, [0], [],"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4251 echo " [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4252 echo " ])"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4253 echo " m4_popdef([${macro_prefix_arg}_LIBSOURCES_DIR])"
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4254 echo " m4_popdef([${macro_prefix_arg}_LIBSOURCES_LIST])"
7646
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4255 echo " m4_popdef([AC_LIBSOURCES])"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4256 echo " m4_popdef([AC_REPLACE_FUNCS])"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4257 echo " m4_popdef([AC_LIBOBJ])"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4258 echo " AC_CONFIG_COMMANDS_PRE(["
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4259 echo " ${macro_prefix_arg}_libobjs="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4260 echo " ${macro_prefix_arg}_ltlibobjs="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4261 echo " if test -n \"\$${macro_prefix_arg}_LIBOBJS\"; then"
7528
472795eea368 Remove duplicates from the gl_LIBOBJS list.
Bruno Haible <bruno@clisp.org>
parents: 7497
diff changeset
4262 echo " # Remove the extension."
472795eea368 Remove duplicates from the gl_LIBOBJS list.
Bruno Haible <bruno@clisp.org>
parents: 7497
diff changeset
4263 echo " sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'"
12417
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
4264 echo " for i in \`for i in \$${macro_prefix_arg}_LIBOBJS; do echo \"\$i\"; done | sed -e \"\$sed_drop_objext\" | sort | uniq\`; do"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4265 echo " ${macro_prefix_arg}_libobjs=\"\$${macro_prefix_arg}_libobjs \$i.\$ac_objext\""
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4266 echo " ${macro_prefix_arg}_ltlibobjs=\"\$${macro_prefix_arg}_ltlibobjs \$i.lo\""
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4267 echo " done"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4268 echo " fi"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4269 echo " AC_SUBST([${macro_prefix_arg}_LIBOBJS], [\$${macro_prefix_arg}_libobjs])"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4270 echo " AC_SUBST([${macro_prefix_arg}_LTLIBOBJS], [\$${macro_prefix_arg}_ltlibobjs])"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4271 echo " ])"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4272 }
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4273
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4274 # func_emit_initmacro_done macro_prefix sourcebase
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4275 # emits a few statements after the gl_INIT macro to standard output.
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4276 # - macro_prefix prefix of gl_EARLY, gl_INIT macros to use
9232
01d4e199e19f Enforce that AC_REPLACE_FUNCS files exist.
Eric Blake <ebb9@byu.net>
parents: 9215
diff changeset
4277 # - sourcebase directory relative to destdir where to place source code
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4278 func_emit_initmacro_done ()
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4279 {
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4280 macro_prefix_arg="$1"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4281 sourcebase_arg="$2"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4282 echo
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4283 echo "# Like AC_LIBOBJ, except that the module name goes"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4284 echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4285 echo "AC_DEFUN([${macro_prefix_arg}_LIBOBJ], ["
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4286 echo " AS_LITERAL_IF([\$1], [${macro_prefix_arg}_LIBSOURCES([\$1.c])])dnl"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4287 echo " ${macro_prefix_arg}_LIBOBJS=\"\$${macro_prefix_arg}_LIBOBJS \$1.\$ac_objext\""
9237
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4288 echo "])"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4289 echo
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4290 echo "# Like AC_REPLACE_FUNCS, except that the module name goes"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4291 echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS."
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4292 echo "AC_DEFUN([${macro_prefix_arg}_REPLACE_FUNCS], ["
9237
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4293 echo " m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4294 echo " AC_CHECK_FUNCS([\$1], , [${macro_prefix_arg}_LIBOBJ(\$ac_func)])"
9237
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4295 echo "])"
7646
33bd42644eec Override also AC_LIBSOURCES. Works around an automake error
Bruno Haible <bruno@clisp.org>
parents: 7644
diff changeset
4296 echo
9275
1c749136a76e AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'
Bruno Haible <bruno@clisp.org>
parents: 9237
diff changeset
4297 echo "# Like AC_LIBSOURCES, except the directory where the source file is"
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
4298 echo "# expected is derived from the gnulib-tool parameterization,"
9275
1c749136a76e AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'
Bruno Haible <bruno@clisp.org>
parents: 9237
diff changeset
4299 echo "# and alloca is special cased (for the alloca-opt module)."
1c749136a76e AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'
Bruno Haible <bruno@clisp.org>
parents: 9237
diff changeset
4300 echo "# We could also entirely rely on EXTRA_lib..._SOURCES."
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4301 echo "AC_DEFUN([${macro_prefix_arg}_LIBSOURCES], ["
9237
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4302 echo " m4_foreach([_gl_NAME], [\$1], ["
9275
1c749136a76e AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'
Bruno Haible <bruno@clisp.org>
parents: 9237
diff changeset
4303 echo " m4_if(_gl_NAME, [alloca.c], [], ["
10066
9a2a9c43db65 Reduce number of forks required during autoconf.
Eric Blake <ebb9@byu.net>
parents: 10065
diff changeset
4304 echo " m4_define([${macro_prefix_arg}_LIBSOURCES_DIR], [$sourcebase_arg])"
10070
61be13abdf14 Avoid quadratic growth in gl_LIBSOURCES.
Eric Blake <ebb9@byu.net>
parents: 10067
diff changeset
4305 echo " m4_append([${macro_prefix_arg}_LIBSOURCES_LIST], _gl_NAME, [ ])"
9275
1c749136a76e AC_LIBSOURCES([alloca.c]) must be a no-op, otherwise it breaks the 'alloca-opt'
Bruno Haible <bruno@clisp.org>
parents: 9237
diff changeset
4306 echo " ])"
9237
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4307 echo " ])"
aeb8e2d99afa m4 macro indentation.
Bruno Haible <bruno@linuix.haible.de>
parents: 9232
diff changeset
4308 echo "])"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4309 }
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
4310
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4311 # func_emit_autoconf_snippet indentation
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4312 # emits the autoconf snippet of a module.
14669
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4313 # Input:
17042
61736e6c8fbe gnulib-tool: Fix indentation of generated gnulib-comp.m4 file.
Bruno Haible <bruno@clisp.org>
parents: 17039
diff changeset
4314 # - indentation spaces to prepend on each line
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4315 # - local_gnulib_path from --local-dir
14669
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4316 # - modcache true or false, from --cache-modules/--no-cache-modules
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4317 # - sed_replace_build_aux sed expression that replaces reference to build-aux
16122
e3e8e2fc21a9 Fix conflict between two instantiations of module 'unistd'.
Bruno Haible <bruno@clisp.org>
parents: 15854
diff changeset
4318 # - sed_replace_include_guard_prefix
e3e8e2fc21a9 Fix conflict between two instantiations of module 'unistd'.
Bruno Haible <bruno@clisp.org>
parents: 15854
diff changeset
4319 # sed expression for resolving ${gl_include_guard_prefix}
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4320 # - module the module name
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4321 # - toplevel true or false. 'false' means a subordinate use of
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4322 # gnulib-tool.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4323 # - disable_libtool true or false. It tells whether to disable libtool
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4324 # handling even if it has been specified through the
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4325 # command line options.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4326 # - disable_gettext true or false. It tells whether to disable AM_GNU_GETTEXT
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4327 # invocations.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4328 func_emit_autoconf_snippet ()
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4329 {
17042
61736e6c8fbe gnulib-tool: Fix indentation of generated gnulib-comp.m4 file.
Bruno Haible <bruno@clisp.org>
parents: 17039
diff changeset
4330 indentation="$1"
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4331 if { case $module in
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4332 gnumakefile | maintainer-makefile)
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4333 # These modules are meant to be used only in the top-level directory.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4334 $toplevel ;;
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4335 *)
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4336 true ;;
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4337 esac
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4338 }; then
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4339 func_get_autoconf_snippet "$module" \
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4340 | sed -e '/^$/d;' -e "s/^/$indentation/" \
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4341 -e "$sed_replace_build_aux" \
16122
e3e8e2fc21a9 Fix conflict between two instantiations of module 'unistd'.
Bruno Haible <bruno@clisp.org>
parents: 15854
diff changeset
4342 -e "$sed_replace_include_guard_prefix" \
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4343 | { if $disable_libtool; then
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4344 sed -e 's/\$gl_cond_libtool/false/g' \
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4345 -e 's/gl_libdeps/gltests_libdeps/g' \
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4346 -e 's/gl_ltlibdeps/gltests_ltlibdeps/g'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4347 else
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4348 cat
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4349 fi
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4350 } \
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4351 | { if $disable_gettext; then
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4352 sed -e 's/AM_GNU_GETTEXT(\[external\])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4353 else
17269
c9d7491e3e78 gnulib-tool: fix incompatibility with autopoint 0.18.2
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
4354 # Don't indent AM_GNU_GETTEXT_VERSION line, as that confuses
c9d7491e3e78 gnulib-tool: fix incompatibility with autopoint 0.18.2
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
4355 # autopoint through at least GNU gettext version 0.18.2.
c9d7491e3e78 gnulib-tool: fix incompatibility with autopoint 0.18.2
Paul Eggert <eggert@cs.ucla.edu>
parents: 17249
diff changeset
4356 sed -e 's/^ *AM_GNU_GETTEXT_VERSION/AM_GNU_GETTEXT_VERSION/'
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4357 fi
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4358 }
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4359 if test "$module" = 'alloca' && test "$libtool" = true && ! $disable_libtool; then
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4360 echo 'changequote(,)dnl'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4361 echo 'LTALLOCA=`echo "$ALLOCA" | sed -e '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4362 echo 'changequote([, ])dnl'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4363 echo 'AC_SUBST([LTALLOCA])'
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4364 fi
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4365 fi
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4366 }
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4367
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4368 # func_emit_autoconf_snippets modules referenceable_modules verifier toplevel disable_libtool disable_gettext
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4369 # collects and emit the autoconf snippets of a set of modules.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4370 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4371 # - local_gnulib_path from --local-dir
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4372 # - modcache true or false, from --cache-modules/--no-cache-modules
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4373 # - sed_replace_build_aux sed expression that replaces reference to build-aux
16122
e3e8e2fc21a9 Fix conflict between two instantiations of module 'unistd'.
Bruno Haible <bruno@clisp.org>
parents: 15854
diff changeset
4374 # - sed_replace_include_guard_prefix
e3e8e2fc21a9 Fix conflict between two instantiations of module 'unistd'.
Bruno Haible <bruno@clisp.org>
parents: 15854
diff changeset
4375 # sed expression for resolving ${gl_include_guard_prefix}
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4376 # - modules the list of modules.
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4377 # - referenceable_modules the list of modules which may be referenced as dependencies.
14672
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4378 # - verifier one of func_verify_module, func_verify_nontests_module,
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4379 # func_verify_tests_module. It selects the subset of
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4380 # $modules to consider.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4381 # - toplevel true or false. 'false' means a subordinate use of
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4382 # gnulib-tool.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4383 # - disable_libtool true or false. It tells whether to disable libtool
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4384 # handling even if it has been specified through the
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4385 # command line options.
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4386 # - disable_gettext true or false. It tells whether to disable AM_GNU_GETTEXT
258142b2fe00 gnulib-tool: Refactor.
Bruno Haible <bruno@clisp.org>
parents: 14669
diff changeset
4387 # invocations.
14669
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4388 func_emit_autoconf_snippets ()
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4389 {
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4390 referenceable_modules="$2"
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4391 verifier="$3"
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4392 toplevel="$4"
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4393 disable_libtool="$5"
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4394 disable_gettext="$6"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4395 if test "$cond_dependencies" = true; then
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
4396 for m in $referenceable_modules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/modules
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4397 # Emit the autoconf code for the unconditional modules.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4398 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4399 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4400 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4401 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4402 :
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4403 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4404 func_emit_autoconf_snippet " "
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4405 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4406 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4407 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4408 # Initialize the shell variables indicating that the modules are enabled.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4409 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4410 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4411 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4412 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4413 func_module_shellvar_name "$module"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4414 echo " $shellvar=false"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4415 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4416 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4417 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4418 # Emit the autoconf code for the conditional modules, each in a separate
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4419 # function. This makes it possible to support cycles among conditional
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4420 # modules.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4421 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4422 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4423 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4424 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4425 func_module_shellfunc_name "$module"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4426 func_module_shellvar_name "$module"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4427 echo " $shellfunc ()"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4428 echo ' {'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4429 echo " if ! \$$shellvar; then"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4430 func_emit_autoconf_snippet " "
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4431 echo " $shellvar=true"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4432 deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
15854
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4433 # Intersect $deps with the modules list $1.
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4434 deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C join - "$tmp"/modules`
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4435 for dep in $deps; do
15854
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4436 if func_cond_module_p "$dep"; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4437 func_module_shellfunc_name "$dep"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4438 func_cond_module_condition "$module" "$dep"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4439 if test "$condition" != true; then
15852
44740f4ef8e2 gnulib-tool: fix typo that broke Emacs on powerpc-apple-darwin9.8.0.
Paul Eggert <eggert@cs.ucla.edu>
parents: 15801
diff changeset
4440 echo " if $condition; then"
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4441 echo " $shellfunc"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4442 echo ' fi'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4443 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4444 echo " $shellfunc"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4445 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4446 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4447 # The autoconf code for $dep has already been emitted above and
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4448 # therefore is already executed when this function is run.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4449 :
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4450 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4451 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4452 echo ' fi'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4453 echo ' }'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4454 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4455 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4456 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4457 # Emit the dependencies from the unconditional to the conditional modules.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4458 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4459 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4460 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4461 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4462 :
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4463 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4464 deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"`
15854
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4465 # Intersect $deps with the modules list $1.
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4466 deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C join - "$tmp"/modules`
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4467 for dep in $deps; do
15854
d3633bf8b61d gnulib-tool: Improve last commit.
Bruno Haible <bruno@clisp.org>
parents: 15853
diff changeset
4468 if func_cond_module_p "$dep"; then
14682
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4469 func_module_shellfunc_name "$dep"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4470 func_cond_module_condition "$module" "$dep"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4471 if test "$condition" != true; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4472 echo " if $condition; then"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4473 echo " $shellfunc"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4474 echo ' fi'
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4475 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4476 echo " $shellfunc"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4477 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4478 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4479 # The autoconf code for $dep has already been emitted above and
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4480 # therefore is already executed when this code is run.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4481 :
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4482 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4483 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4484 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4485 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4486 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4487 # Define the Automake conditionals.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4488 echo " m4_pattern_allow([^${macro_prefix}_GNULIB_ENABLED_])"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4489 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4490 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4491 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4492 if func_cond_module_p "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4493 func_module_conditional_name "$module"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4494 func_module_shellvar_name "$module"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4495 echo " AM_CONDITIONAL([$conditional], [\$$shellvar])"
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4496 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4497 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4498 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4499 else
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4500 # Ignore the conditions, and enable all modules unconditionally.
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4501 for module in $1; do
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4502 eval $verifier
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4503 if test -n "$module"; then
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4504 func_emit_autoconf_snippet " "
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4505 fi
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4506 done
af0bb23f406a Support for conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 14672
diff changeset
4507 fi
14669
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4508 }
7d7930e97930 gnulib-tool: Reduce code duplication.
Bruno Haible <bruno@clisp.org>
parents: 14625
diff changeset
4509
18124
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4510 # func_emit_pre_early_macros require indentation modules
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4511 # The require parameter can be ':' (AC_REQUIRE) or 'false' (direct call).
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4512 func_emit_pre_early_macros ()
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4513 {
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4514 echo
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4515 echo "${2}# Pre-early section."
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4516 if $1; then
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4517 _pre_early_snippet="echo \"${2}AC_REQUIRE([\$_pre_early_macro])\""
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4518 else
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4519 _pre_early_snippet="echo \"${2}\$_pre_early_macro\""
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4520 fi
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4521
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4522 # We need to call gl_USE_SYSTEM_EXTENSIONS before gl_PROG_AR_RANLIB. Doing
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4523 # AC_REQUIRE in configure-ac.early is not early enough.
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4524 _pre_early_macro="gl_USE_SYSTEM_EXTENSIONS"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4525 case "${nl}${3}${nl}" in
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4526 *${nl}extensions${nl}*) eval "$_pre_early_snippet" ;;
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4527 esac
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4528
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4529 _pre_early_macro="gl_PROG_AR_RANLIB"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4530 eval "$_pre_early_snippet"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4531 echo
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4532 }
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4533
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4534 # func_reconstruct_cached_dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4535 # callback for func_reconstruct_cached_local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4536 # Input:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4537 # - destdir from --dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4538 # Output:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4539 # - local_gnulib_path restored '--local-dir' path from cache
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4540 func_reconstruct_cached_dir ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4541 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4542 cached_dir=$1
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4543 if test -n "$cached_dir"; then
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4544 case "$destdir" in
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4545 /*)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4546 func_path_append local_gnulib_path "$destdir/$cached_dir" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4547 *)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4548 case "$cached_dir" in
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4549 /*)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4550 func_path_append local_gnulib_path "$destdir/$cached_dir" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4551 *)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4552 func_relconcat "$destdir" "$cached_dir"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4553 func_path_append local_gnulib_path "$relconcat" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4554 esac ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4555 esac
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4556 fi
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4557 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4558
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4559 # func_reconstruct_cached_local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4560 # reconstruct local_gnulib_path from cached_local_gnulib_path to be set
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4561 # relatively to $destdir again.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4562 # Input:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4563 # - cached_local_gnulib_path local_gnulib_path stored within gnulib-cache.m4
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4564 # - destdir from --dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4565 # Output:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4566 # - local_gnulib_path restored '--local-dir' path from cache
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4567 func_reconstruct_cached_local_gnulib_path ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4568 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4569 func_path_foreach "$cached_local_gnulib_path" func_reconstruct_cached_dir %dir%
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4570 }
18124
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
4571
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4572 # func_import modules
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4573 # Uses also the variables
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4574 # - mode import or add-import or remove-import or update
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4575 # - destdir target directory
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4576 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
4577 # - modcache true or false, from --cache-modules/--no-cache-modules
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
4578 # - verbose integer, default 0, inc/decremented by --verbose/--quiet
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4579 # - libname library name
13632
09362ffa0085 gnulib-tool: Avoid error when run in a package without Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 13625
diff changeset
4580 # - supplied_libname true if --lib was given, blank otherwise
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4581 # - sourcebase directory relative to destdir where to place source code
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4582 # - m4base directory relative to destdir where to place *.m4 macros
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4583 # - pobase directory relative to destdir where to place *.po files
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
4584 # - docbase directory relative to destdir where to place doc files
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4585 # - testsbase directory relative to destdir where to place unit test code
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
4586 # - auxdir directory relative to destdir where to place build aux files
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4587 # - inctests true if --with-tests was given, false otherwise
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
4588 # - incobsolete true if --with-obsolete was given, blank otherwise
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4589 # - inc_cxx_tests true if --with-c++-tests was given, blank otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4590 # - inc_longrunning_tests true if --with-longrunning-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4591 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4592 # - inc_privileged_tests true if --with-privileged-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4593 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4594 # - inc_unportable_tests true if --with-unportable-tests was given, blank
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4595 # otherwise
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4596 # - inc_all_tests true if --with-all-tests was given, blank otherwise
5981
09850e201e79 New option --avoid.
Bruno Haible <bruno@clisp.org>
parents: 5963
diff changeset
4597 # - avoidlist list of modules to avoid, from --avoid
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4598 # - cond_dependencies true if --conditional-dependencies was given, false if
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4599 # --no-conditional-dependencies was given, blank otherwise
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4600 # - lgpl yes or a number if library's license shall be LGPL,
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4601 # blank otherwise
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
4602 # - makefile_name from --makefile-name
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
4603 # - libtool true if --libtool was given, false if --no-libtool was
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
4604 # given, blank otherwise
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
4605 # - guessed_libtool true if the configure.ac file uses libtool, false otherwise
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
4606 # - macro_prefix prefix of gl_EARLY, gl_INIT macros to use
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4607 # - po_domain prefix of i18n domain to use (without -gnulib suffix)
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4608 # - witness_c_macro from --witness-c-macro
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
4609 # - vc_files true if --vc-files was given, false if --no-vc-files was
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
4610 # given, blank otherwise
6994
3484a8772427 Add option --assume-autoconf. Default is back to 2.59.
Bruno Haible <bruno@clisp.org>
parents: 6993
diff changeset
4611 # - autoconf_minversion minimum supported autoconf version
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
4612 # - doit : if actions shall be executed, false if only to be printed
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
4613 # - copymode copy mode for files in general
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
4614 # - lcopymode copy mode for files from local_gnulib_path
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
4615 # - do_copyrights true if copyright notices in files should be replaced,
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
4616 # blank otherwise
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4617 func_import ()
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4618 {
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4619 # Get the cached settings.
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4620 # In 'import' mode, we read them only for the purpose of knowing the old
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4621 # installed file list, and don't use them as defaults.
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4622 cached_local_gnulib_path=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4623 cached_specified_modules=
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
4624 cached_incobsolete=
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4625 cached_inc_cxx_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4626 cached_inc_longrunning_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4627 cached_inc_privileged_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4628 cached_inc_unportable_tests=
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4629 cached_inc_all_tests=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4630 cached_avoidlist=
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4631 cached_sourcebase=
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4632 cached_m4base=
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4633 cached_pobase=
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
4634 cached_docbase=
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4635 cached_testsbase=
8890
576d3e4f31c2 Remember the presence of the --with-tests command-line option through
Bruno Haible <bruno@clisp.org>
parents: 8672
diff changeset
4636 cached_inctests=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4637 cached_libname=
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4638 cached_lgpl=
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
4639 cached_makefile_name=
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4640 cached_cond_dependencies=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4641 cached_libtool=
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4642 cached_macro_prefix=
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4643 cached_po_domain=
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4644 cached_witness_c_macro=
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
4645 cached_vc_files=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4646 cached_files=
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4647 if test -f "$destdir"/$m4base/gnulib-cache.m4; then
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
4648 cached_libtool=false
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4649 my_sed_traces='
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4650 s,#.*$,,
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4651 s,^dnl .*$,,
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4652 s, dnl .*$,,
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
4653 /gl_LOCAL_DIR(/ {
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4654 s,^.*gl_LOCAL_DIR([[ ]*\([^]"$`\\)]*\).*$,cached_local_gnulib_path="\1",p
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
4655 }
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4656 /gl_MODULES(/ {
10293
3c624b3d1039 Make a sed program more robust.
Bruno Haible <bruno@clisp.org>
parents: 10261
diff changeset
4657 ta
10246
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4658 :a
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4659 s/)/)/
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4660 tb
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4661 N
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4662 ba
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
4663 :b
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4664 s,^.*gl_MODULES([[ ]*\([^]"$`\\)]*\).*$,cached_specified_modules="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4665 }
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
4666 /gl_WITH_OBSOLETE/ {
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
4667 s,^.*$,cached_incobsolete=true,p
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
4668 }
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4669 /gl_WITH_CXX_TESTS/ {
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4670 s,^.*$,cached_inc_cxx_tests=true,p
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4671 }
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4672 /gl_WITH_LONGRUNNING_TESTS/ {
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4673 s,^.*$,cached_inc_longrunning_tests=true,p
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4674 }
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4675 /gl_WITH_PRIVILEGED_TESTS/ {
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4676 s,^.*$,cached_inc_privileged_tests=true,p
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4677 }
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4678 /gl_WITH_UNPORTABLE_TESTS/ {
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4679 s,^.*$,cached_inc_unportable_tests=true,p
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4680 }
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4681 /gl_WITH_ALL_TESTS/ {
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4682 s,^.*$,cached_inc_all_tests=true,p
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4683 }
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4684 /gl_AVOID(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4685 s,^.*gl_AVOID([[ ]*\([^]"$`\\)]*\).*$,cached_avoidlist="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4686 }
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4687 /gl_SOURCE_BASE(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4688 s,^.*gl_SOURCE_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_sourcebase="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4689 }
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4690 /gl_M4_BASE(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4691 s,^.*gl_M4_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_m4base="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4692 }
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4693 /gl_PO_BASE(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4694 s,^.*gl_PO_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_pobase="\1",p
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4695 }
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
4696 /gl_DOC_BASE(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4697 s,^.*gl_DOC_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_docbase="\1",p
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
4698 }
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4699 /gl_TESTS_BASE(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4700 s,^.*gl_TESTS_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_testsbase="\1",p
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
4701 }
8890
576d3e4f31c2 Remember the presence of the --with-tests command-line option through
Bruno Haible <bruno@clisp.org>
parents: 8672
diff changeset
4702 /gl_WITH_TESTS/ {
576d3e4f31c2 Remember the presence of the --with-tests command-line option through
Bruno Haible <bruno@clisp.org>
parents: 8672
diff changeset
4703 s,^.*$,cached_inctests=true,p
576d3e4f31c2 Remember the presence of the --with-tests command-line option through
Bruno Haible <bruno@clisp.org>
parents: 8672
diff changeset
4704 }
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4705 /gl_LIB(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4706 s,^.*gl_LIB([[ ]*\([^]"$`\\)]*\).*$,cached_libname="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4707 }
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4708 /gl_LGPL(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4709 s,^.*gl_LGPL([[ ]*\([^]"$`\\)]*\).*$,cached_lgpl="\1",p
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4710 }
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4711 /gl_LGPL/ {
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4712 s,^.*$,cached_lgpl=yes,p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4713 }
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
4714 /gl_MAKEFILE_NAME(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4715 s,^.*gl_MAKEFILE_NAME([[ ]*\([^]"$`\\)]*\).*$,cached_makefile_name="\1",p
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
4716 }
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4717 /gl_CONDITIONAL_DEPENDENCIES/ {
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4718 s,^.*$,cached_cond_dependencies=true,p
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4719 }
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4720 /gl_LIBTOOL/ {
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4721 s,^.*$,cached_libtool=true,p
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4722 }
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4723 /gl_MACRO_PREFIX(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4724 s,^.*gl_MACRO_PREFIX([[ ]*\([^]"$`\\)]*\).*$,cached_macro_prefix="\1",p
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4725 }
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
4726 /gl_PO_DOMAIN(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4727 s,^.*gl_PO_DOMAIN([[ ]*\([^]"$`\\)]*\).*$,cached_po_domain="\1",p
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
4728 }
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4729 /gl_WITNESS_C_MACRO(/ {
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4730 s,^.*gl_WITNESS_C_MACRO([[ ]*\([^]"$`\\)]*\).*$,cached_witness_c_macro="\1",p
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4731 }
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
4732 /gl_VC_FILES(/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4733 s,^.*gl_VC_FILES([[ ]*\([^]"$`\\)]*\).*$,cached_vc_files="\1",p
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4734 }'
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
4735 eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4`
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4736 if test -f "$destdir"/$m4base/gnulib-comp.m4; then
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4737 my_sed_traces='
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4738 s,#.*$,,
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4739 s,^dnl .*$,,
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4740 s, dnl .*$,,
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4741 /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST\], \[/ {
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4742 s,^.*$,cached_files=",p
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4743 n
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4744 ta
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4745 :a
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4746 s,^\]).*$,",
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4747 tb
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
4748 s,["$`\\],,g
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4749 p
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4750 n
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4751 ba
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4752 :b
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4753 p
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4754 }'
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
4755 eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4`
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4756 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4757 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4758
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4759 if test "$mode" = import; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4760 # In 'import' mode, the new set of specified modules overrides the cached
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4761 # set of modules. Ignore the cached settings.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4762 specified_modules="$1"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4763 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4764 # Merge the cached settings with the specified ones.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4765 # The m4base must be the same as expected from the pathname.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4766 if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4767 func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4768 fi
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4769 # The local_gnulib_path defaults to the cached one. Recall that the cached one
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4770 # is relative to $destdir, whereas the one we use is relative to . or absolute.
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4771 if test -z "$local_gnulib_path"; then
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
4772 func_reconstruct_cached_local_gnulib_path
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4773 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4774 case $mode in
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4775 add-import)
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4776 # Append the cached and the specified module names. So that
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4777 # "gnulib-tool --add-import foo" means to add the module foo.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4778 specified_modules="$cached_specified_modules $1"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4779 ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4780 remove-import)
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4781 # Take the cached module names, minus the specified module names.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4782 specified_modules=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4783 if $have_associative; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4784 # Use an associative array, for O(N) worst-case run time.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4785 declare -A to_remove
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4786 for m in $1; do
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
4787 eval 'to_remove[$m]=yes'
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4788 done
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4789 for module in $cached_specified_modules; do
13660
6a2c7d3ca5f0 gnulib-tool: work with NetBSD /bin/sh
Eric Blake <eblake@redhat.com>
parents: 13658
diff changeset
4790 if eval 'test -z "${to_remove[$module]}"'; then
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4791 func_append specified_modules "$module "
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4792 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4793 done
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4794 else
18109
244355088b86 maint: add coding cookies to non-ASCII sources
Paul Eggert <eggert@cs.ucla.edu>
parents: 18080
diff changeset
4795 # This loop has O(N**2) worst-case run time.
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4796 for module in $cached_specified_modules; do
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4797 to_remove=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4798 for m in $1; do
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4799 if test "$m" = "$module"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4800 to_remove=yes
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4801 break
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4802 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4803 done
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4804 if test -z "$to_remove"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4805 func_append specified_modules "$module "
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4806 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4807 done
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4808 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4809 ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4810 update)
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4811 # Take the cached module names. There are no specified module names.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4812 specified_modules="$cached_specified_modules"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4813 ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4814 esac
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4815 # Included obsolete modules among the dependencies if specified either way.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4816 if test -z "$incobsolete"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4817 incobsolete="$cached_incobsolete"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4818 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4819 # Included special kinds of tests modules among the dependencies if specified
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4820 # either way.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4821 if test -z "$inc_cxx_tests"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4822 inc_cxx_tests="$cached_inc_cxx_tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4823 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4824 if test -z "$inc_longrunning_tests"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4825 inc_longrunning_tests="$cached_inc_longrunning_tests"
7213
0f2957c42e86 Save the --local-dir value in the cache file.
Bruno Haible <bruno@clisp.org>
parents: 7212
diff changeset
4826 fi
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4827 if test -z "$inc_privileged_tests"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4828 inc_privileged_tests="$cached_inc_privileged_tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4829 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4830 if test -z "$inc_unportable_tests"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4831 inc_unportable_tests="$cached_inc_unportable_tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4832 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4833 if test -z "$inc_all_tests"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4834 inc_all_tests="$cached_inc_all_tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4835 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4836 # Append the cached and the specified avoidlist. This is probably better
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4837 # than dropping the cached one when --avoid is specified at least once.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4838 avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4839 avoidlist=`echo $avoidlist`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4840
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4841 # The sourcebase defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4842 if test -z "$sourcebase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4843 sourcebase="$cached_sourcebase"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4844 if test -z "$sourcebase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4845 func_fatal_error "missing --source-base option"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4846 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4847 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4848 # The pobase defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4849 if test -z "$pobase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4850 pobase="$cached_pobase"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4851 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4852 # The docbase defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4853 if test -z "$docbase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4854 docbase="$cached_docbase"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4855 if test -z "$docbase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4856 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."
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4857 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4858 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4859 # The testsbase defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4860 if test -z "$testsbase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4861 testsbase="$cached_testsbase"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4862 if test -z "$testsbase"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4863 func_fatal_error "missing --tests-base option"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4864 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4865 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4866 # Require the tests if specified either way.
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4867 if ! $inctests; then
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4868 inctests="$cached_inctests"
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4869 if test -z "$inctests"; then
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4870 inctests=false
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4871 fi
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4872 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4873 # The libname defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4874 if test -z "$supplied_libname"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4875 libname="$cached_libname"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4876 if test -z "$libname"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4877 func_fatal_error "missing --lib option"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4878 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4879 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4880 # Require LGPL if specified either way.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4881 if test -z "$lgpl"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4882 lgpl="$cached_lgpl"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4883 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4884 # The makefile_name defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4885 if test -z "$makefile_name"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4886 makefile_name="$cached_makefile_name"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4887 fi
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4888 # Use conditional dependencies if specified either way.
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4889 if test -z "$cond_dependencies"; then
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4890 cond_dependencies="$cached_cond_dependencies"
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4891 fi
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4892 # Use libtool if specified either way, or if guessed.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4893 if test -z "$libtool"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4894 if test -n "$cached_m4base"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4895 libtool="$cached_libtool"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4896 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4897 libtool="$guessed_libtool"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4898 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4899 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4900 # The macro_prefix defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4901 if test -z "$macro_prefix"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4902 macro_prefix="$cached_macro_prefix"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4903 if test -z "$macro_prefix"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4904 func_fatal_error "missing --macro-prefix option"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4905 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4906 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4907 # The po_domain defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4908 if test -z "$po_domain"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4909 po_domain="$cached_po_domain"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4910 fi
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4911 # The witness_c_macro defaults to the cached one.
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4912 if test -z "$witness_c_macro"; then
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4913 witness_c_macro="$cached_witness_c_macro"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
4914 fi
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4915 # The vc_files defaults to the cached one.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4916 if test -z "$vc_files"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4917 vc_files="$cached_vc_files"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
4918 fi
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4919 # Ensure constraints.
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
4920 if test "$cond_dependencies" = true && $inctests; then
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4921 echo "gnulib-tool: option --conditional-dependencies is not supported with --with-tests" 1>&2
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4922 func_exit 1
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
4923 fi
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
4924 fi
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
4925 # --without-*-tests options are not supported here.
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
4926 excl_cxx_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
4927 excl_longrunning_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
4928 excl_privileged_tests=
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
4929 excl_unportable_tests=
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4930
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4931 # Canonicalize the list of specified modules.
7319
1726cc39709b Use "sort -u" where it makes sense.
Bruno Haible <bruno@clisp.org>
parents: 7299
diff changeset
4932 specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4933
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
4934 # Include all kinds of tests modules if --with-all-tests was specified.
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
4935 inc_all_direct_tests="$inc_all_tests"
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
4936 inc_all_indirect_tests="$inc_all_tests"
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
4937
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4938 # Determine final module list.
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
4939 modules="$specified_modules"
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
4940 func_modules_transitive_closure
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
4941 if test $verbose -ge 0; then
13420
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
4942 func_show_module_list
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
4943 fi
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4944 final_modules="$modules"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
4945
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4946 # Determine main module list and tests-related module list separately.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4947 func_modules_transitive_closure_separately
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4948
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4949 # Determine whether a $testsbase/libtests.a is needed.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4950 func_determine_use_libtests
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4951
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4952 # Add the dummy module to the main module list or to the tests-related module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4953 # list if needed.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
4954 func_modules_add_dummy_separately
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
4955
7235
3dbbe645b976 * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7222
diff changeset
4956 # If --lgpl, verify that the licenses of modules are compatible.
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
4957 if test -n "$lgpl"; then
10479
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4958 license_incompatibilities=
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4959 for module in $main_modules; do
5346
40f5d74050d5 Use func_get_license.
Bruno Haible <bruno@clisp.org>
parents: 5345
diff changeset
4960 license=`func_get_license $module`
5963
6fb8c48c4dcd * gnulib-tool (func_import): Add support for 'public domain' license.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5848
diff changeset
4961 case $license in
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4962 'GPLed build tool') ;;
7245
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
4963 'public domain' | 'unlimited' | 'unmodifiable license text') ;;
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4964 *)
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4965 case "$lgpl" in
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4966 yes | 3)
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4967 case $license in
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4968 LGPLv2+ | 'LGPLv3+ or GPLv2' | LGPLv3+ | LGPL) ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4969 *) func_append license_incompatibilities "$module $license$nl" ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4970 esac
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4971 ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4972 3orGPLv2)
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4973 case $license in
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
4974 LGPLv2+ | 'LGPLv3+ or GPLv2') ;;
10479
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4975 *) func_append license_incompatibilities "$module $license$nl" ;;
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4976 esac
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4977 ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4978 2)
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4979 case $license in
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4980 LGPLv2+) ;;
10479
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4981 *) func_append license_incompatibilities "$module $license$nl" ;;
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4982 esac
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4983 ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4984 *) func_fatal_error "invalid value lgpl=$lgpl" ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4985 esac
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
4986 ;;
5963
6fb8c48c4dcd * gnulib-tool (func_import): Add support for 'public domain' license.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5848
diff changeset
4987 esac
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
4988 done
10479
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4989 if test -n "$license_incompatibilities"; then
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4990 # Format the license incompatibilities as a table.
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4991 sed_expand_column1_width50_indent17='s,^\([^ ]*\) ,\1 ,
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4992 s,^\(.................................................[^ ]*\) *, \1 ,'
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4993 license_incompatibilities=`echo "$license_incompatibilities" | sed -e "$sed_expand_column1_width50_indent17"`
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4994 func_fatal_error "incompatible license on modules:$nl$license_incompatibilities"
74885eaea206 Report all license incompatibilities during --import.
Bruno Haible <bruno@clisp.org>
parents: 10478
diff changeset
4995 fi
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
4996 fi
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
4997
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
4998 # Show banner notice of every module.
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
4999 modules="$main_modules"
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
5000 func_modules_notice
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
5001
7199
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5002 # Determine script to apply to imported library files.
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5003 sed_transform_lib_file=
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5004 for module in $main_modules; do
7245
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5005 if test $module = config-h; then
7199
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5006 # Assume config.h exists, and that -DHAVE_CONFIG_H is omitted.
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5007 sed_transform_lib_file=$sed_transform_lib_file'
7245
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5008 s/^#ifdef[ ]*HAVE_CONFIG_H[ ]*$/#if 1/
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5009 '
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5010 break
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5011 fi
138333fc7a90 Improve maintainability.
Bruno Haible <bruno@clisp.org>
parents: 7241
diff changeset
5012 done
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5013 sed_transform_main_lib_file="$sed_transform_lib_file"
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
5014 if test -n "$do_copyrights"; then
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
5015 if test -n "$lgpl"; then
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
5016 # Update license.
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5017 case "$lgpl" in
18542
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5018 yes | 3)
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5019 sed_transform_main_lib_file=$sed_transform_main_lib_file'
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5020 s/GNU General/GNU Lesser General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5021 s/General Public License/Lesser General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5022 s/Lesser Lesser General Public License/Lesser General Public License/g
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5023 '
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5024 ;;
18542
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5025 3orGPLv2)
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5026 sed_transform_main_lib_file=$sed_transform_main_lib_file'
18544
38ff2272f689 gnulib-tool: fix the previous change
Daiki Ueno <ueno@gnu.org>
parents: 18543
diff changeset
5027 /^ *This program is free software/i\
38ff2272f689 gnulib-tool: fix the previous change
Daiki Ueno <ueno@gnu.org>
parents: 18543
diff changeset
5028 This program is free software: you can redistribute it and\/or\
38ff2272f689 gnulib-tool: fix the previous change
Daiki Ueno <ueno@gnu.org>
parents: 18543
diff changeset
5029 modify it under the terms of either:\
18542
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5030 \
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5031 * the GNU Lesser General Public License as published by the Free\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5032 Software Foundation; either version 3 of the License, or (at your\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5033 option) any later version.\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5034 \
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5035 or\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5036 \
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5037 * the GNU General Public License as published by the Free\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5038 Software Foundation; either version 2 of the License, or (at your\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5039 option) any later version.\
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5040 \
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5041 or both in parallel, as here.
18544
38ff2272f689 gnulib-tool: fix the previous change
Daiki Ueno <ueno@gnu.org>
parents: 18543
diff changeset
5042 /^ *This program is free software/,/^$/d
18542
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5043 '
017f1e6e1dd1 gnulib-tool: properly list the LGPL3orGPLv2 license
Nikos Mavrogiannopoulos <nmav@gnutls.org>
parents: 18501
diff changeset
5044 ;;
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5045 2)
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5046 sed_transform_main_lib_file=$sed_transform_main_lib_file'
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5047 s/GNU General/GNU Lesser General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5048 s/General Public License/Lesser General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5049 s/Lesser Lesser General Public License/Lesser General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5050
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5051 s/version [23]\([ ,]\)/version 2.1\1/g
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5052 '
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5053 ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5054 *) func_fatal_error "invalid value lgpl=$lgpl" ;;
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5055 esac
9424
d852c1c185e4 If --lgpl is not specified, convert copyright headers to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9417
diff changeset
5056 else
d852c1c185e4 If --lgpl is not specified, convert copyright headers to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9417
diff changeset
5057 # Update license.
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5058 sed_transform_main_lib_file=$sed_transform_main_lib_file'
9424
d852c1c185e4 If --lgpl is not specified, convert copyright headers to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9417
diff changeset
5059 s/GNU Lesser General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5060 s/Lesser General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5061
9424
d852c1c185e4 If --lgpl is not specified, convert copyright headers to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9417
diff changeset
5062 s/GNU Library General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5063 s/Library General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5064
11592
345504ca672e gnulib-tool: Don't use non-POSIX regexps.
Simon Josefsson <simon@josefsson.org>
parents: 11560
diff changeset
5065 s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
9424
d852c1c185e4 If --lgpl is not specified, convert copyright headers to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 9417
diff changeset
5066 '
9096
7f1880b27b89 New gnulib-tool option --more-symlinks.
Bruno Haible <bruno@clisp.org>
parents: 9090
diff changeset
5067 fi
7199
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5068 fi
85ef7b18536b New config-h module, so that "make" output needn't be cluttered
Paul Eggert <eggert@cs.ucla.edu>
parents: 7195
diff changeset
5069
11594
36af7f748bb9 Don't do HAVE_CONFIG_H replacements on build-aux/ files.
Bruno Haible <bruno@clisp.org>
parents: 11593
diff changeset
5070 # Determine script to apply to auxiliary files that go into $auxdir/.
36af7f748bb9 Don't do HAVE_CONFIG_H replacements on build-aux/ files.
Bruno Haible <bruno@clisp.org>
parents: 11593
diff changeset
5071 sed_transform_build_aux_file=
11593
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5072 if test -n "$do_copyrights"; then
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5073 # Update license.
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5074 sed_transform_build_aux_file=$sed_transform_build_aux_file'
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5075 s/GNU Lesser General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5076 s/Lesser General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5077
11593
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5078 s/GNU Library General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5079 s/Library General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5080
11593
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5081 s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5082 '
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5083 fi
476a58fbc9b9 gnulib-tool: Transform license on build-aux/ files too.
Simon Josefsson <simon@josefsson.org>
parents: 11592
diff changeset
5084
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5085 # Determine script to apply to library files that go into $testsbase/.
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5086 sed_transform_testsrelated_lib_file="$sed_transform_lib_file"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5087 if test -n "$do_copyrights"; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5088 # Update license.
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5089 sed_transform_testsrelated_lib_file=$sed_transform_testsrelated_lib_file'
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5090 s/GNU Lesser General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5091 s/Lesser General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5092
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5093 s/GNU Library General/GNU General/g
14323
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5094 s/Library General Public License/General Public License/g
c1410c31aa51 gnulib-tool: Make copyright notice adjustment more robust.
Bruno Haible <bruno@clisp.org>
parents: 14273
diff changeset
5095
11592
345504ca672e gnulib-tool: Don't use non-POSIX regexps.
Simon Josefsson <simon@josefsson.org>
parents: 11560
diff changeset
5096 s/version 2\(.1\)\{0,1\}\([ ,]\)/version 3\2/g
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5097 '
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5098 fi
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5099
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5100 # Determine the final file lists.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
5101 func_modules_to_filelist_separately
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5102
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5103 test -n "$files" \
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5104 || func_fatal_error "refusing to do nothing"
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5105
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5106 # Add m4/gnulib-tool.m4 to the file list. It is not part of any module.
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5107 new_files="$files m4/gnulib-tool.m4"
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5108 old_files="$cached_files"
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5109 if test -f "$destdir"/$m4base/gnulib-tool.m4; then
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
5110 func_append old_files " m4/gnulib-tool.m4"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5111 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5112
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5113 rewritten='%REWRITTEN%'
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5114 sed_rewrite_old_files="\
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5115 s,^build-aux/,$rewritten$auxdir/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5116 s,^doc/,$rewritten$cached_docbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5117 s,^lib/,$rewritten$cached_sourcebase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5118 s,^m4/,$rewritten$cached_m4base/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5119 s,^tests/,$rewritten$cached_testsbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5120 s,^tests=lib/,$rewritten$cached_testsbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5121 s,^top/,$rewritten,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5122 s,^$rewritten,,"
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5123 sed_rewrite_new_files="\
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5124 s,^build-aux/,$rewritten$auxdir/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5125 s,^doc/,$rewritten$docbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5126 s,^lib/,$rewritten$sourcebase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5127 s,^m4/,$rewritten$m4base/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5128 s,^tests/,$rewritten$testsbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5129 s,^tests=lib/,$rewritten$testsbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5130 s,^top/,$rewritten,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
5131 s,^$rewritten,,"
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5132
40185
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5133 # Determine whether to put anything into $testsbase.
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5134 testsfiles=`echo "$files" | sed -n -e 's,^tests/,,p' -e 's,^tests=lib/,,p'`
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5135 if test -n "$testsfiles"; then
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5136 gentests=true
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5137 else
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5138 gentests=false
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5139 fi
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5140
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
5141 # Create directories.
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5142 { echo "$sourcebase"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5143 echo "$m4base"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5144 if test -n "$pobase"; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5145 echo "$pobase"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5146 fi
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5147 docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'`
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5148 if test -n "$docfiles"; then
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5149 echo "$docbase"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5150 fi
40185
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5151 if $gentests; then
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5152 echo "$testsbase"
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
5153 fi
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5154 echo "$auxdir"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5155 for f in $files; do echo $f; done \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5156 | sed -e "$sed_rewrite_new_files" \
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5157 | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5158 | LC_ALL=C sort -u
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5159 } > "$tmp"/dirs
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5160 { # Rearrange file descriptors. Needed because "while ... done < ..."
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5161 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5162 exec 5<&0 < "$tmp"/dirs
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5163 while read d; do
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5164 if test ! -d "$destdir/$d"; then
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5165 if $doit; then
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5166 echo "Creating directory $destdir/$d"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5167 mkdir -p "$destdir/$d" || func_fatal_error "failed"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5168 else
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5169 echo "Create directory $destdir/$d"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5170 fi
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5171 fi
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5172 done
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5173 exec 0<&5 5<&-
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
5174 }
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
5175
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
5176 # Copy files or make symbolic links or hard links. Remove obsolete files.
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5177 added_files=''
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5178 removed_files=''
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5179 delimiter=' '
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5180 # Construct a table with 2 columns: rewritten-file-name original-file-name,
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5181 # representing the files according to the last gnulib-tool invocation.
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5182 for f in $old_files; do echo $f; done \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5183 | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5184 | LC_ALL=C sort \
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5185 > "$tmp"/old-files
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5186 # Construct a table with 2 columns: rewritten-file-name original-file-name,
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5187 # representing the files after this gnulib-tool invocation.
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5188 for f in $new_files; do echo $f; done \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5189 | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5190 | LC_ALL=C sort \
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5191 > "$tmp"/new-files
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5192 # First the files that are in old-files, but not in new-files:
6595
0c67f1400c5b Fix portability problem to Solaris 9 sh.
Bruno Haible <bruno@clisp.org>
parents: 6581
diff changeset
5193 sed_take_first_column='s,'"$delimiter"'.*,,'
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5194 for g in `LC_ALL=C join -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5195 # Remove the file. Do nothing if the user already removed it.
9168
9b8032e2af0c Care about dangling symbolic links.
Bruno Haible <bruno@clisp.org>
parents: 9167
diff changeset
5196 if test -f "$destdir/$g" || test -h "$destdir/$g"; then
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5197 if $doit; then
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5198 echo "Removing file $g (backup in ${g}~)"
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5199 mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed"
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5200 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5201 echo "Remove file $g (backup in ${g}~)"
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5202 fi
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5203 func_append removed_files "$g$nl"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5204 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5205 done
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5206 # func_add_or_update handles a file that ought to be present afterwards.
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5207 # Uses parameters
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5208 # - f the original file name
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5209 # - g the rewritten file name
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
5210 # - already_present nonempty if the file should already exist, empty
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
5211 # otherwise
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5212 func_add_or_update ()
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5213 {
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5214 of="$f"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5215 case "$f" in
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5216 tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5217 esac
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5218 func_dest_tmpfilename "$g"
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
5219 func_lookup_file "$f"
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
5220 cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
19141
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5221 case "$f" in
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5222 *.class | *.mo )
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5223 # Don't process binary files with sed.
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5224 ;;
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5225 *)
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5226 if test -n "$sed_transform_main_lib_file"; then
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5227 case "$of" in
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5228 lib/*)
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5229 sed -e "$sed_transform_main_lib_file" \
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5230 < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5231 ;;
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5232 esac
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5233 fi
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5234 if test -n "$sed_transform_build_aux_file"; then
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5235 case "$of" in
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5236 build-aux/*)
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5237 sed -e "$sed_transform_build_aux_file" \
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5238 < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5239 ;;
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5240 esac
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5241 fi
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5242 if test -n "$sed_transform_testsrelated_lib_file"; then
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5243 case "$of" in
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5244 tests=lib/*)
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5245 sed -e "$sed_transform_testsrelated_lib_file" \
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5246 < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed"
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5247 ;;
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5248 esac
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5249 fi
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5250 ;;
6d737cdd7618 gnulib-tool: Simplify commit from 2015-08-20.
Bruno Haible <bruno@clisp.org>
parents: 18959
diff changeset
5251 esac
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5252 if test -f "$destdir/$g"; then
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5253 # The file already exists.
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
5254 func_update_file
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5255 else
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5256 # Install the file.
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5257 # Don't protest if the file should be there but isn't: it happens
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
5258 # frequently that developers don't put autogenerated files under version control.
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
5259 func_add_file
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5260 func_append added_files "$g$nl"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5261 fi
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5262 rm -f "$tmpfile"
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5263 }
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5264 # Then the files that are in new-files, but not in old-files:
6595
0c67f1400c5b Fix portability problem to Solaris 9 sh.
Bruno Haible <bruno@clisp.org>
parents: 6581
diff changeset
5265 sed_take_last_column='s,^.*'"$delimiter"',,'
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5266 already_present=
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5267 LC_ALL=C join -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5268 | sed -e "$sed_take_last_column" \
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5269 | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5270 { # Rearrange file descriptors. Needed because "while ... done < ..."
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5271 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
7368
a7abebdb07f4 * gnulib-tool (func_import, func_create_testdir): Fix typos in
Eric Blake <ebb9@byu.net>
parents: 7350
diff changeset
5272 exec 5<&0 < "$tmp"/added-files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5273 while read g f; do
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5274 func_add_or_update
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5275 done
7373
330a972d58f0 Tweak last patch, for symmetry.
Bruno Haible <bruno@clisp.org>
parents: 7368
diff changeset
5276 exec 0<&5 5<&-
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5277 }
6245
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5278 # Then the files that are in new-files and in old-files:
07b16a28510d Speed up the matching of new and old files.
Bruno Haible <bruno@clisp.org>
parents: 6213
diff changeset
5279 already_present=true
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
5280 LC_ALL=C join -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5281 | sed -e "$sed_take_last_column" \
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5282 | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5283 { # Rearrange file descriptors. Needed because "while ... done < ..."
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5284 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
7368
a7abebdb07f4 * gnulib-tool (func_import, func_create_testdir): Fix typos in
Eric Blake <ebb9@byu.net>
parents: 7350
diff changeset
5285 exec 5<&0 < "$tmp"/kept-files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5286 while read g f; do
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5287 func_add_or_update
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5288 done
7373
330a972d58f0 Tweak last patch, for symmetry.
Bruno Haible <bruno@clisp.org>
parents: 7368
diff changeset
5289 exec 0<&5 5<&-
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
5290 }
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5291
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5292 # Command-line invocation printed in a comment in generated gnulib-cache.m4.
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5293 actioncmd="# gnulib-tool --import"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5294
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5295 # Local helper.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5296 func_append_local_dir ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5297 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5298 func_append "$1" " --local-dir=$2"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5299 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5300 func_path_foreach "$local_gnulib_path" func_append_local_dir actioncmd %dir%
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5301
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5302 # Break the action command log into multiple lines.
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5303 # Emacs puts some gnulib-tool log lines in its source repository, and
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5304 # git send-email rejects patch lines longer than 998 characters.
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5305 # Also, config.status uses awk, and the HP-UX 11.00 awk fails if a
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5306 # line has length >= 3071; similarly, the IRIX 6.5 awk fails if a
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5307 # line has length >= 3072.
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5308 func_append_actionarg ()
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5309 {
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5310 func_append actioncmd " \\$nl# $1"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5311 }
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5312 func_append_actionarg "--lib=$libname"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5313 func_append_actionarg "--source-base=$sourcebase"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5314 func_append_actionarg "--m4-base=$m4base"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5315 if test -n "$pobase"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5316 func_append_actionarg "--po-base=$pobase"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5317 fi
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5318 func_append_actionarg "--doc-base=$docbase"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5319 func_append_actionarg "--tests-base=$testsbase"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5320 func_append_actionarg "--aux-dir=$auxdir"
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
5321 if $inctests; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5322 func_append_actionarg "--with-tests"
8890
576d3e4f31c2 Remember the presence of the --with-tests command-line option through
Bruno Haible <bruno@clisp.org>
parents: 8672
diff changeset
5323 fi
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
5324 if test -n "$incobsolete"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5325 func_append_actionarg "--with-obsolete"
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
5326 fi
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5327 if test -n "$inc_cxx_tests"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5328 func_append_actionarg "--with-c++-tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5329 fi
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5330 if test -n "$inc_longrunning_tests"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5331 func_append_actionarg "--with-longrunning-tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5332 fi
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5333 if test -n "$inc_privileged_tests"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5334 func_append_actionarg "--with-privileged-tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5335 fi
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5336 if test -n "$inc_unportable_tests"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5337 func_append_actionarg "--with-unportable-tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5338 fi
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5339 if test -n "$inc_all_tests"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5340 func_append_actionarg "--with-all-tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5341 fi
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5342 if test -n "$lgpl"; then
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5343 if test "$lgpl" = yes; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5344 func_append_actionarg "--lgpl"
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5345 else
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5346 func_append_actionarg "--lgpl=$lgpl"
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5347 fi
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5348 fi
18732
691ee9363949 gnulib-tool: fix typo in comment output
Paul Eggert <eggert@cs.ucla.edu>
parents: 18730
diff changeset
5349 if $gnu_make; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5350 func_append_actionarg "--gnu-make"
18730
5ce4a5b6d112 gnulib-tool: minor --gnu-make fixups
Paul Eggert <eggert@cs.ucla.edu>
parents: 18729
diff changeset
5351 fi
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5352 if test -n "$makefile_name"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5353 func_append_actionarg "--makefile-name=$makefile_name"
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5354 fi
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5355 if test "$cond_dependencies" = true; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5356 func_append_actionarg "--conditional-dependencies"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5357 else
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5358 func_append_actionarg "--no-conditional-dependencies"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5359 fi
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5360 if test "$libtool" = true; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5361 func_append_actionarg "--libtool"
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5362 else
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5363 func_append_actionarg "--no-libtool"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5364 fi
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5365 func_append_actionarg "--macro-prefix=$macro_prefix"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5366 if test -n "$po_domain"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5367 func_append_actionarg "--po-domain=$po_domain"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5368 fi
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5369 if test -n "$witness_c_macro"; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5370 func_append_actionarg "--witness-c-macro=$witness_c_macro"
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5371 fi
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5372 if test -n "$vc_files"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5373 if test "$vc_files" = true; then
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5374 func_append_actionarg "--vc-files"
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5375 else
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5376 func_append_actionarg "--no-vc-files"
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5377 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5378 fi
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5379 for module in $avoidlist; do
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5380 func_append_actionarg "--avoid=$module"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5381 done
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5382 for module in $specified_modules; do
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5383 func_append_actionarg "$module"
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5384 done
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5385
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
5386 # Determine include_guard_prefix.
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
5387 func_compute_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
5388
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5389 # Default the makefile name to Makefile.am.
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5390 if test -n "$makefile_name"; then
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5391 makefile_am=$makefile_name
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5392 else
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5393 makefile_am=Makefile.am
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5394 fi
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5395
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
5396 # Create normal Makefile.ams.
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
5397 for_test=false
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
5398
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5399 # Setup list of Makefile.am edits that are to be performed afterwards.
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5400 # Some of these edits apply to files that we will generate; others are
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5401 # under the responsibility of the developer.
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5402 makefile_am_edits=0
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5403 # func_note_Makefile_am_edit dir var value [dotfirst]
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5404 # remembers that ${dir}Makefile.am needs to be edited to that ${var} mentions
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5405 # ${value}.
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5406 # If ${dotfirst} is non-empty, this mention needs to be present after '.'.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5407 # This is a special hack for the SUBDIRS variable, cf.
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5408 # <https://www.gnu.org/software/automake/manual/html_node/Subdirectories.html>.
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5409 func_note_Makefile_am_edit ()
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5410 {
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5411 makefile_am_edits=`expr $makefile_am_edits + 1`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5412 eval makefile_am_edit${makefile_am_edits}_dir=\"\$1\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5413 eval makefile_am_edit${makefile_am_edits}_var=\"\$2\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5414 eval makefile_am_edit${makefile_am_edits}_val=\"\$3\"
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5415 eval makefile_am_edit${makefile_am_edits}_dotfirst=\"\$4\"
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5416 }
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5417 if test "$makefile_am" = Makefile.am; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5418 sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5419 sourcebase_base=`basename "$sourcebase"`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5420 func_note_Makefile_am_edit "$sourcebase_dir" SUBDIRS "$sourcebase_base"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5421 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5422 if test -n "$pobase"; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5423 pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5424 pobase_base=`basename "$pobase"`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5425 func_note_Makefile_am_edit "$pobase_dir" SUBDIRS "$pobase_base"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5426 fi
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
5427 if $inctests; then
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5428 if test "$makefile_am" = Makefile.am; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5429 testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5430 testsbase_base=`basename "$testsbase"`
39815
35efeabe809f gnulib-tool: Fix build order when $testsbase is a subdir of $sourcebase.
Bruno Haible <bruno@clisp.org>
parents: 39755
diff changeset
5431 func_note_Makefile_am_edit "$testsbase_dir" SUBDIRS "$testsbase_base" true
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5432 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5433 fi
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5434 func_note_Makefile_am_edit "" ACLOCAL_AMFLAGS "-I ${m4base}"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5435 {
10478
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5436 # Find the first parent directory of $m4base that contains or will contain
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5437 # a Makefile.am.
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5438 sed_last='s,^.*/\([^/][^/]*\)//*$,\1/,
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5439 s,//*$,/,'
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5440 sed_butlast='s,[^/][^/]*//*$,,'
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5441 dir1="${m4base}/"; dir2=""
10478
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5442 while test -n "$dir1" \
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5443 && ! { test -f "${destdir}/${dir1}Makefile.am" \
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5444 || test "${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5445 || test "./${dir1}Makefile.am" = "$sourcebase/$makefile_am" \
40185
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5446 || { $gentests \
10478
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5447 && { test "${dir1}Makefile.am" = "$testsbase/$makefile_am" \
569d6cd01c90 Oops, tweak last commit so that it also works in the first gnulib-tool run.
Bruno Haible <bruno@clisp.org>
parents: 10476
diff changeset
5448 || test "./${dir1}Makefile.am" = "$testsbase/$makefile_am"; }; }; }; do
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5449 dir2=`echo "$dir1" | sed -e "$sed_last"`"$dir2"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5450 dir1=`echo "$dir1" | sed -e "$sed_butlast"`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5451 done
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5452 func_note_Makefile_am_edit "$dir1" EXTRA_DIST "${dir2}gnulib-cache.m4"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5453 }
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5454
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5455 # Create library makefile.
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5456 func_dest_tmpfilename $sourcebase/$makefile_am
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5457 destfile="$sourcebase/$makefile_am"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5458 modules="$main_modules"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5459 func_emit_lib_Makefile_am > "$tmpfile"
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5460 if test -f "$destdir"/$sourcebase/$makefile_am; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5461 if cmp -s "$destdir"/$sourcebase/$makefile_am "$tmpfile"; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5462 rm -f "$tmpfile"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5463 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5464 if $doit; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5465 echo "Updating $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5466 mv -f "$destdir"/$sourcebase/$makefile_am "$destdir"/$sourcebase/$makefile_am~
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5467 mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5468 else
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5469 echo "Update $sourcebase/$makefile_am (backup in $sourcebase/$makefile_am~)"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5470 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5471 fi
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5472 fi
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5473 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5474 if $doit; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5475 echo "Creating $sourcebase/$makefile_am"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5476 mv -f "$tmpfile" "$destdir"/$sourcebase/$makefile_am
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5477 else
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5478 echo "Create $sourcebase/$makefile_am"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5479 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5480 fi
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5481 func_append added_files "$sourcebase/$makefile_am$nl"
5351
7c565c8ecabc Move duplicated code into function func_emit_lib_Makefile_am().
Bruno Haible <bruno@clisp.org>
parents: 5350
diff changeset
5482 fi
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5483
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5484 # Create po/ directory.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5485 if test -n "$pobase"; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5486 # Create po makefile and auxiliary files.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5487 for file in Makefile.in.in remove-potcdate.sin; do
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5488 func_dest_tmpfilename $pobase/$file
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5489 func_lookup_file build-aux/po/$file
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5490 cat "$lookedup_file" > "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5491 if test -f "$destdir"/$pobase/$file; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5492 if cmp -s "$destdir"/$pobase/$file "$tmpfile"; then
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5493 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5494 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5495 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5496 echo "Updating $pobase/$file (backup in $pobase/$file~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5497 mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5498 mv -f "$tmpfile" "$destdir"/$pobase/$file
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5499 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5500 echo "Update $pobase/$file (backup in $pobase/$file~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5501 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5502 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5503 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5504 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5505 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5506 echo "Creating $pobase/$file"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5507 mv -f "$tmpfile" "$destdir"/$pobase/$file
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5508 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5509 echo "Create $pobase/$file"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5510 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5511 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5512 func_append added_files "$pobase/$file$nl"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5513 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5514 done
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
5515 # Create po makefile parameterization, part 1.
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5516 func_dest_tmpfilename $pobase/Makevars
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5517 func_emit_po_Makevars > "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5518 if test -f "$destdir"/$pobase/Makevars; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5519 if cmp -s "$destdir"/$pobase/Makevars "$tmpfile"; then
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5520 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5521 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5522 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5523 echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5524 mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5525 mv -f "$tmpfile" "$destdir"/$pobase/Makevars
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5526 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5527 echo "Update $pobase/Makevars (backup in $pobase/Makevars~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5528 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5529 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5530 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5531 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5532 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5533 echo "Creating $pobase/Makevars"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5534 mv -f "$tmpfile" "$destdir"/$pobase/Makevars
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5535 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5536 echo "Create $pobase/Makevars"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5537 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5538 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5539 func_append added_files "$pobase/Makevars$nl"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5540 fi
10065
e1449fcc7ecb * gnulib-tool: Fix various comment typos.
Eric Blake <ebb9@byu.net>
parents: 9887
diff changeset
5541 # Create po makefile parameterization, part 2.
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5542 func_dest_tmpfilename $pobase/POTFILES.in
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5543 func_emit_po_POTFILES_in > "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5544 if test -f "$destdir"/$pobase/POTFILES.in; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5545 if cmp -s "$destdir"/$pobase/POTFILES.in "$tmpfile"; then
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5546 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5547 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5548 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5549 echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5550 mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5551 mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5552 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5553 echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5554 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5555 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5556 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5557 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5558 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5559 echo "Creating $pobase/POTFILES.in"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5560 mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5561 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5562 echo "Create $pobase/POTFILES.in"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5563 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5564 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5565 func_append added_files "$pobase/POTFILES.in$nl"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5566 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5567 # Fetch PO files.
19192
d86e08b1f555 all: Replace many more http URLs by https URLs. Update stale URLs.
Bruno Haible <bruno@clisp.org>
parents: 19190
diff changeset
5568 TP_URL="https://translationproject.org/latest/"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5569 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5570 echo "Fetching gnulib PO files from $TP_URL"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5571 (cd "$destdir"/$pobase \
39897
ac60f423d63b bootstrap, gnulib-tool: use https instead of insecure rsync
Benno Schulenberg <bensberg@telfort.nl>
parents: 39895
diff changeset
5572 && wget --no-verbose --mirror --level=1 -nd -A.po -P . "${TP_URL}gnulib/"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5573 )
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5574 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5575 echo "Fetch gnulib PO files from $TP_URL"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5576 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5577 # Create po/LINGUAS.
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5578 if $doit; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5579 func_dest_tmpfilename $pobase/LINGUAS
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5580 (cd "$destdir"/$pobase \
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5581 && { echo '# Set of available languages.'
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5582 LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,'
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5583 }
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5584 ) > "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5585 if test -f "$destdir"/$pobase/LINGUAS; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5586 if cmp -s "$destdir"/$pobase/LINGUAS "$tmpfile"; then
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5587 rm -f "$tmpfile"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5588 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5589 echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5590 mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5591 mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5592 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5593 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5594 echo "Creating $pobase/LINGUAS"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5595 mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5596 func_append added_files "$pobase/LINGUAS$nl"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5597 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5598 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5599 if test -f "$destdir"/$pobase/LINGUAS; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5600 echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5601 else
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5602 echo "Create $pobase/LINGUAS"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5603 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5604 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5605 fi
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5606
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5607 # func_count_relative_local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5608 # gl_LOCAL_DIR requires local_gnulib_path to be set relatively to destdir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5609 # Input:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5610 # - local_gnulib_path from --local-dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5611 # - destdir from --dir
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5612 # Output:
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5613 # - relative_local_dir path to be stored into gl_LOCAL_DIR
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5614 func_count_relative_local_gnulib_path ()
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5615 {
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5616 relative_local_gnulib_path=
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
5617 save_IFS="$IFS"
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
5618 IFS="$PATH_SEPARATOR"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5619 for local_dir in $local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5620 do
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
5621 IFS="$save_IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5622 # Store the local_dir relative to destdir.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5623 case "$local_dir" in
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5624 "" | /*)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5625 relative_local_dir="$local_dir" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5626 * )
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5627 case "$destdir" in
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5628 /*) relative_local_dir="$local_dir" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5629 *)
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5630 # destdir, local_dir are both relative.
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5631 func_relativize "$destdir" "$local_dir"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5632 relative_local_dir="$reldir" ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5633 esac ;;
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5634 esac
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5635 func_path_append relative_local_gnulib_path "$relative_local_dir"
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5636 done
40184
7f0ac0398fae gnulib-tool: Improve handling of multiple --local-dir options.
Bruno Haible <bruno@clisp.org>
parents: 40128
diff changeset
5637 IFS="$save_IFS"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5638 }
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5639
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5640 # Create m4/gnulib-cache.m4.
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5641 func_dest_tmpfilename $m4base/gnulib-cache.m4
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5642 (
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
5643 func_emit_copyright_notice
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5644 echo "#"
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5645 echo "# This file represents the specification of how gnulib-tool is used."
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5646 echo "# It acts as a cache: It is written and read by gnulib-tool."
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
5647 echo "# In projects that use version control, this file is meant to be put under"
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
5648 echo "# version control, like the configure.ac and various Makefile.am files."
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5649 echo
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5650 echo
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5651 echo "# Specification in the form of a command-line invocation:"
39748
912cc79f4d91 gnulib-tool: limit line length for git send-email
Paul Eggert <eggert@cs.ucla.edu>
parents: 39737
diff changeset
5652 printf '%s\n' "$actioncmd"
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5653 echo
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5654 echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:"
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5655 func_count_relative_local_gnulib_path
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
5656 echo "gl_LOCAL_DIR([$relative_local_gnulib_path])"
10246
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
5657 echo "gl_MODULES(["
12417
e09c73938d46 Use sed with option -e.
Bruno Haible <bruno@clisp.org>
parents: 12310
diff changeset
5658 echo "$specified_modules" | sed -e 's/^/ /g'
10246
50a9076d476d Make gnulib-cache.m4 easier to diff.
Eric Blake <ebb9@byu.net>
parents: 10157
diff changeset
5659 echo "])"
10744
7fb7b37150b3 New option --with-obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10743
diff changeset
5660 test -z "$incobsolete" || echo "gl_WITH_OBSOLETE"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5661 test -z "$inc_cxx_tests" || echo "gl_WITH_CXX_TESTS"
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5662 test -z "$inc_longrunning_tests" || echo "gl_WITH_LONGRUNNING_TESTS"
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5663 test -z "$inc_privileged_tests" || echo "gl_WITH_PRIVILEGED_TESTS"
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5664 test -z "$inc_unportable_tests" || echo "gl_WITH_UNPORTABLE_TESTS"
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
5665 test -z "$inc_all_tests" || echo "gl_WITH_ALL_TESTS"
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5666 echo "gl_AVOID([$avoidlist])"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5667 echo "gl_SOURCE_BASE([$sourcebase])"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5668 echo "gl_M4_BASE([$m4base])"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5669 echo "gl_PO_BASE([$pobase])"
6955
7715890c929a * gnulib-tool: List --doc-base before --tests-base.
Eric Blake <ebb9@byu.net>
parents: 6952
diff changeset
5670 echo "gl_DOC_BASE([$docbase])"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5671 echo "gl_TESTS_BASE([$testsbase])"
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
5672 if $inctests; then
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
5673 echo "gl_WITH_TESTS"
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
5674 fi
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5675 echo "gl_LIB([$libname])"
9417
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5676 if test -n "$lgpl"; then
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5677 if test "$lgpl" = yes; then
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5678 echo "gl_LGPL"
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5679 else
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5680 echo "gl_LGPL([$lgpl])"
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5681 fi
95cbd64f5138 Allow specifying the LGPL version number through --lgpl=2 or --lgpl=3.
Bruno Haible <bruno@clisp.org>
parents: 9377
diff changeset
5682 fi
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5683 echo "gl_MAKEFILE_NAME([$makefile_name])"
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5684 if test "$cond_dependencies" = true; then
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5685 echo "gl_CONDITIONAL_DEPENDENCIES"
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
5686 fi
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5687 if test "$libtool" = true; then
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5688 echo "gl_LIBTOOL"
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5689 fi
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5690 echo "gl_MACRO_PREFIX([$macro_prefix])"
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
5691 echo "gl_PO_DOMAIN([$po_domain])"
17039
e5d33904a8b2 gnulib-tool: Fix persistence of --witness-c-macro option.
Bruno Haible <bruno@clisp.org>
parents: 17004
diff changeset
5692 echo "gl_WITNESS_C_MACRO([$witness_c_macro])"
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5693 if test -n "$vc_files"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5694 echo "gl_VC_FILES([$vc_files])"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5695 fi
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5696 ) > "$tmpfile"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5697 if test -f "$destdir"/$m4base/gnulib-cache.m4; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5698 if cmp -s "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile"; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5699 rm -f "$tmpfile"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5700 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5701 if $doit; then
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5702 echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5703 mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5704 mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5705 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5706 echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)"
6249
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5707 if false; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5708 cat "$tmpfile"
6249
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5709 echo
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5710 echo "# gnulib-cache.m4 ends here"
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5711 fi
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5712 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5713 fi
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5714 fi
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5715 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5716 if $doit; then
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5717 echo "Creating $m4base/gnulib-cache.m4"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5718 mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5719 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5720 echo "Create $m4base/gnulib-cache.m4"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5721 cat "$tmpfile"
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5722 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5723 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5724 fi
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5725
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5726 # Create m4/gnulib-comp.m4.
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5727 func_dest_tmpfilename $m4base/gnulib-comp.m4
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5728 (
7421
8bace4b08db5 Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents: 7391
diff changeset
5729 echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!"
6777
d9b10884dc69 * gnulib-tool (func_version): Base copyright year on CVS date.
Eric Blake <ebb9@byu.net>
parents: 6765
diff changeset
5730 func_emit_copyright_notice
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5731 echo "#"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5732 echo "# This file represents the compiled summary of the specification in"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5733 echo "# gnulib-cache.m4. It lists the computed macro invocations that need"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5734 echo "# to be invoked from configure.ac."
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
5735 echo "# In projects that use version control, this file can be treated like"
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
5736 echo "# other built files."
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5737 echo
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5738 echo
6160
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
5739 echo "# This macro should be invoked from $configure_ac, in the section"
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
5740 echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before"
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
5741 echo "# any checks for libraries, header files, types and library functions."
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
5742 echo "AC_DEFUN([${macro_prefix}_EARLY],"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5743 echo "["
7105
641bac73140c * gnulib-tool (func_import): Detect unexpanded macros in gnulib
Eric Blake <ebb9@byu.net>
parents: 7090
diff changeset
5744 echo " m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
5745 echo " m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
5746 echo " m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
5747 echo " m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
18114
e212f9b1ce05 gnulib-common.m4: fix gl_PROG_AR_RANLIB/AM_PROG_AR clash
Pavel Raiskup <praiskup@redhat.com>
parents: 18109
diff changeset
5748
18124
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
5749 func_emit_pre_early_macros : ' ' "$final_modules"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
5750
18729
9534f71959d1 gnulib-tool: new option --gnu-make
Paul Eggert <eggert@cs.ucla.edu>
parents: 18704
diff changeset
5751 if ! $gnu_make && test -n "$uses_subdirs"; then
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
5752 echo " AC_REQUIRE([AM_PROG_CC_C_O])"
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
5753 fi
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5754 for module in $final_modules; do
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5755 func_verify_module
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5756 if test -n "$module"; then
12983
39ddc4b73387 gnulib-tool (func_import): Explain origin of code.
Simon Josefsson <simon@josefsson.org>
parents: 12982
diff changeset
5757 echo "# Code from module $module:"
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5758 func_get_autoconf_early_snippet "$module"
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5759 fi
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5760 done \
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
5761 | sed -e '/^$/d;' -e 's/^/ /'
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5762 echo "])"
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5763 echo
6160
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
5764 echo "# This macro should be invoked from $configure_ac, in the section"
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
5765 echo "# \"Check for header files, types and library functions\"."
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
5766 echo "AC_DEFUN([${macro_prefix}_INIT],"
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5767 echo "["
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5768 if test "$libtool" = true; then
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5769 echo " AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5770 echo " gl_cond_libtool=true"
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
5771 else
6512
f8abe8d41137 RANLIB is needed.
Bruno Haible <bruno@clisp.org>
parents: 6464
diff changeset
5772 echo " AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5773 echo " gl_cond_libtool=false"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5774 echo " gl_libdeps="
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5775 echo " gl_ltlibdeps="
6414
46d47c8fe734 * gnulib-tool: Define automake conditional GL_COND_LIBTOOL if
Simon Josefsson <simon@josefsson.org>
parents: 6389
diff changeset
5776 fi
6556
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5777 if test "$auxdir" != "build-aux"; then
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5778 sed_replace_build_aux='
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5779 :a
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5780 /AC_CONFIG_FILES(.*:build-aux\/.*)/{
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5781 s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5782 ba
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5783 }'
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5784 else
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
5785 sed_replace_build_aux="$sed_noop"
6556
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
5786 fi
13105
6d950d2ec11e gnulib-tool: Provide the value of --m4-base to modules.
Bruno Haible <bruno@clisp.org>
parents: 13090
diff changeset
5787 echo " gl_m4_base='$m4base'"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5788 func_emit_initmacro_start $macro_prefix
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5789 echo " gl_source_base='$sourcebase'"
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5790 if test -n "$witness_c_macro"; then
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5791 echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$witness_c_macro])"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5792 fi
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
5793 func_emit_autoconf_snippets "$main_modules" "$main_modules" func_verify_module true false true
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5794 if test -n "$witness_c_macro"; then
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5795 echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
5796 fi
12983
39ddc4b73387 gnulib-tool (func_import): Explain origin of code.
Simon Josefsson <simon@josefsson.org>
parents: 12982
diff changeset
5797 echo " # End of code from modules"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5798 func_emit_initmacro_end $macro_prefix
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5799 echo " gltests_libdeps="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5800 echo " gltests_ltlibdeps="
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5801 func_emit_initmacro_start ${macro_prefix}tests
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5802 echo " gl_source_base='$testsbase'"
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5803 # Define a tests witness macro that depends on the package.
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5804 # PACKAGE is defined by AM_INIT_AUTOMAKE, PACKAGE_TARNAME is defined by AC_INIT.
19439
8bfc20b57265 maint: shorten https://lists.gnu.org/archive/html/... links
Jim Meyering <meyering@fb.com>
parents: 19271
diff changeset
5805 # See <https://lists.gnu.org/r/automake/2009-05/msg00145.html>.
13089
a1999d4ef573 Fix definition of tests witness macro.
Bruno Haible <bruno@clisp.org>
parents: 13081
diff changeset
5806 echo "changequote(,)dnl"
13090
f870702f0e45 Fix definition of tests witness macro.
Bruno Haible <bruno@clisp.org>
parents: 13089
diff changeset
5807 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"
13089
a1999d4ef573 Fix definition of tests witness macro.
Bruno Haible <bruno@clisp.org>
parents: 13081
diff changeset
5808 echo "changequote([, ])dnl"
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5809 echo " AC_SUBST([${macro_prefix}tests_WITNESS])"
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5810 echo " gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5811 echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
5812 func_emit_autoconf_snippets "$testsrelated_modules" "$main_modules $testsrelated_modules" func_verify_module true true true
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5813 echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5814 func_emit_initmacro_end ${macro_prefix}tests
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5815 # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5816 # created using libtool, because libtool already handles the dependencies.
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5817 if test "$libtool" != true; then
13768
f19c8837df90 more ports to Solaris tr, which needs [] around ranges
Paul Eggert <eggert@cs.ucla.edu>
parents: 13763
diff changeset
5818 libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5819 echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5820 echo " AC_SUBST([${libname_upper}_LIBDEPS])"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5821 echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5822 echo " AC_SUBST([${libname_upper}_LTLIBDEPS])"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
5823 fi
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5824 if $use_libtests; then
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5825 echo " LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5826 echo " AC_SUBST([LIBTESTS_LIBDEPS])"
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5827 fi
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5828 echo "])"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5829 func_emit_initmacro_done $macro_prefix $sourcebase
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5830 func_emit_initmacro_done ${macro_prefix}tests $testsbase
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
5831 echo
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5832 echo "# This macro records the list of files which have been installed by"
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5833 echo "# gnulib-tool and may be removed by future gnulib-tool invocations."
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5834 echo "AC_DEFUN([${macro_prefix}_FILE_LIST], ["
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
5835 echo "$files" | sed -e 's,^, ,'
6180
a0904de304e5 Separate the generates files into cvs-committable files and frequently
Bruno Haible <bruno@clisp.org>
parents: 6179
diff changeset
5836 echo "])"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5837 ) > "$tmpfile"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5838 if test -f "$destdir"/$m4base/gnulib-comp.m4; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5839 if cmp -s "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile"; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5840 rm -f "$tmpfile"
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5841 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5842 if $doit; then
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5843 echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5844 mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5845 mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5846 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5847 echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)"
6249
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5848 if false; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5849 cat "$tmpfile"
6249
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5850 echo
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5851 echo "# gnulib-comp.m4 ends here"
564133adbd69 Comment out too much verbosity in --dry-run.
Bruno Haible <bruno@clisp.org>
parents: 6248
diff changeset
5852 fi
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5853 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5854 fi
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5855 fi
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5856 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5857 if $doit; then
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5858 echo "Creating $m4base/gnulib-comp.m4"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5859 mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4
6246
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5860 else
7c089b3b2200 Rework the way --dry-run works.
Bruno Haible <bruno@clisp.org>
parents: 6245
diff changeset
5861 echo "Create $m4base/gnulib-comp.m4"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5862 cat "$tmpfile"
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5863 rm -f "$tmpfile"
6181
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5864 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5865 fi
95b89dc3f638 Read the previous cached settings.
Bruno Haible <bruno@clisp.org>
parents: 6180
diff changeset
5866
40185
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
5867 if $gentests; then
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
5868 # Create tests makefile.
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5869 func_dest_tmpfilename $testsbase/$makefile_am
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
5870 destfile="$testsbase/$makefile_am"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
5871 modules="$testsrelated_modules"
13067
0e829091f9c0 Avoid side effects from tests-related modules on the compilation of lib.
Bruno Haible <bruno@clisp.org>
parents: 12986
diff changeset
5872 func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$tmpfile"
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5873 if test -f "$destdir"/$testsbase/$makefile_am; then
16714
2e2bf6c7bf38 gnulib-tool: Avoid unintended error output from 'cmp'.
Bruno Haible <bruno@clisp.org>
parents: 16713
diff changeset
5874 if cmp -s "$destdir"/$testsbase/$makefile_am "$tmpfile"; then
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5875 rm -f "$tmpfile"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5876 else
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5877 if $doit; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5878 echo "Updating $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5879 mv -f "$destdir"/$testsbase/$makefile_am "$destdir"/$testsbase/$makefile_am~
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5880 mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5881 else
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5882 echo "Update $testsbase/$makefile_am (backup in $testsbase/$makefile_am~)"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5883 rm -f "$tmpfile"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5884 fi
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5885 fi
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5886 else
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5887 if $doit; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5888 echo "Creating $testsbase/$makefile_am"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5889 mv -f "$tmpfile" "$destdir"/$testsbase/$makefile_am
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5890 else
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
5891 echo "Create $testsbase/$makefile_am"
6745
aca74c06bca0 Fix "gnulib-tool --dry-run --import" in a package that has no lib/ and
Bruno Haible <bruno@clisp.org>
parents: 6633
diff changeset
5892 rm -f "$tmpfile"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5893 fi
17046
e23106558036 gnulib-tool: Fix indentation.
Bruno Haible <bruno@clisp.org>
parents: 17045
diff changeset
5894 func_append added_files "$testsbase/$makefile_am$nl"
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5895 fi
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5896 fi
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
5897
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5898 if test "$vc_files" != false; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5899 # Update the .cvsignore and .gitignore files.
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5900 { echo "$added_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|A|\1,'
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5901 echo "$removed_files" | sed -e '/^$/d' -e 's,\([^/]*\)$,|R|\1,'
10252
66f4295bd26d Put gnulib-comp.m4 into .cvsignore or .gitignore.
Bruno Haible <bruno@clisp.org>
parents: 10250
diff changeset
5902 # Treat gnulib-comp.m4 like an added file, even if it already existed.
66f4295bd26d Put gnulib-comp.m4 into .cvsignore or .gitignore.
Bruno Haible <bruno@clisp.org>
parents: 10250
diff changeset
5903 echo "$m4base/|A|gnulib-comp.m4"
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5904 } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5905 { # Rearrange file descriptors. Needed because "while ... done < ..."
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5906 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5907 exec 5<&0 < "$tmp"/fileset-changes
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5908 func_update_ignorelist ()
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5909 {
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5910 ignore="$1"
10298
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5911 if test "$ignore" = .gitignore; then
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5912 # In a .gitignore file, "foo" applies to the current directory and all
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5913 # subdirectories, whereas "/foo" applies to the current directory only.
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5914 anchor='/'
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5915 escaped_anchor='\/'
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5916 doubly_escaped_anchor='\\/'
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5917 else
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5918 anchor=''
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5919 escaped_anchor=''
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5920 doubly_escaped_anchor=''
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5921 fi
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5922 if test -f "$destdir/$dir$ignore"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5923 if test -n "$dir_added" || test -n "$dir_removed"; then
10298
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5924 sed -e "s|^$anchor||" < "$destdir/$dir$ignore" | LC_ALL=C sort > "$tmp"/ignore
12881
c6e9c683bc41 Really work around around "broken pipe" error message from bash 3.2.
Bruno Haible <bruno@clisp.org>
parents: 12877
diff changeset
5925 (echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \
10980
d54e63808f25 work around Solaris 8 'join' bug
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10969
diff changeset
5926 | LC_ALL=C join -v 1 - "$tmp"/ignore > "$tmp"/ignore-added
10379
a4e295b67e54 Attempt to avoid error messages like "echo: write error: Broken pipe".
Bruno Haible <bruno@clisp.org>
parents: 10298
diff changeset
5927 echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \
17045
0e193bb29639 gnulib-tool: Remove old file names from .cvsignore, .gitignore.
Bruno Haible <bruno@clisp.org>
parents: 17042
diff changeset
5928 > "$tmp"/ignore-removed
10379
a4e295b67e54 Attempt to avoid error messages like "echo: write error: Broken pipe".
Bruno Haible <bruno@clisp.org>
parents: 10298
diff changeset
5929 )
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5930 if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5931 if $doit; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5932 echo "Updating $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5933 mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~
10981
78dea9790e0f Fix small bug in update of .cvsignore or .gitignore.
Bruno Haible <bruno@clisp.org>
parents: 10980
diff changeset
5934 { sed -e 's,/,\\/,g' -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed
11232
6df7300b55df Make a sed expression POSIX compliant.
Bruno Haible <bruno@clisp.org>
parents: 11231
diff changeset
5935 if test -n "$anchor"; then sed -e 's,/,\\/,g' -e "s,^,/^${doubly_escaped_anchor}," -e 's,$,$/d,' < "$tmp"/ignore-removed; fi
10298
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5936 } > "$tmp"/sed-ignore-removed
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5937 { cat "$destdir/$dir$ignore"~
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5938 sed -e "s|^|$anchor|" < "$tmp"/ignore-added
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5939 } | sed -f "$tmp"/sed-ignore-removed \
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5940 > "$destdir/$dir$ignore"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5941 else
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5942 echo "Update $destdir/$dir$ignore (backup in $destdir/$dir${ignore}~)"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5943 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5944 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5945 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5946 else
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5947 if test -n "$dir_added"; then
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5948 if $doit; then
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5949 echo "Creating $destdir/$dir$ignore"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5950 {
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5951 if test "$ignore" = .cvsignore; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5952 echo ".deps"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5953 # Automake generates Makefile rules that create .dirstamp files.
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5954 echo ".dirstamp"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5955 fi
10298
9b0ceb24a573 Prepend each added line in .gitignore files with a slash.
Bruno Haible <bruno@clisp.org>
parents: 10293
diff changeset
5956 echo "$dir_added" | sed -e '/^$/d' -e "s|^|$anchor|" | LC_ALL=C sort -u
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5957 } > "$destdir/$dir$ignore"
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5958 else
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5959 echo "Create $destdir/$dir$ignore"
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5960 fi
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5961 fi
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5962 fi
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5963 }
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5964 func_done_dir ()
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5965 {
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5966 dir="$1"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5967 dir_added="$2"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5968 dir_removed="$3"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5969 if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5970 func_update_ignorelist .cvsignore
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5971 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5972 if test -d "$destdir/.git" || test -f "$destdir/${dir}.gitignore"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5973 func_update_ignorelist .gitignore
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5974 fi
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5975 }
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5976 last_dir=
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5977 last_dir_added=
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5978 last_dir_removed=
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5979 while read line; do
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5980 # Why not ''read next_dir op file'' ? Because the dir column can be empty.
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5981 next_dir=`echo "$line" | sed -e 's,|.*,,'`
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5982 op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'`
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5983 file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'`
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5984 if test "$next_dir" != "$last_dir"; then
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5985 func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5986 last_dir="$next_dir"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5987 last_dir_added=
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5988 last_dir_removed=
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5989 fi
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5990 case $op in
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5991 A) func_append last_dir_added "$file$nl";;
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5992 R) func_append last_dir_removed "$file$nl";;
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5993 esac
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5994 done
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5995 func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed"
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5996 exec 0<&5 5<&-
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5997 }
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
5998 fi
8451
ba5ed28cb276 Update .cvsignore and .gitignore files.
Bruno Haible <bruno@clisp.org>
parents: 8432
diff changeset
5999
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
6000 echo "Finished."
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
6001 echo
5572
54000928a33d Print #include directives when --import'ing.
Simon Josefsson <simon@josefsson.org>
parents: 5527
diff changeset
6002 echo "You may need to add #include directives for the following .h files."
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6003 # Intersect $specified_modules and $main_modules
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6004 # (since $specified_modules is not necessarily of subset of $main_modules
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6005 # - some may have been skipped through --avoid, and since the elements of
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6006 # $main_modules but not in $specified_modules can go away without explicit
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6007 # notice - through changes in the module dependencies).
7721
ef2654457d79 Don't show the includes for modules that were not explicitly specified.
Bruno Haible <bruno@clisp.org>
parents: 7701
diff changeset
6008 echo "$specified_modules" > "$tmp"/modules1 # a sorted list, one module per line
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6009 echo "$main_modules" > "$tmp"/modules2 # also a sorted list, one module per line
7322
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6010 # First the #include <...> directives without #ifs, sorted for convenience,
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6011 # then the #include "..." directives without #ifs, sorted for convenience,
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6012 # then the #include directives that are surrounded by #ifs. Not sorted.
7722
504e81510ee5 Fix 'join' invocation.
Bruno Haible <bruno@clisp.org>
parents: 7721
diff changeset
6013 for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
7322
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6014 include_directive=`func_get_include_directive "$module"`
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6015 case "$nl$include_directive" in
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6016 *"$nl#if"*)
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6017 echo "$include_directive" 1>&5
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6018 ;;
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6019 *)
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6020 echo "$include_directive" | grep -v 'include "' 1>&6
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6021 echo "$include_directive" | grep 'include "' 1>&7
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6022 ;;
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6023 esac
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6024 done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes
6756
4d481eff340f Sort the #include directives more carefully.
Bruno Haible <bruno@clisp.org>
parents: 6750
diff changeset
6025 (
7322
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6026 LC_ALL=C sort -u "$tmp"/include-angles
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6027 LC_ALL=C sort -u "$tmp"/include-quotes
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6028 cat "$tmp"/include-if
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6029 ) | sed -e '/^$/d' -e 's/^/ /'
7322
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6030 rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if
46d98b687a87 Speed up presentation of the include files.
Bruno Haible <bruno@clisp.org>
parents: 7321
diff changeset
6031
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6032 for module in $main_modules; do
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6033 func_get_link_directive "$module"
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6034 done \
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6035 | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/ /' > "$tmp"/link
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6036 if test `wc -l < "$tmp"/link` != 0; then
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6037 echo
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6038 echo "You may need to use the following Makefile variables when linking."
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6039 echo "Use them in <program>_LDADD when linking a program, or"
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6040 echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library."
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6041 cat "$tmp"/link
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6042 fi
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6043 rm -f "$tmp"/link
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
6044
5572
54000928a33d Print #include directives when --import'ing.
Simon Josefsson <simon@josefsson.org>
parents: 5527
diff changeset
6045 echo
6160
2fb771c0af6b Emit more comments and advice.
Bruno Haible <bruno@clisp.org>
parents: 6159
diff changeset
6046 echo "Don't forget to"
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
6047 if test "$makefile_am" = Makefile.am; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6048 echo " - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6049 else
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6050 echo " - \"include $makefile_name\" from within \"$sourcebase/Makefile.am\","
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6051 fi
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
6052 if test -n "$pobase"; then
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
6053 echo " - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac,"
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
6054 fi
40185
a7fe9f54c3df gnulib-tool: Support --import with just a few tests, not --with-tests.
Bruno Haible <bruno@clisp.org>
parents: 40184
diff changeset
6055 if $gentests; then
7222
06eec4eaf416 * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
Paul Eggert <eggert@cs.ucla.edu>
parents: 7216
diff changeset
6056 if test "$makefile_am" = Makefile.am; then
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6057 echo " - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac,"
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6058 else
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6059 echo " - \"include $makefile_name\" from within \"$testsbase/Makefile.am\","
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6060 fi
6250
2c772fe1e1d0 Support --with-tests also with --import.
Bruno Haible <bruno@clisp.org>
parents: 6249
diff changeset
6061 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6062 edit=0
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6063 while test $edit != $makefile_am_edits; do
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6064 edit=`expr $edit + 1`
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6065 eval dir=\"\$makefile_am_edit${edit}_dir\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6066 eval var=\"\$makefile_am_edit${edit}_var\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6067 eval val=\"\$makefile_am_edit${edit}_val\"
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6068 if test -n "$var"; then
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6069 echo " - mention \"${val}\" in ${var} in ${dir}Makefile.am,"
7216
91df49e70c77 New option --makefile-name.
Bruno Haible <bruno@clisp.org>
parents: 7215
diff changeset
6070 fi
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6071 done
15801
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6072 if grep '^ *AC_PROG_CC_STDC' "$configure_ac" > /dev/null; then
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6073 position_early_after=AC_PROG_CC_STDC
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6074 else
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6075 if grep '^ *AC_PROG_CC_C99' "$configure_ac" > /dev/null; then
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6076 position_early_after=AC_PROG_CC_C99
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6077 else
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6078 position_early_after=AC_PROG_CC
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6079 fi
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6080 fi
3002f394d1fe gnulib-tool: Improve suggestion where to put gl_EARLY invocation.
Bruno Haible <bruno@clisp.org>
parents: 15790
diff changeset
6081 echo " - invoke ${macro_prefix}_EARLY in $configure_ac, right after $position_early_after,"
6176
1a1e2f878f04 New option --macro-prefix.
Bruno Haible <bruno@clisp.org>
parents: 6175
diff changeset
6082 echo " - invoke ${macro_prefix}_INIT in $configure_ac."
5345
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
6083 }
8394c9bf619f Move a lot of code into function func_import().
Bruno Haible <bruno@clisp.org>
parents: 5344
diff changeset
6084
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6085 # func_create_testdir testdir modules
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6086 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
6087 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
6088 # - modcache true or false, from --cache-modules/--no-cache-modules
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6089 # - auxdir directory relative to destdir where to place build aux files
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
6090 # - inctests true if tests should be included, false otherwise
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
6091 # - incobsolete true if obsolete modules among dependencies should be
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
6092 # included, blank otherwise
13263
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6093 # - excl_cxx_tests true if C++ interoperability tests should be excluded,
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6094 # blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6095 # - excl_longrunning_tests true if long-runnings tests should be excluded,
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6096 # blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6097 # - excl_privileged_tests true if tests that require root privileges should be
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6098 # excluded, blank otherwise
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6099 # - excl_unportable_tests true if tests that fail on some platforms should be
e7d114c00ff9 gnulib-tool: Add --without-*-tests options.
Bruno Haible <bruno@clisp.org>
parents: 13223
diff changeset
6100 # excluded, blank otherwise
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6101 # - single_configure true if a single configure file should be generated,
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6102 # false for a separate configure file for the tests
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
6103 # - avoidlist list of modules to avoid
14833
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
6104 # - cond_dependencies true if --conditional-dependencies was given, false if
76127af7039f Finish the conditional dependencies mechanism.
Bruno Haible <bruno@clisp.org>
parents: 14806
diff changeset
6105 # --no-conditional-dependencies was given, blank otherwise
12986
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
6106 # - libtool true if --libtool was given, false if --no-libtool was
bfc76977457d Clarify which options are available for --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12983
diff changeset
6107 # given, blank otherwise
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6108 # - copymode copy mode for files in general
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6109 # - lcopymode copy mode for files from local_gnulib_path
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6110 func_create_testdir ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6111 {
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6112 testdir="$1"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6113 modules="$2"
7484
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
6114 if test -z "$modules"; then
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
6115 # All modules together.
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
6116 # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
18471
5031955d34d3 gnulib-tool: Make --create-testdir on all modules work again.
Bruno Haible <bruno@clisp.org>
parents: 18231
diff changeset
6117 # Except non-recursive-gnulib-prefix-hack, which represents a nonstandard
5031955d34d3 gnulib-tool: Make --create-testdir on all modules work again.
Bruno Haible <bruno@clisp.org>
parents: 18231
diff changeset
6118 # way of using Automake.
39941
647230feebc0 Fix failure of 'gnulib-tool --create-testdir' with all modules.
Bruno Haible <bruno@clisp.org>
parents: 39897
diff changeset
6119 # Except timevar, which lacks the required file timevar.def.
7533
029a26ecb19a Don't include ftruncate and mountlist by default.
Bruno Haible <bruno@clisp.org>
parents: 7530
diff changeset
6120 # Except ftruncate, mountlist, which abort the configuration on mingw. FIXME.
12923
cb00143b4bf6 Exclude lib-ignore module.
Bruno Haible <bruno@clisp.org>
parents: 12917
diff changeset
6121 # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
7484
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
6122 modules=`func_all_modules`
39941
647230feebc0 Fix failure of 'gnulib-tool --create-testdir' with all modules.
Bruno Haible <bruno@clisp.org>
parents: 39897
diff changeset
6123 modules=`for m in $modules; do case $m in config-h | non-recursive-gnulib-prefix-hack | timevar | ftruncate | mountlist | lib-ignore) ;; *) echo $m;; esac; done`
7484
57fe575409ae --create-testdir without module names now means to use nearly all modules.
Bruno Haible <bruno@clisp.org>
parents: 7421
diff changeset
6124 fi
13419
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6125 specified_modules="$modules"
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6126
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6127 # Canonicalize the list of specified modules.
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6128 specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u`
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6129
18704
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6130 # Test modules which invoke AC_CONFIG_FILES cannot be used with
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6131 # --with-tests --single-configure. Avoid them.
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6132 if $inctests && $single_configure; then
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6133 avoidlist="$avoidlist havelib-tests"
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6134 fi
316d6897d46c gnulib-tool: Avoid conflict of havelib-tests with --single-configure.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
6135
13264
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
6136 # Unlike in func_import, here we want to include all kinds of tests for the
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
6137 # directly specified modules, but not for dependencies.
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
6138 inc_all_direct_tests=true
d66e74e6fe48 gnulib-tool: Don't include hairy tests of dependencies in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 13263
diff changeset
6139 inc_all_indirect_tests="$inc_all_tests"
13080
fad0b62b5bf5 gnulib-tool: Add support for special categories of tests.
Bruno Haible <bruno@clisp.org>
parents: 13070
diff changeset
6140
7660
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6141 # Check that the license of every module is consistent with the license of
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6142 # its dependencies.
7896
cd3ed2fae0bf Tests modules are under GPL now.
Bruno Haible <bruno@clisp.org>
parents: 7872
diff changeset
6143 saved_inctests="$inctests"
cd3ed2fae0bf Tests modules are under GPL now.
Bruno Haible <bruno@clisp.org>
parents: 7872
diff changeset
6144 # When computing transitive closures, don't consider $module to depend on
16358
a712776b11ce maint: spelling fixes
Paul Eggert <eggert@cs.ucla.edu>
parents: 16263
diff changeset
6145 # $module-tests. Need this because tests are implicitly GPL and may depend
7896
cd3ed2fae0bf Tests modules are under GPL now.
Bruno Haible <bruno@clisp.org>
parents: 7872
diff changeset
6146 # on GPL modules - therefore we don't want a warning in this case.
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
6147 inctests=false
13419
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6148 for requested_module in $specified_modules; do
7660
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6149 requested_license=`func_get_license "$requested_module"`
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6150 if test "$requested_license" != GPL; then
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6151 # Here we use func_modules_transitive_closure, not just
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6152 # func_get_dependencies, so that we also detect weird situations like
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6153 # an LGPL module which depends on a GPLed build tool module which depends
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6154 # on a GPL module.
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6155 modules="$requested_module"
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6156 func_modules_transitive_closure
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6157 for module in $modules; do
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6158 license=`func_get_license "$module"`
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6159 case "$license" in
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6160 'GPLed build tool') ;;
7660
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6161 'public domain' | 'unlimited' | 'unmodifiable license text') ;;
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6162 *)
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6163 case "$requested_license" in
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6164 GPLv3+ | GPL)
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6165 case "$license" in
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6166 LGPLv2+ | 'LGPLv3+ or GPLv2' | LGPLv3+ | LGPL | GPLv2+ | GPLv3+ | GPL) ;;
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
6167 *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6168 esac
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6169 ;;
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6170 GPLv2+)
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6171 case "$license" in
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6172 LGPLv2+ | 'LGPLv3+ or GPLv2' | GPLv2+) ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6173 *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6174 esac
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6175 ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6176 LGPLv3+ | LGPL)
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6177 case "$license" in
18501
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6178 LGPLv2+ | 'LGPLv3+ or GPLv2' | LGPLv3+ | LGPL) ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6179 *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6180 esac
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6181 ;;
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6182 'LGPLv3+ or GPLv2')
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6183 case "$license" in
9012a151a519 gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
Bruno Haible <bruno@clisp.org>
parents: 18474
diff changeset
6184 LGPLv2+ | 'LGPLv3+ or GPLv2') ;;
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
6185 *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6186 esac
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6187 ;;
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6188 LGPLv2+)
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6189 case "$license" in
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6190 LGPLv2+) ;;
12819
4b5bf4c79e0c gnulib-tool: Make warning diagnostics consistent.
Bruno Haible <bruno@clisp.org>
parents: 12775
diff changeset
6191 *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;;
9090
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6192 esac
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6193 ;;
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6194 esac
b1835d4a5e2a Handle copying terms "GPLv2+" and "LGPLv2+".
Bruno Haible <bruno@clisp.org>
parents: 9086
diff changeset
6195 ;;
7660
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6196 esac
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6197 done
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6198 fi
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6199 done
7896
cd3ed2fae0bf Tests modules are under GPL now.
Bruno Haible <bruno@clisp.org>
parents: 7872
diff changeset
6200 inctests="$saved_inctests"
7660
7aa6fbd6b3b7 Add license compatibility check in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7647
diff changeset
6201
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6202 # Subdirectory names.
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6203 sourcebase=gllib
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6204 m4base=glm4
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
6205 pobase=
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
6206 docbase=gldoc
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6207 testsbase=gltests
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
6208 macro_prefix=gl
9108
33eb494700d6 New options --po-base, --po-domain.
Bruno Haible <bruno@clisp.org>
parents: 9107
diff changeset
6209 po_domain=
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
6210 witness_c_macro=
9810
f805ab5f1771 New options --vc-files, --no-vc-files.
Bruno Haible <bruno@clisp.org>
parents: 9807
diff changeset
6211 vc_files=
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6212
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6213 # Determine final module list.
13419
a18c56544c84 gnulib-tool: Align code of func_import and func_create_testdir.
Bruno Haible <bruno@clisp.org>
parents: 13299
diff changeset
6214 modules="$specified_modules"
5347
0318c37925dc Move duplicated code into function func_modules_transitive_closure().
Bruno Haible <bruno@clisp.org>
parents: 5346
diff changeset
6215 func_modules_transitive_closure
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6216 if test $verbose -ge 0; then
13420
2291a2f3d56c gnulib-tool: Display specified modules and dependencies differently.
Bruno Haible <bruno@clisp.org>
parents: 13419
diff changeset
6217 func_show_module_list
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6218 fi
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6219 final_modules="$modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6220
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6221 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6222 # Determine main module list and tests-related module list separately.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6223 func_modules_transitive_closure_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6224 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6225
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6226 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6227 # Determine whether a $testsbase/libtests.a is needed.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6228 func_determine_use_libtests
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6229 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6230
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
6231 # Add the dummy module if needed.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6232 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6233 func_modules_add_dummy_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6234 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6235 func_modules_add_dummy
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6236 fi
6550
3bb57675fc1b Avoid error due to empty archive on MacOS X.
Bruno Haible <bruno@clisp.org>
parents: 6549
diff changeset
6237
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6238 # Note:
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6239 # If $single_configure, we use the module lists $main_modules and
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6240 # $testsrelated_modules; $modules is merely a temporary variable.
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6241 # Whereas if ! $configure, the module list is $modules.
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6242
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
6243 # Show banner notice of every module.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6244 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6245 modules="$main_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6246 func_modules_notice
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6247 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6248 func_modules_notice
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6249 fi
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
6250
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6251 # Determine final file list.
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6252 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6253 func_modules_to_filelist_separately
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6254 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6255 func_modules_to_filelist
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6256 if test $verbose -ge 0; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6257 echo "File list:"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6258 echo "$files" | sed -e 's/^/ /'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6259 fi
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6260 fi
13752
68e7104b03e2 gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
Bruno Haible <bruno@clisp.org>
parents: 13750
diff changeset
6261 # Add files for which the copy in gnulib is newer than the one that
68e7104b03e2 gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
Bruno Haible <bruno@clisp.org>
parents: 13750
diff changeset
6262 # "automake --add-missing --copy" would provide.
68e7104b03e2 gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
Bruno Haible <bruno@clisp.org>
parents: 13750
diff changeset
6263 files="$files build-aux/config.guess"
68e7104b03e2 gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
Bruno Haible <bruno@clisp.org>
parents: 13750
diff changeset
6264 files="$files build-aux/config.sub"
68e7104b03e2 gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
Bruno Haible <bruno@clisp.org>
parents: 13750
diff changeset
6265 files=`for f in $files; do echo $f; done | LC_ALL=C sort -u`
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6266
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6267 rewritten='%REWRITTEN%'
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
6268 sed_rewrite_files="\
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6269 s,^build-aux/,$rewritten$auxdir/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6270 s,^doc/,$rewritten$docbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6271 s,^lib/,$rewritten$sourcebase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6272 s,^m4/,$rewritten$m4base/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6273 s,^tests/,$rewritten$testsbase/,
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6274 s,^tests=lib/,$rewritten$testsbase/,
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6275 s,^top/,$rewritten,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
6276 s,^$rewritten,,"
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6277
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6278 # Create directories.
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6279 for f in $files; do echo $f; done \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6280 | sed -e "$sed_rewrite_files" \
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6281 | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6282 | LC_ALL=C sort -u \
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6283 > "$tmp"/dirs
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6284 { # Rearrange file descriptors. Needed because "while ... done < ..."
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6285 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6286 exec 5<&0 < "$tmp"/dirs
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6287 while read d; do
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6288 mkdir -p "$testdir/$d"
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6289 done
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6290 exec 0<&5 5<&-
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6291 }
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6292
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6293 # Copy files or make symbolic links or hard links.
7605
ae17dea0254d Create also all needed subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7600
diff changeset
6294 delimiter=' '
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
6295 for f in $files; do echo $f; done \
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6296 | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \
7321
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
6297 | LC_ALL=C sort \
3bf1b669d1e1 Rewrite all file names at once.
Bruno Haible <bruno@clisp.org>
parents: 7320
diff changeset
6298 > "$tmp"/files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6299 { # Rearrange file descriptors. Needed because "while ... done < ..."
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6300 # constructs are executed in a subshell e.g. by Solaris 10 /bin/sh.
7368
a7abebdb07f4 * gnulib-tool (func_import, func_create_testdir): Fix typos in
Eric Blake <ebb9@byu.net>
parents: 7350
diff changeset
6301 exec 5<&0 < "$tmp"/files
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6302 while read g f; do
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6303 case "$f" in
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6304 tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;;
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6305 esac
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6306 func_lookup_file "$f"
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6307 if test -n "$lookedup_tmp"; then
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
6308 cp -p "$lookedup_file" "$testdir/$g"
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
6309 else
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6310 func_should_link
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6311 if test "$copyaction" = symlink; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6312 func_symlink "$lookedup_file" "$testdir/$g"
7643
d67f9dc6019d New option --local-symlink.
Bruno Haible <bruno@clisp.org>
parents: 7642
diff changeset
6313 else
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6314 if test "$copyaction" = hardlink; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6315 func_hardlink "$lookedup_file" "$testdir/$g"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6316 else
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6317 cp -p "$lookedup_file" "$testdir/$g"
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
6318 fi
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6319 fi
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
6320 fi
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6321 done
7373
330a972d58f0 Tweak last patch, for symmetry.
Bruno Haible <bruno@clisp.org>
parents: 7368
diff changeset
6322 exec 0<&5 5<&-
7326
1ca1035630dd Avoid to execute while loops in a subshell.
Bruno Haible <bruno@clisp.org>
parents: 7323
diff changeset
6323 }
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6324
14840
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
6325 # Determine include_guard_prefix.
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
6326 func_compute_include_guard_prefix
5f709022a256 Allow multiple gnulib generated include files to be combined.
Bruno Haible <bruno@clisp.org>
parents: 14836
diff changeset
6327
7981
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
6328 # Create Makefile.ams that are for testing.
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
6329 for_test=true
41421349e26b In testing directories, link the test programs already during "make", not
Bruno Haible <bruno@clisp.org>
parents: 7911
diff changeset
6330
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6331 # No special edits are needed.
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6332 makefile_am_edits=0
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6333
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6334 # Create $sourcebase/Makefile.am.
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6335 mkdir -p "$testdir/$sourcebase"
10476
429cc7a6da60 Don't ask the user to perform edits in the generated Makefile.ams.
Bruno Haible <bruno@clisp.org>
parents: 10475
diff changeset
6336 destfile="$sourcebase/Makefile.am"
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6337 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6338 modules="$main_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6339 fi
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6340 func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6341 any_uses_subdirs="$uses_subdirs"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6342
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6343 # Create $m4base/Makefile.am.
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6344 mkdir -p "$testdir/$m4base"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6345 (echo "## Process this file with automake to produce Makefile.in."
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6346 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6347 echo "EXTRA_DIST ="
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6348 for f in $files; do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6349 case "$f" in
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6350 m4/* )
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6351 echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6352 esac
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6353 done
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6354 ) > "$testdir/$m4base/Makefile.am"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6355
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6356 subdirs="$sourcebase $m4base"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6357 subdirs_with_configure_ac=""
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6358
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6359 if false && test -f "$testdir"/$m4base/gettext.m4; then
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6360 # Avoid stupid error message from automake:
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6361 # "AM_GNU_GETTEXT used but `po' not in SUBDIRS"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6362 mkdir -p "$testdir/po"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6363 (echo "## Process this file with automake to produce Makefile.in."
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6364 ) > "$testdir/po/Makefile.am"
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
6365 func_append subdirs " po"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6366 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6367
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
6368 if $inctests; then
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6369 test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase"
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6370 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6371 # Create $testsbase/Makefile.am.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6372 destfile="$testsbase/Makefile.am"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6373 modules="$testsrelated_modules"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6374 func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$testdir/$testsbase/Makefile.am"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6375 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6376 # Viewed from the $testsbase subdirectory, $auxdir is different.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6377 saved_auxdir="$auxdir"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6378 auxdir=`echo "$testsbase/" | sed -e 's%[^/][^/]*//*%../%g'`"$auxdir"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6379 # Create $testsbase/Makefile.am.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6380 use_libtests=false
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6381 destfile="$testsbase/Makefile.am"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6382 func_emit_tests_Makefile_am "" > "$testdir/$testsbase/Makefile.am"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6383 any_uses_subdirs="$any_uses_subdirs$uses_subdirs"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6384 # Create $testsbase/configure.ac.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6385 (echo "# Process this file with autoconf to produce a configure script."
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6386 echo "AC_INIT([dummy], [0])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6387 echo "AC_CONFIG_AUX_DIR([$auxdir])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6388 echo "AM_INIT_AUTOMAKE"
12109
b56c1bd3de46 Conditionally emit AM_PROG_CC_C_O invocation to tests/configure.ac.
Bruno Haible <bruno@clisp.org>
parents: 12055
diff changeset
6389 echo
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6390 echo "AC_CONFIG_HEADERS([config.h])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6391 echo
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6392 echo "AC_PROG_CC"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6393 echo "AC_PROG_INSTALL"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6394 echo "AC_PROG_MAKE_SET"
18124
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6395
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6396 func_emit_pre_early_macros false '' "$modules"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6397
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6398 if test -n "$uses_subdirs"; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6399 echo "AM_PROG_CC_C_O"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6400 echo
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6401 fi
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6402 for module in $modules; do
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6403 func_verify_module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6404 if test -n "$module"; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6405 case $module in
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6406 gnumakefile | maintainer-makefile)
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6407 # These modules are meant to be used only in the top-level directory.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6408 ;;
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6409 *)
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6410 func_get_autoconf_early_snippet "$module"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6411 ;;
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6412 esac
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6413 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6414 done \
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6415 | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6416 if test "$libtool" = true; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6417 echo "LT_INIT([win32-dll])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6418 echo "LT_LANG([C++])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6419 echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6420 echo "gl_cond_libtool=true"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6421 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6422 echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6423 echo "gl_cond_libtool=false"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6424 echo "gl_libdeps="
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6425 echo "gl_ltlibdeps="
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6426 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6427 # Wrap the set of autoconf snippets into an autoconf macro that is then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6428 # invoked. This is needed because autoconf does not support AC_REQUIRE
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6429 # at the top level:
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6430 # error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6431 # but we want the AC_REQUIRE to have its normal meaning (provide one
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6432 # expansion of the required macro before the current point, and only one
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6433 # expansion total).
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6434 echo "AC_DEFUN([gl_INIT], ["
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6435 sed_replace_build_aux='
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6436 :a
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6437 /AC_CONFIG_FILES(.*:build-aux\/.*)/{
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6438 s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6439 ba
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6440 }'
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6441 echo "gl_m4_base='../$m4base'"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6442 func_emit_initmacro_start $macro_prefix
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6443 # We don't have explicit ordering constraints between the various
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6444 # autoconf snippets. It's cleanest to put those of the library before
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6445 # those of the tests.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6446 echo "gl_source_base='../$sourcebase'"
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6447 func_emit_autoconf_snippets "$modules" "$modules" func_verify_nontests_module false false false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6448 echo "gl_source_base='.'"
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6449 func_emit_autoconf_snippets "$modules" "$modules" func_verify_tests_module false false false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6450 func_emit_initmacro_end $macro_prefix
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6451 # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6452 # created using libtool, because libtool already handles the dependencies.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6453 if test "$libtool" != true; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6454 libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6455 echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6456 echo " AC_SUBST([${libname_upper}_LIBDEPS])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6457 echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6458 echo " AC_SUBST([${libname_upper}_LTLIBDEPS])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6459 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6460 echo "])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6461 func_emit_initmacro_done $macro_prefix $sourcebase # FIXME use $sourcebase or $testsbase?
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6462 echo
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6463 echo "gl_INIT"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6464 echo
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6465 # Usually $testsbase/config.h will be a superset of config.h. Verify this
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6466 # by "merging" config.h into $testsbase/config.h; look out for gcc warnings.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6467 echo "AH_TOP([#include \"../config.h\"])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6468 echo
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6469 echo "AC_CONFIG_FILES([Makefile])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6470 echo "AC_OUTPUT"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6471 ) > "$testdir/$testsbase/configure.ac"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6472 auxdir="$saved_auxdir"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6473 subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6474 fi
14841
9341bfde6165 gnulib-tool: Fix bug in yesterday's commit.
Bruno Haible <bruno@clisp.org>
parents: 14840
diff changeset
6475 func_append subdirs " $testsbase"
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6476 fi
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6477
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6478 # Create Makefile.am.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6479 (echo "## Process this file with automake to produce Makefile.in."
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6480 echo
39943
b1ba0c77fa16 Assume Automake >= 1.11.
Bruno Haible <bruno@clisp.org>
parents: 39941
diff changeset
6481 echo "AUTOMAKE_OPTIONS = 1.11 foreign"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6482 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6483 echo "SUBDIRS = $subdirs"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6484 echo
7195
e4a459055e78 Test other subdirectory names than 'lib' and 'm4'.
Bruno Haible <bruno@clisp.org>
parents: 7187
diff changeset
6485 echo "ACLOCAL_AMFLAGS = -I $m4base"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6486 ) > "$testdir/Makefile.am"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6487
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6488 # Create configure.ac.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6489 (echo "# Process this file with autoconf to produce a configure script."
6106
66bd85c8a9cd Proper autoconf macro argument quoting.
Bruno Haible <bruno@clisp.org>
parents: 6039
diff changeset
6490 echo "AC_INIT([dummy], [0])"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6491 if test "$auxdir" != "."; then
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6492 echo "AC_CONFIG_AUX_DIR([$auxdir])"
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6493 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6494 echo "AM_INIT_AUTOMAKE"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6495 echo
11931
d42b3b6f11d3 Replace uses of obsolete Autoconf macros with modern counterparts.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11919
diff changeset
6496 echo "AC_CONFIG_HEADERS([config.h])"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6497 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6498 echo "AC_PROG_CC"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6499 echo "AC_PROG_INSTALL"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6500 echo "AC_PROG_MAKE_SET"
7106
b9fff044578d Apply last patch also to --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7105
diff changeset
6501 echo
7777
b33956fbd953 2007-01-03 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 7771
diff changeset
6502 echo "# For autobuild."
b33956fbd953 2007-01-03 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 7771
diff changeset
6503 echo "AC_CANONICAL_BUILD"
b33956fbd953 2007-01-03 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 7771
diff changeset
6504 echo "AC_CANONICAL_HOST"
b33956fbd953 2007-01-03 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 7771
diff changeset
6505 echo
7106
b9fff044578d Apply last patch also to --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 7105
diff changeset
6506 echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace"
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
6507 echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
6508 echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable"
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
6509 echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable"
18124
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6510
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6511 func_emit_pre_early_macros false '' "$final_modules"
ef6cdfd2e603 gnulib-tool: fix tests of 'extensions' module
Pavel Raiskup <praiskup@redhat.com>
parents: 18114
diff changeset
6512
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6513 if test -n "$any_uses_subdirs"; then
7641
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
6514 echo "AM_PROG_CC_C_O"
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
6515 echo
d6fbdb213b01 Finish support for source files in subdirectories.
Bruno Haible <bruno@clisp.org>
parents: 7640
diff changeset
6516 fi
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6517 for module in $final_modules; do
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6518 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6519 func_verify_module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6520 else
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6521 func_verify_nontests_module
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6522 fi
8079
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6523 if test -n "$module"; then
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6524 func_get_autoconf_early_snippet "$module"
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6525 fi
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6526 done \
0951beec5b89 New module description section 'configure.ac-early'.
Bruno Haible <bruno@clisp.org>
parents: 8055
diff changeset
6527 | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)\])/\1/'
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
6528 if test "$libtool" = true; then
12978
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
6529 echo "LT_INIT([win32-dll])"
12982
4bf217bee1d8 Fix problem with automake's definition of CXXLINK.
Bruno Haible <bruno@clisp.org>
parents: 12979
diff changeset
6530 echo "LT_LANG([C++])"
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
6531 echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])"
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6532 echo "gl_cond_libtool=true"
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
6533 else
6418
e0a8b9b05999 Proper autoconf macro argument quoting.
Bruno Haible <bruno@clisp.org>
parents: 6414
diff changeset
6534 echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])"
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6535 echo "gl_cond_libtool=false"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6536 echo "gl_libdeps="
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6537 echo "gl_ltlibdeps="
6414
46d47c8fe734 * gnulib-tool: Define automake conditional GL_COND_LIBTOOL if
Simon Josefsson <simon@josefsson.org>
parents: 6389
diff changeset
6538 fi
7090
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6539 # Wrap the set of autoconf snippets into an autoconf macro that is then
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6540 # invoked. This is needed because autoconf does not support AC_REQUIRE
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6541 # at the top level:
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6542 # error: AC_REQUIRE(gt_CSHARPCOMP): cannot be used outside of an AC_DEFUN'd macro
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6543 # but we want the AC_REQUIRE to have its normal meaning (provide one
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6544 # expansion of the required macro before the current point, and only one
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6545 # expansion total).
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6546 echo "AC_DEFUN([gl_INIT], ["
6556
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6547 if test "$auxdir" != "build-aux"; then
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6548 sed_replace_build_aux='
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6549 :a
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6550 /AC_CONFIG_FILES(.*:build-aux\/.*)/{
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6551 s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)|
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6552 ba
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6553 }'
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6554 else
10400
817f1418bbde Make gnulib-tool work with native 'sed' on AIX.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 10380
diff changeset
6555 sed_replace_build_aux="$sed_noop"
6556
85c3c00fcec1 Fix sed_replace_auxdir.
Bruno Haible <bruno@clisp.org>
parents: 6551
diff changeset
6556 fi
13105
6d950d2ec11e gnulib-tool: Provide the value of --m4-base to modules.
Bruno Haible <bruno@clisp.org>
parents: 13090
diff changeset
6557 echo "gl_m4_base='$m4base'"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6558 func_emit_initmacro_start $macro_prefix
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6559 echo "gl_source_base='$sourcebase'"
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6560 if $single_configure; then
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6561 func_emit_autoconf_snippets "$main_modules" "$main_modules" func_verify_module true false false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6562 else
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6563 func_emit_autoconf_snippets "$modules" "$modules" func_verify_nontests_module true false false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6564 fi
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6565 func_emit_initmacro_end $macro_prefix
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6566 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6567 echo " gltests_libdeps="
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6568 echo " gltests_ltlibdeps="
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6569 func_emit_initmacro_start ${macro_prefix}tests
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6570 echo " gl_source_base='$testsbase'"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6571 # Define a tests witness macro.
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6572 echo " ${macro_prefix}tests_WITNESS=IN_GNULIB_TESTS"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6573 echo " AC_SUBST([${macro_prefix}tests_WITNESS])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6574 echo " gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6575 echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])"
19478
fef1e0e56d65 gnulib-tool: Make --conditional-dependencies work better.
Bruno Haible <bruno@clisp.org>
parents: 19439
diff changeset
6576 func_emit_autoconf_snippets "$testsrelated_modules" "$main_modules $testsrelated_modules" func_verify_module true false false
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6577 echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6578 func_emit_initmacro_end ${macro_prefix}tests
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6579 fi
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6580 # _LIBDEPS and _LTLIBDEPS variables are not needed if this library is
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6581 # created using libtool, because libtool already handles the dependencies.
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6582 if test "$libtool" != true; then
13768
f19c8837df90 more ports to Solaris tr, which needs [] around ranges
Paul Eggert <eggert@cs.ucla.edu>
parents: 13763
diff changeset
6583 libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'`
7286
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6584 echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\""
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6585 echo " AC_SUBST([${libname_upper}_LIBDEPS])"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6586 echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\""
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6587 echo " AC_SUBST([${libname_upper}_LTLIBDEPS])"
727bb5526bad For libraries not built with libtool:
Bruno Haible <bruno@clisp.org>
parents: 7270
diff changeset
6588 fi
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6589 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6590 if $use_libtests; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6591 echo " LIBTESTS_LIBDEPS=\"\$gltests_libdeps\""
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6592 echo " AC_SUBST([LIBTESTS_LIBDEPS])"
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6593 fi
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6594 fi
7090
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6595 echo "])"
9516
020ae1c236a0 Collect sources for tests-related modules in tests/, compile them to libtests.a.
Bruno Haible <bruno@clisp.org>
parents: 9515
diff changeset
6596 func_emit_initmacro_done $macro_prefix $sourcebase
14836
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6597 if $single_configure; then
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6598 func_emit_initmacro_done ${macro_prefix}tests $testsbase
ea0ee6fc3c8e gnulib-tool: Alternative structure of testdirs, similar to --import.
Bruno Haible <bruno@clisp.org>
parents: 14833
diff changeset
6599 fi
7486
46b72819ef52 Add support for multiple gnulib-tool invocations in the scope of a single
Bruno Haible <bruno@clisp.org>
parents: 7485
diff changeset
6600 echo
7090
dfc92f94c781 Allow AC_REQUIREs in the configure.ac snippet.
Bruno Haible <bruno@clisp.org>
parents: 7089
diff changeset
6601 echo "gl_INIT"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6602 echo
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6603 if test -n "$subdirs_with_configure_ac"; then
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6604 echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])"
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6605 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6606 makefiles="Makefile"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6607 for d in $subdirs; do
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6608 # For subdirs that have a configure.ac by their own, it's the subdir's
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6609 # configure.ac which creates the subdir's Makefile.am, not this one.
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6610 case " $subdirs_with_configure_ac " in
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6611 *" $d "*) ;;
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
6612 *) func_append makefiles " $d/Makefile" ;;
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
6613 esac
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6614 done
11931
d42b3b6f11d3 Replace uses of obsolete Autoconf macros with modern counterparts.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11919
diff changeset
6615 echo "AC_CONFIG_FILES([$makefiles])"
d42b3b6f11d3 Replace uses of obsolete Autoconf macros with modern counterparts.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11919
diff changeset
6616 echo "AC_OUTPUT"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6617 ) > "$testdir/configure.ac"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6618
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6619 # Create autogenerated files.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6620 (cd "$testdir"
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6621 # Do not use "${AUTORECONF} --force --install", because it may invoke
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6622 # autopoint, which brings in older versions of some of our .m4 files.
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6623 if test -f $m4base/gettext.m4; then
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6624 func_execute_command ${AUTOPOINT} --force || func_exit 1
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6625 for f in $m4base/*.m4~; do
10969
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6626 if test -f $f; then
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6627 mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6628 fi
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6629 done
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6630 fi
12978
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
6631 if test "$libtool" = true; then
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
6632 func_execute_command ${LIBTOOLIZE} --copy || func_exit 1
b7726f620298 gnulib-tool: Add support for --libtool in --create-testdir.
Bruno Haible <bruno@clisp.org>
parents: 12923
diff changeset
6633 fi
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6634 func_execute_command ${ACLOCAL} -I $m4base || func_exit 1
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6635 if ! test -d build-aux; then
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6636 func_execute_command mkdir build-aux || func_exit 1
7485
0194db3ad154 Handle mismatch between latest gettext release and current gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7484
diff changeset
6637 fi
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6638 func_execute_command ${AUTOCONF} || func_exit 1
19261
91adfa2ad3ed gnulib-tool: Avoid unnecessary config.h.in remaking in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 19192
diff changeset
6639 # Explicit 'touch config.h.in': see <https://savannah.gnu.org/support/index.php?109406>.
19271
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6640 func_execute_command ${AUTOHEADER} &&
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6641 func_execute_command touch config.h.in ||
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6642 func_exit 1
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6643 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
18959
a2064df3feed gnulib-tool: Clean up after autotools.
Bruno Haible <bruno@clisp.org>
parents: 18952
diff changeset
6644 rm -rf autom4te.cache
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6645 ) || func_exit 1
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
6646 if $inctests && ! $single_configure; then
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6647 # Create autogenerated files.
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6648 (cd "$testdir/$testsbase" || func_exit 1
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6649 # Do not use "${AUTORECONF} --force --install", because it may invoke
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6650 # autopoint, which brings in older versions of some of our .m4 files.
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6651 if test -f ../$m4base/gettext.m4; then
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6652 func_execute_command ${AUTOPOINT} --force || func_exit 1
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6653 for f in ../$m4base/*.m4~; do
10969
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6654 if test -f $f; then
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6655 mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1
4c304a656b87 Fix a gnulib-tool failure.
Bruno Haible <bruno@clisp.org>
parents: 10854
diff changeset
6656 fi
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6657 done
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6658 fi
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6659 func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6660 if ! test -d ../build-aux; then
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6661 func_execute_command mkdir ../build-aux
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6662 fi
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6663 func_execute_command ${AUTOCONF} || func_exit 1
19261
91adfa2ad3ed gnulib-tool: Avoid unnecessary config.h.in remaking in testdirs.
Bruno Haible <bruno@clisp.org>
parents: 19192
diff changeset
6664 # Explicit 'touch config.h.in': see <https://savannah.gnu.org/support/index.php?109406>.
19271
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6665 func_execute_command ${AUTOHEADER} &&
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6666 func_execute_command touch config.h.in ||
6d9b9b82d0af Port recent gnulib-tool change to Dash
Paul Eggert <eggert@cs.ucla.edu>
parents: 19261
diff changeset
6667 func_exit 1
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6668 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
18959
a2064df3feed gnulib-tool: Clean up after autotools.
Bruno Haible <bruno@clisp.org>
parents: 18952
diff changeset
6669 rm -rf autom4te.cache
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6670 ) || func_exit 1
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6671 fi
7866
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6672 # Need to run configure and make once, to create built files that are to be
13769
896628c568fa parse-datetime: better name than get_date
Eric Blake <eblake@redhat.com>
parents: 13768
diff changeset
6673 # distributed (such as parse-datetime.c).
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6674 sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g'
8410
bf7fdc3211a4 Avoiding the "./configure && make && make distclean" did not work most of the
Bruno Haible <bruno@clisp.org>
parents: 8356
diff changeset
6675 # Extract the value of "CLEANFILES += ..." and "MOSTLYCLEANFILES += ...".
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
6676 cleaned_files=`combine_lines < "$testdir/$sourcebase/Makefile.am" \
8503
7c0e7f4f1ac1 * gnulib-tool: Rearrange space-tab sequences, since some editors
Eric Blake <ebb9@byu.net>
parents: 8451
diff changeset
6677 | sed -n -e 's,^CLEANFILES[ ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[ ]*+=\([^#]*\).*$,\1,p'`
8410
bf7fdc3211a4 Avoiding the "./configure && make && make distclean" did not work most of the
Bruno Haible <bruno@clisp.org>
parents: 8356
diff changeset
6678 cleaned_files=`for file in $cleaned_files; do echo " $file "; done`
7866
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6679 # Extract the value of "BUILT_SOURCES += ...". Remove variable references
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6680 # such $(FOO_H) because they don't refer to distributed files.
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
6681 built_sources=`combine_lines < "$testdir/$sourcebase/Makefile.am" \
8503
7c0e7f4f1ac1 * gnulib-tool: Rearrange space-tab sequences, since some editors
Eric Blake <ebb9@byu.net>
parents: 8451
diff changeset
6682 | sed -n -e 's,^BUILT_SOURCES[ ]*+=\([^#]*\).*$,\1,p' \
7866
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6683 | sed -e "$sed_remove_make_variables"`
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6684 distributed_built_sources=`for file in $built_sources; do
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6685 case "$cleaned_files" in
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6686 *" "$file" "*) ;;
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6687 *) echo $file ;;
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6688 esac;
58d9bcb3d6c4 Don't unnecessarily run configure and make.
Bruno Haible <bruno@clisp.org>
parents: 7858
diff changeset
6689 done`
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6690 tests_distributed_built_sources=
16932
48e8f0679448 gnulib-tool: Refactor inctests variable.
Bruno Haible <bruno@clisp.org>
parents: 16931
diff changeset
6691 if $inctests; then
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6692 # Likewise for built files in the $testsbase directory.
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
6693 tests_cleaned_files=`combine_lines < "$testdir/$testsbase/Makefile.am" \
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6694 | sed -n -e 's,^CLEANFILES[ ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[ ]*+=\([^#]*\).*$,\1,p'`
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6695 tests_cleaned_files=`for file in $tests_cleaned_files; do echo " $file "; done`
18000
d0c8068a7c6f gnulib-tool: concatenate lib_SOURCES to a single line
Pádraig Brady <P@draigBrady.com>
parents: 17964
diff changeset
6696 tests_built_sources=`combine_lines < "$testdir/$testsbase/Makefile.am" \
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6697 | sed -n -e 's,^BUILT_SOURCES[ ]*+=\([^#]*\).*$,\1,p' \
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6698 | sed -e "$sed_remove_make_variables"`
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6699 tests_distributed_built_sources=`for file in $tests_built_sources; do
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6700 case "$tests_cleaned_files" in
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6701 *" "$file" "*) ;;
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6702 *) echo $file ;;
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6703 esac;
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6704 done`
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6705 fi
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6706 if test -n "$distributed_built_sources" || test -n "$tests_distributed_built_sources"; then
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6707 (cd "$testdir"
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6708 ./configure || func_exit 1
40128
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6709 if test -n "$distributed_built_sources"; then
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6710 cd "$sourcebase"
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6711 echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6712 $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6713 built_sources \
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6714 || func_exit 1
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6715 cd ..
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6716 fi
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6717 if test -n "$tests_distributed_built_sources"; then
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6718 cd "$testsbase"
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6719 echo 'built_sources: $(BUILT_SOURCES)' >> Makefile
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6720 $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6721 built_sources \
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6722 || func_exit 1
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6723 cd ..
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6724 fi
13107
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6725 $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6726 distclean \
ed335ebb55f0 gnulib-tool: Create distributed built sources also for the tests.
Bruno Haible <bruno@clisp.org>
parents: 13106
diff changeset
6727 || func_exit 1
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6728 ) || func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6729 fi
40128
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6730 (cd "$testdir"
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6731 if test -f build-aux/test-driver; then
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6732 patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver.diff || func_exit 1
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6733 fi
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6734 ) || func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6735 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6736
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6737 # func_create_megatestdir megatestdir allmodules
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6738 # Input:
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
6739 # - local_gnulib_path from --local-dir
12857
dfbc7f3aa6d0 gnulib-tool: Fix up caching patches.
Bruno Haible <bruno@clisp.org>
parents: 12856
diff changeset
6740 # - modcache true or false, from --cache-modules/--no-cache-modules
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6741 # - auxdir directory relative to destdir where to place build aux files
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6742 func_create_megatestdir ()
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6743 {
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6744 megatestdir="$1"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6745 allmodules="$2"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6746 if test -z "$allmodules"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6747 allmodules=`func_all_modules`
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6748 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6749
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6750 megasubdirs=
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6751 # First, all modules one by one.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6752 for onemodule in $allmodules; do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6753 func_create_testdir "$megatestdir/$onemodule" $onemodule
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
6754 func_append megasubdirs "$onemodule "
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6755 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6756 # Then, all modules all together.
7350
6c5c8c8b93a3 Don't include the config-h module in megatestdir.
Bruno Haible <bruno@clisp.org>
parents: 7348
diff changeset
6757 # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
11737
351c1d4b1ca6 Undo last gnulib-tool commit: maintainer-makefile is fixed.
Bruno Haible <bruno@clisp.org>
parents: 11734
diff changeset
6758 allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done`
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6759 func_create_testdir "$megatestdir/ALL" "$allmodules"
7323
7ca0e325d5db Avoid quadratic complexity due to string concatenations.
Bruno Haible <bruno@clisp.org>
parents: 7322
diff changeset
6760 func_append megasubdirs "ALL"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6761
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6762 # Create autobuild.
17378
1d9362a18c34 Assume gnulib is checked out from Git, not CVS
Stefano Lattarini <stefano.lattarini@gmail.com>
parents: 17269
diff changeset
6763 cvsdate=`vc_witness="$gnulib_dir/.git/refs/heads/master"; \
9377
ca27c3808c95 Update after move from cvs to git.
Bruno Haible <bruno@clisp.org>
parents: 9355
diff changeset
6764 sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6765 | sed -e 's,January,01,' -e 's,Jan,01,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6766 -e 's,February,02,' -e 's,Feb,02,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6767 -e 's,March,03,' -e 's,Mar,03,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6768 -e 's,April,04,' -e 's,Apr,04,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6769 -e 's,May,05,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6770 -e 's,June,06,' -e 's,Jun,06,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6771 -e 's,July,07,' -e 's,Jul,07,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6772 -e 's,August,08,' -e 's,Aug,08,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6773 -e 's,September,09,' -e 's,Sep,09,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6774 -e 's,October,10,' -e 's,Oct,10,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6775 -e 's,November,11,' -e 's,Nov,11,' \
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6776 -e 's,December,12,' -e 's,Dec,12,' \
9022
44509698ba9d * gnulib-tool: Fix indentation.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9010
diff changeset
6777 -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \
9005
e04f36b292ad * gnulib-tool (IFS): Initialize early, so we don't set it to
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 9003
diff changeset
6778 -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'`
8418
6840759b4ce2 Start the autobuild script with /bin/sh.
Bruno Haible <bruno@clisp.org>
parents: 8416
diff changeset
6779 (echo '#!/bin/sh'
6840759b4ce2 Start the autobuild script with /bin/sh.
Bruno Haible <bruno@clisp.org>
parents: 8416
diff changeset
6780 echo "CVSDATE=$cvsdate"
11403
ec75c090b646 gnulib-tool: use $MAKE not make in generated files
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11261
diff changeset
6781 echo ": \${MAKE=make}"
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6782 echo "test -d logs || mkdir logs"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6783 echo "for module in $megasubdirs; do"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6784 echo " echo \"Working on module \$module...\""
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6785 echo " safemodule=\`echo \$module | sed -e 's|/|-|g'\`"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6786 echo " (echo \"To: gnulib@autobuild.josefsson.org\""
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6787 echo " echo"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6788 echo " set -x"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6789 echo " : autobuild project... \$module"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6790 echo " : autobuild revision... cvs-\$CVSDATE-000000"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6791 echo " : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`"
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6792 echo " : autobuild hostname... \`hostname\`"
11403
ec75c090b646 gnulib-tool: use $MAKE not make in generated files
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11261
diff changeset
6793 echo " cd \$module && ./configure \$CONFIGURE_OPTIONS && \$MAKE && \$MAKE check && \$MAKE distclean"
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6794 echo " echo rc=\$?"
8419
d5e85ac6458c Avoid using sed -e "", not supported by AIX sed.
Bruno Haible <bruno@clisp.org>
parents: 8418
diff changeset
6795 echo " ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule"
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6796 echo "done"
8672
c00e30e9aba4 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8668
diff changeset
6797 ) > "$megatestdir/do-autobuild"
c00e30e9aba4 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8668
diff changeset
6798 chmod a+x "$megatestdir/do-autobuild"
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6799
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6800 # Create Makefile.am.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6801 (echo "## Process this file with automake to produce Makefile.in."
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6802 echo
39943
b1ba0c77fa16 Assume Automake >= 1.11.
Bruno Haible <bruno@clisp.org>
parents: 39941
diff changeset
6803 echo "AUTOMAKE_OPTIONS = 1.11 foreign"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6804 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6805 echo "SUBDIRS = $megasubdirs"
8416
0bf5cb89a6b9 Create also an autobuild script.
Bruno Haible <bruno@clisp.org>
parents: 8410
diff changeset
6806 echo
8672
c00e30e9aba4 2007-04-12 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 8668
diff changeset
6807 echo "EXTRA_DIST = do-autobuild"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6808 ) > "$megatestdir/Makefile.am"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6809
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6810 # Create configure.ac.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6811 (echo "# Process this file with autoconf to produce a configure script."
6106
66bd85c8a9cd Proper autoconf macro argument quoting.
Bruno Haible <bruno@clisp.org>
parents: 6039
diff changeset
6812 echo "AC_INIT([dummy], [0])"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6813 if test "$auxdir" != "."; then
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6814 echo "AC_CONFIG_AUX_DIR([$auxdir])"
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
6815 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6816 echo "AM_INIT_AUTOMAKE"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6817 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6818 echo "AC_PROG_MAKE_SET"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6819 echo
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6820 echo "AC_CONFIG_SUBDIRS([$megasubdirs])"
11931
d42b3b6f11d3 Replace uses of obsolete Autoconf macros with modern counterparts.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11919
diff changeset
6821 echo "AC_CONFIG_FILES([Makefile])"
d42b3b6f11d3 Replace uses of obsolete Autoconf macros with modern counterparts.
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11919
diff changeset
6822 echo "AC_OUTPUT"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6823 ) > "$megatestdir/configure.ac"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6824
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6825 # Create autogenerated files.
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6826 (cd "$megatestdir"
6547
1a65fb7ddbbb Don't waste time in a recursive autoreconf.
Bruno Haible <bruno@clisp.org>
parents: 6546
diff changeset
6827 # Do not use "${AUTORECONF} --install", because autoreconf operates
1a65fb7ddbbb Don't waste time in a recursive autoreconf.
Bruno Haible <bruno@clisp.org>
parents: 6546
diff changeset
6828 # recursively, but the subdirectories are already finished, therefore
1a65fb7ddbbb Don't waste time in a recursive autoreconf.
Bruno Haible <bruno@clisp.org>
parents: 6546
diff changeset
6829 # calling autoreconf here would only waste lots of CPU time.
9188
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6830 func_execute_command ${ACLOCAL} || func_exit 1
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6831 func_execute_command mkdir build-aux
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6832 func_execute_command ${AUTOCONF} || func_exit 1
7bf3aff81ae2 New options --verbose, --quiet.
Bruno Haible <bruno@clisp.org>
parents: 9187
diff changeset
6833 func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1
18959
a2064df3feed gnulib-tool: Clean up after autotools.
Bruno Haible <bruno@clisp.org>
parents: 18952
diff changeset
6834 rm -rf autom4te.cache
40128
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6835 if test -f build-aux/test-driver; then
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6836 patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver.diff || func_exit 1
a2e861fa78d1 gnulib-tool: Support running testdirs on Android.
Bruno Haible <bruno@clisp.org>
parents: 40074
diff changeset
6837 fi
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
6838 ) || func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6839 }
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6840
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6841 case $mode in
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6842 "" )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6843 func_fatal_error "no mode specified" ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6844
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6845 list )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6846 func_all_modules
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6847 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6848
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6849 find )
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6850 # sed expression that converts a literal to a basic regular expression.
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6851 # Needs to handle . [ \ * ^ $.
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6852 sed_literal_to_basic_regex='s/\\/\\\\/g
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6853 s/\[/\\[/g
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6854 s/\^/\\^/g
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6855 s/\([.*$]\)/[\1]/g'
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6856 for filename
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6857 do
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6858 if test -f "$gnulib_dir/$filename" \
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
6859 || func_lookup_local_file "$filename"; then
12877
2e190fad4cfe Tweak last commit: Reduce the candidate list.
Bruno Haible <bruno@clisp.org>
parents: 12876
diff changeset
6860 filename_anywhere_regex=`echo "$filename" | sed -e "$sed_literal_to_basic_regex"`
2e190fad4cfe Tweak last commit: Reduce the candidate list.
Bruno Haible <bruno@clisp.org>
parents: 12876
diff changeset
6861 filename_line_regex='^'"$filename_anywhere_regex"'$'
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6862 module_candidates=`
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6863 {
12877
2e190fad4cfe Tweak last commit: Reduce the candidate list.
Bruno Haible <bruno@clisp.org>
parents: 12876
diff changeset
6864 (cd "$gnulib_dir" && find modules -type f -print | xargs -n 100 grep -l "$filename_line_regex" /dev/null | sed -e 's,^modules/,,')
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
6865 func_path_foreach "$local_gnulib_path" func_modules_in_dir %dir% | xargs -n 100 grep -l "$filename_anywhere_regex" /dev/null | sed -e 's,^modules/,,' -e 's,\.diff$,,'
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6866 } \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6867 | func_sanitize_modulelist \
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6868 | LC_ALL=C sort -u
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6869 `
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6870 for module in $module_candidates; do
12877
2e190fad4cfe Tweak last commit: Reduce the candidate list.
Bruno Haible <bruno@clisp.org>
parents: 12876
diff changeset
6871 if func_get_filelist $module | grep "$filename_line_regex" > /dev/null; then
12876
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6872 echo $module
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6873 fi
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6874 done
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6875 else
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6876 func_warning "file $filename does not exist"
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6877 fi
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6878 done
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6879 ;;
030a6f5cbffd Make it easier to find modules. New gnulib-tool option '--find'.
Bruno Haible <bruno@clisp.org>
parents: 12859
diff changeset
6880
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6881 import | add-import | remove-import | update )
6940
ca8592ba8eba * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
Paul Eggert <eggert@cs.ucla.edu>
parents: 6862
diff changeset
6882
5343
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6883 # Where to import.
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6884 if test -z "$destdir"; then
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6885 destdir=.
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6886 fi
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6887 test -d "$destdir" \
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6888 || func_fatal_error "destination directory does not exist: $destdir"
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
6889
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6890 # Prefer configure.ac to configure.in.
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6891 if test -f "$destdir"/configure.ac; then
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6892 configure_ac="$destdir/configure.ac"
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6893 else
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6894 if test -f "$destdir"/configure.in; then
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6895 configure_ac="$destdir/configure.in"
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6896 else
12021
d625e819e6ea Add advice to an error message.
Bruno Haible <bruno@clisp.org>
parents: 11931
diff changeset
6897 func_fatal_error "cannot find $destdir/configure.ac - make sure you run gnulib-tool from within your package's directory"
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6898 fi
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6899 fi
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6900
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6901 # Analyze configure.ac.
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6902 guessed_auxdir="."
7077
c2122624e8ed New option --no-libtool.
Bruno Haible <bruno@clisp.org>
parents: 7076
diff changeset
6903 guessed_libtool=false
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6904 my_sed_traces='
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6905 s,#.*$,,
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6906 s,^dnl .*$,,
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6907 s, dnl .*$,,
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6908 /AC_CONFIG_AUX_DIR/ {
10987
06ce5e3302ba Fix a security bug.
Bruno Haible <bruno@clisp.org>
parents: 10986
diff changeset
6909 s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_auxdir="\1",p
5798
49900d80eaaf 2005-04-15 Oskar Liljeblad <oskar@osk.mine.nu>
Simon Josefsson <simon@josefsson.org>
parents: 5685
diff changeset
6910 }
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6911 /A[CM]_PROG_LIBTOOL/ {
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6912 s,^.*$,guessed_libtool=true,p
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6913 }'
7752
fc2ff707c74b * gnulib-tool (SED): Remove, undoing previous change.
Paul Eggert <eggert@cs.ucla.edu>
parents: 7737
diff changeset
6914 eval `sed -n -e "$my_sed_traces" < "$configure_ac"`
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
6915
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6916 if test -z "$auxdir"; then
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6917 auxdir="$guessed_auxdir"
5343
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
6918 fi
5202
64446bf39961 Use sed instead of autoconf --trace, inspired by
Paul Eggert <eggert@cs.ucla.edu>
parents: 5198
diff changeset
6919
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6920 # Determine where to apply func_import.
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6921 if test "$mode" = import; then
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6922 # Apply func_import to a particular gnulib directory.
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6923 # The command line contains the complete specification; don't look at
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6924 # the contents of gnulib-cache.m4.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6925 test -n "$supplied_libname" || supplied_libname=true
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6926 test -n "$sourcebase" || sourcebase="lib"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6927 test -n "$m4base" || m4base="m4"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6928 test -n "$docbase" || docbase="doc"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6929 test -n "$testsbase" || testsbase="tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6930 test -n "$macro_prefix" || macro_prefix="gl"
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6931 func_import "$*"
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6932 else
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6933 if test -n "$m4base"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6934 # Apply func_import to a particular gnulib directory.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6935 # Any number of additional modules can be given.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6936 if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6937 # First use of gnulib in the given m4base.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6938 test -n "$supplied_libname" || supplied_libname=true
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6939 test -n "$sourcebase" || sourcebase="lib"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6940 test -n "$docbase" || docbase="doc"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6941 test -n "$testsbase" || testsbase="tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6942 test -n "$macro_prefix" || macro_prefix="gl"
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6943 fi
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6944 func_import "$*"
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6945 else
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6946 # Apply func_import to all gnulib directories.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6947 # To get this list of directories, look at Makefile.am. (Not at
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6948 # configure, because it may be omitted from version control. Also,
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6949 # don't run "find $destdir -name gnulib-cache.m4", as it might be
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6950 # too expensive.)
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6951 m4dirs=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6952 m4dirs_count=0
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6953 if test -f "$destdir"/Makefile.am; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6954 aclocal_amflags=`sed -n -e 's/^ACLOCAL_AMFLAGS[ ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6955 m4dir_is_next=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6956 for arg in $aclocal_amflags; do
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6957 if test -n "$m4dir_is_next"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6958 # Ignore absolute directory pathnames, like /usr/local/share/aclocal.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6959 case "$arg" in
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6960 /*) ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6961 *)
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6962 if test -f "$destdir/$arg"/gnulib-cache.m4; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6963 func_append m4dirs " $arg"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6964 m4dirs_count=`expr $m4dirs_count + 1`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6965 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6966 ;;
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6967 esac
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6968 m4dir_is_next=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6969 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6970 if test "X$arg" = "X-I"; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6971 m4dir_is_next=yes
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6972 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6973 m4dir_is_next=
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6974 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6975 fi
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6976 done
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
6977 else
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6978 # No Makefile.am! Oh well. Look at the last generated aclocal.m4.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6979 if test -f "$destdir"/aclocal.m4; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6980 sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p'
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6981 sedexpr2='s,^[^/]*$,.,'
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6982 sedexpr3='s,/[^/]*$,,'
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6983 m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6984 m4dirs=`for arg in $m4dirs; do if test -f "$destdir/$arg"/gnulib-cache.m4; then echo $arg; fi; done`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6985 m4dirs_count=`for arg in $m4dirs; do echo "$arg"; done | wc -l`
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6986 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6987 fi
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6988 if test $m4dirs_count = 0; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6989 # First use of gnulib in a package.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6990 # Any number of additional modules can be given.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6991 test -n "$supplied_libname" || supplied_libname=true
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6992 test -n "$sourcebase" || sourcebase="lib"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6993 m4base="m4"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6994 test -n "$docbase" || docbase="doc"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6995 test -n "$testsbase" || testsbase="tests"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6996 test -n "$macro_prefix" || macro_prefix="gl"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6997 func_import "$*"
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6998 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
6999 if test $m4dirs_count = 1; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7000 # There's only one use of gnulib here. Assume the user means it.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7001 # Any number of additional modules can be given.
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7002 for m4base in $m4dirs; do
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7003 func_import "$*"
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7004 done
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7005 else
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7006 # Ambiguous - guess what the user meant.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7007 if test $# = 0; then
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7008 # No further arguments. Guess the user wants to update all of them.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7009 for m4base in $m4dirs; do
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7010 # Perform func_import in a subshell, so that variable values
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7011 # such as
18173
c5a6d6300f8f gnulib-tool: allow multiple --local-dir usage
Pavel Raiskup <praiskup@redhat.com>
parents: 18124
diff changeset
7012 # local_gnulib_path, incobsolete, inc_cxx_tests,
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7013 # inc_longrunning_tests, inc_privileged_tests,
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7014 # inc_unportable_tests, inc_all_tests, avoidlist, sourcebase,
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7015 # m4base, pobase, docbase, testsbase, inctests, libname, lgpl,
14894
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
7016 # makefile_name, libtool, macro_prefix, po_domain,
b22360ddefc4 gnulib-tool: Better isolation between different gnulib-tool invocations.
Bruno Haible <bruno@clisp.org>
parents: 14841
diff changeset
7017 # witness_c_macro, vc_files
13638
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7018 # don't propagate from one directory to another.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7019 (func_import) || func_exit 1
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7020 done
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7021 else
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7022 # Really ambiguous.
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7023 func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..."
8ae47cf4002f gnulib-tool: Change --import. New options --add/remove-import.
Bruno Haible <bruno@clisp.org>
parents: 13636
diff changeset
7024 fi
6183
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7025 fi
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7026 fi
d12635ef6eb5 Make it possible to use multiple gnulib instantiations with the same
Bruno Haible <bruno@clisp.org>
parents: 6182
diff changeset
7027 fi
6178
3830993b4c7a Rename some variables.
Bruno Haible <bruno@clisp.org>
parents: 6177
diff changeset
7028 fi
5343
eae956a8e0ec Untabify.
Bruno Haible <bruno@clisp.org>
parents: 5312
diff changeset
7029 ;;
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7030
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7031 create-testdir )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7032 if test -z "$destdir"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7033 func_fatal_error "please specify --dir option"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7034 fi
4126
e8caa337b4e1 (create-testdir): don't complain if destdir
Karl Berry <karl@freefriends.org>
parents: 4124
diff changeset
7035 mkdir "$destdir"
e8caa337b4e1 (create-testdir): don't complain if destdir
Karl Berry <karl@freefriends.org>
parents: 4124
diff changeset
7036 test -d "$destdir" \
e8caa337b4e1 (create-testdir): don't complain if destdir
Karl Berry <karl@freefriends.org>
parents: 4124
diff changeset
7037 || func_fatal_error "could not create destination directory"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
7038 test -n "$auxdir" || auxdir="build-aux"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7039 func_create_testdir "$destdir" "$*"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7040 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7041
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7042 create-megatestdir )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7043 if test -z "$destdir"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7044 func_fatal_error "please specify --dir option"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7045 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7046 mkdir "$destdir" || func_fatal_error "could not create destination directory"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
7047 test -n "$auxdir" || auxdir="build-aux"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7048 func_create_megatestdir "$destdir" "$*"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7049 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7050
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7051 test )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7052 test -n "$destdir" || destdir=testdir$$
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7053 mkdir "$destdir" || func_fatal_error "could not create destination directory"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
7054 test -n "$auxdir" || auxdir="build-aux"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7055 func_create_testdir "$destdir" "$*"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7056 cd "$destdir"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7057 mkdir build
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7058 cd build
7638
581c011e05d6 * gnulib-tool (func_create_testdir): Fix replacement of
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7605
diff changeset
7059 ../configure || func_exit 1
11404
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7060 $MAKE || func_exit 1
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7061 $MAKE check || func_exit 1
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7062 $MAKE distclean || func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7063 remaining=`find . -type f -print`
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7064 if test -n "$remaining"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7065 echo "Remaining files:" $remaining 1>&2
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7066 echo "gnulib-tool: *** Stop." 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
7067 func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7068 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7069 cd ..
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7070 cd ..
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7071 rm -rf "$destdir"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7072 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7073
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7074 megatest )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7075 test -n "$destdir" || destdir=testdir$$
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7076 mkdir "$destdir" || func_fatal_error "could not create destination directory"
6109
a52f596fdf00 Generalize support for --aux-dir.
Bruno Haible <bruno@clisp.org>
parents: 6108
diff changeset
7077 test -n "$auxdir" || auxdir="build-aux"
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7078 func_create_megatestdir "$destdir" "$*"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7079 cd "$destdir"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7080 mkdir build
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7081 cd build
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7082 ../configure
11404
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7083 $MAKE
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7084 $MAKE check
eb725d01cd4c gnulib-tool: execute $MAKE not make
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 11403
diff changeset
7085 $MAKE distclean
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7086 remaining=`find . -type f -print`
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7087 if test -n "$remaining"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7088 echo "Remaining files:" $remaining 1>&2
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7089 echo "gnulib-tool: *** Stop." 1>&2
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
7090 func_exit 1
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7091 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7092 cd ..
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7093 cd ..
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7094 rm -rf "$destdir"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7095 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7096
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7097 extract-description )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7098 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7099 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7100 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7101 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7102 func_get_description "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7103 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7104 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7105 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7106
13070
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7107 extract-comment )
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7108 for module
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7109 do
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7110 func_verify_module
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7111 if test -n "$module"; then
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7112 func_get_comment "$module"
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7113 fi
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7114 done
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7115 ;;
71d59ec8c75f New module description field 'Comment'.
Bruno Haible <bruno@clisp.org>
parents: 13069
diff changeset
7116
10743
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7117 extract-status )
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7118 for module
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7119 do
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7120 func_verify_module
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7121 if test -n "$module"; then
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7122 func_get_status "$module"
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7123 fi
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7124 done
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7125 ;;
ec39330cb04e Modules now have a 'status' attribute.
Bruno Haible <bruno@clisp.org>
parents: 10732
diff changeset
7126
9189
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7127 extract-notice )
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7128 for module
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7129 do
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7130 func_verify_module
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7131 if test -n "$module"; then
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7132 func_get_notice "$module"
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7133 fi
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7134 done
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7135 ;;
1d7d9694f1e2 Allow for modules to show an arbitrary notice.
Bruno Haible <bruno@clisp.org>
parents: 9188
diff changeset
7136
12460
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7137 extract-applicability )
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7138 for module
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7139 do
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7140 func_verify_module
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7141 if test -n "$module"; then
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7142 func_get_applicability "$module"
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7143 fi
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7144 done
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7145 ;;
282eecca2301 New module attribute 'Applicability'.
Bruno Haible <bruno@clisp.org>
parents: 12417
diff changeset
7146
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7147 extract-filelist )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7148 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7149 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7150 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7151 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7152 func_get_filelist "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7153 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7154 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7155 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7156
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7157 extract-dependencies )
15853
3034b1243e09 gnulib-tool: don't follow dependencies to avoided modules
Paul Eggert <eggert@cs.ucla.edu>
parents: 15852
diff changeset
7158 if test -n "$avoidlist"; then
3034b1243e09 gnulib-tool: don't follow dependencies to avoided modules
Paul Eggert <eggert@cs.ucla.edu>
parents: 15852
diff changeset
7159 func_fatal_error "cannot combine --avoid and --extract-dependencies"
3034b1243e09 gnulib-tool: don't follow dependencies to avoided modules
Paul Eggert <eggert@cs.ucla.edu>
parents: 15852
diff changeset
7160 fi
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7161 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7162 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7163 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7164 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7165 func_get_dependencies "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7166 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7167 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7168 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7169
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7170 extract-recursive-dependencies )
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7171 if test -n "$avoidlist"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7172 func_fatal_error "cannot combine --avoid and --extract-recursive-dependencies"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7173 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7174 for module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7175 do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7176 func_verify_module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7177 if test -n "$module"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7178 func_get_dependencies_recursively "$module"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7179 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7180 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7181 ;;
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7182
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7183 extract-autoconf-snippet )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7184 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7185 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7186 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7187 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7188 func_get_autoconf_snippet "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7189 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7190 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7191 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7192
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7193 extract-automake-snippet )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7194 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7195 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7196 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7197 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7198 func_get_automake_snippet "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7199 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7200 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7201 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7202
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7203 extract-include-directive )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7204 for module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7205 do
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7206 func_verify_module
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7207 if test -n "$module"; then
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7208 func_get_include_directive "$module"
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7209 fi
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7210 done
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7211 ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7212
8055
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7213 extract-link-directive )
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7214 for module
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7215 do
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7216 func_verify_module
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7217 if test -n "$module"; then
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7218 func_get_link_directive "$module"
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7219 fi
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7220 done
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7221 ;;
5c79d44f739d New module description field 'Link'.
Bruno Haible <bruno@clisp.org>
parents: 8040
diff changeset
7222
40074
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7223 extract-recursive-link-directive )
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7224 if test -n "$avoidlist"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7225 func_fatal_error "cannot combine --avoid and --extract-recursive-link-directive"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7226 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7227 for module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7228 do
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7229 func_verify_module
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7230 if test -n "$module"; then
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7231 func_get_link_directive_recursively "$module"
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7232 fi
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7233 done
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7234 ;;
203657b01911 gnulib-tool: New option --extract-recursive-link-directive.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
7235
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7236 extract-license )
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7237 for module
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7238 do
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7239 func_verify_module
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7240 if test -n "$module"; then
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7241 func_get_license "$module"
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7242 fi
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7243 done
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7244 ;;
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 5250
diff changeset
7245
4197
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7246 extract-maintainer )
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7247 for module
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7248 do
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7249 func_verify_module
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7250 if test -n "$module"; then
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7251 func_get_maintainer "$module"
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7252 fi
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7253 done
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7254 ;;
3ccc6d0d52bb Add a Maintainer.
Bruno Haible <bruno@clisp.org>
parents: 4175
diff changeset
7255
6113
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7256 extract-tests-module )
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7257 for module
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7258 do
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7259 func_verify_module
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7260 if test -n "$module"; then
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7261 func_get_tests_module "$module"
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7262 fi
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7263 done
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7264 ;;
dac0e048bd40 Support for unit test modules.
Bruno Haible <bruno@clisp.org>
parents: 6111
diff changeset
7265
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7266 copy-file )
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7267 # Verify the number of arguments.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7268 if test $# -lt 1 || test $# -gt 2; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7269 func_fatal_error "invalid number of arguments for --$mode"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7270 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7271
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7272 # The first argument is the file to be copied.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7273 f="$1"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7274 # Verify the file exists.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7275 func_lookup_file "$f"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7276
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7277 # The second argument is the destination; either a directory ot a file.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7278 # It defaults to the current directory.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7279 dest="$2"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7280 test -n "$dest" || dest='.'
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7281 test -n "$sourcebase" || sourcebase="lib"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7282 test -n "$m4base" || m4base="m4"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7283 test -n "$docbase" || docbase="doc"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7284 test -n "$testsbase" || testsbase="tests"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7285 test -n "$auxdir" || auxdir="build-aux"
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7286 rewritten='%REWRITTEN%'
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7287 sed_rewrite_files="\
11560
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7288 s,^build-aux/,$rewritten$auxdir/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7289 s,^doc/,$rewritten$docbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7290 s,^lib/,$rewritten$sourcebase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7291 s,^m4/,$rewritten$m4base/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7292 s,^tests/,$rewritten$testsbase/,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7293 s,^top/,$rewritten,
987b2dec97b7 Fix the rewriting rules for file names.
Bruno Haible <bruno@clisp.org>
parents: 11533
diff changeset
7294 s,^$rewritten,,"
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7295 if test -d "$dest"; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7296 destdir="$dest"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7297 g=`echo "$f" | sed -e "$sed_rewrite_files"`
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7298 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7299 destdir=`dirname "$dest"`
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7300 g=`basename "$dest"`
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7301 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7302
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7303 # Create the directory for destfile.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7304 d=`dirname "$destdir/$g"`
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7305 if $doit; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7306 if test -n "$d" && test ! -d "$d"; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7307 mkdir -p "$d" || func_fatal_error "failed"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7308 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7309 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7310 # Copy the file.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7311 func_dest_tmpfilename "$g"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7312 cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7313 already_present=true
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7314 if test -f "$destdir/$g"; then
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7315 # The file already exists.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7316 func_update_file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7317 else
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7318 # Install the file.
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7319 # Don't protest if the file should be there but isn't: it happens
13636
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
7320 # frequently that developers don't put autogenerated files under version
06064a28d167 gnulib-tool: Don't talk about CVS any more.
Bruno Haible <bruno@clisp.org>
parents: 13634
diff changeset
7321 # control.
11461
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7322 func_add_file
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7323 fi
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7324 rm -f "$tmpfile"
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7325 ;;
263b7daa235d New gnulib-tool option --copy-file.
Bruno Haible <bruno@clisp.org>
parents: 11421
diff changeset
7326
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7327 * )
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7328 func_fatal_error "unknown operation mode --$mode" ;;
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7329 esac
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7330
18937
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7331 if test "$copymode" = hardlink -o "$lcopymode" = hardlink; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7332 # Setting hard links modifies the ctime of files in the gnulib checkout.
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7333 # This disturbs the result of the next "gitk" invocation.
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7334 # Workaround: Let git scan the files. This can be done through
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7335 # "git update-index --refresh" or "git status" or "git diff".
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7336 if test -d "$gnulib_dir"/.git \
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7337 && (git --version) >/dev/null 2>/dev/null; then
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7338 (cd "$gnulib_dir" && git update-index --refresh >/dev/null)
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7339 fi
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7340 fi
f0e497cb3d67 gnulib-tool: Add options to create hard links.
Bruno Haible <bruno@clisp.org>
parents: 18934
diff changeset
7341
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7342 rm -rf "$tmp"
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7343 # Undo the effect of the previous 'trap' command. Some shellology:
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
7344 # We cannot use "trap - 0 1 2 3 13 15", because Solaris sh would attempt to
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7345 # execute the command "-". "trap '' ..." is fine only for signal 0 (= normal
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7346 # exit); for the others we need to call 'exit' explicitly. The value of $? is
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7347 # 128 + signal number and is set before the trap-registered command is run.
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7348 trap '' 0
7332
dd6e80d0c89e * gnulib-tool (func_exit): New function, to allow to pass the
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
parents: 7327
diff changeset
7349 trap 'func_exit $?' 1 2 3 13 15
7073
eb23418a908e Make it possible to use a locally augmented gnulib.
Bruno Haible <bruno@clisp.org>
parents: 7072
diff changeset
7350
4112
98e795b64056 Tool for managing gnulib modules.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7351 exit 0
7241
aed440dca701 * gnulib-tool: Don't let emacs change spaces to TAB.
Eric Blake <ebb9@byu.net>
parents: 7240
diff changeset
7352
aed440dca701 * gnulib-tool: Don't let emacs change spaces to TAB.
Eric Blake <ebb9@byu.net>
parents: 7240
diff changeset
7353 # Local Variables:
aed440dca701 * gnulib-tool: Don't let emacs change spaces to TAB.
Eric Blake <ebb9@byu.net>
parents: 7240
diff changeset
7354 # indent-tabs-mode: nil
aed440dca701 * gnulib-tool: Don't let emacs change spaces to TAB.
Eric Blake <ebb9@byu.net>
parents: 7240
diff changeset
7355 # whitespace-check-buffer-indent: nil
aed440dca701 * gnulib-tool: Don't let emacs change spaces to TAB.
Eric Blake <ebb9@byu.net>
parents: 7240
diff changeset
7356 # End: