| #! /bin/sh |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| progname=$0 |
| package=gnulib |
| nl=' |
| ' |
| IFS=" "" $nl" |
|
|
| |
| AUTOCONFPATH= |
| |
| |
| |
| |
| |
| |
|
|
| |
| AUTOMAKEPATH= |
|
|
| |
| GETTEXTPATH= |
|
|
| |
| LIBTOOLPATH= |
|
|
| |
| |
| if test -z "${AUTOCONF}" || test -n "${AUTOCONFPATH}"; then |
| AUTOCONF="${AUTOCONFPATH}autoconf" |
| fi |
| if test -z "${AUTOHEADER}" || test -n "${AUTOCONFPATH}"; then |
| AUTOHEADER="${AUTOCONFPATH}autoheader" |
| fi |
| if test -z "${ACLOCAL}" || test -n "${AUTOMAKEPATH}"; then |
| ACLOCAL="${AUTOMAKEPATH}aclocal" |
| fi |
| if test -z "${AUTOMAKE}" || test -n "${AUTOMAKEPATH}"; then |
| AUTOMAKE="${AUTOMAKEPATH}automake" |
| fi |
| if test -z "${AUTORECONF}" || test -n "${AUTOCONFPATH}"; then |
| AUTORECONF="${AUTOCONFPATH}autoreconf" |
| fi |
|
|
| |
| if test -z "${AUTOPOINT}" || test -n "${GETTEXTPATH}"; then |
| AUTOPOINT="${GETTEXTPATH}autopoint" |
| fi |
|
|
| |
| if test -z "${LIBTOOLIZE}" || test -n "${LIBTOOLPATH}"; then |
| LIBTOOLIZE="${LIBTOOLPATH}libtoolize" |
| fi |
|
|
| |
| if test -z "${MAKE}"; then |
| MAKE=make |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| if (alias) > /dev/null 2>&1 \ |
| && echo | sed --posix -e d >/dev/null 2>&1 \ |
| && case `sed --version | sed -e 's/^[^0-9]*//' -e 1q` in \ |
| [1-3]* | 4.[01]*) false;; \ |
| *) true;; \ |
| esac \ |
| ; then |
| |
| |
| |
| |
| |
| |
| |
| |
| if test -n "$BASH_VERSION"; then |
| shopt -s expand_aliases >/dev/null 2>&1 |
| fi |
| alias sed='sed --posix' |
| fi |
|
|
| |
| |
| sed_noop='s,x,x,' |
|
|
| |
| |
| if echo fo | sed -e 's/f/g/ |
| # s/o/u/ |
| # indented comment |
| s/o/e/' 2>/dev/null | grep ge > /dev/null; then |
| sed_comments=true |
| else |
| sed_comments=false |
| fi |
|
|
| |
| |
| func_usage () |
| { |
| echo "\ |
| Usage: gnulib-tool --list |
| gnulib-tool --find filename |
| gnulib-tool --import [module1 ... moduleN] |
| gnulib-tool --add-import [module1 ... moduleN] |
| gnulib-tool --remove-import [module1 ... moduleN] |
| gnulib-tool --update |
| gnulib-tool --create-testdir --dir=directory [module1 ... moduleN] |
| gnulib-tool --create-megatestdir --dir=directory [module1 ... moduleN] |
| gnulib-tool --test --dir=directory [module1 ... moduleN] |
| gnulib-tool --megatest --dir=directory [module1 ... moduleN] |
| gnulib-tool --extract-description module |
| gnulib-tool --extract-comment module |
| gnulib-tool --extract-status module |
| gnulib-tool --extract-notice module |
| gnulib-tool --extract-applicability module |
| gnulib-tool --extract-filelist module |
| gnulib-tool --extract-dependencies module |
| gnulib-tool --extract-recursive-dependencies module |
| gnulib-tool --extract-autoconf-snippet module |
| gnulib-tool --extract-automake-snippet module |
| gnulib-tool --extract-include-directive module |
| gnulib-tool --extract-link-directive module |
| gnulib-tool --extract-recursive-link-directive module |
| gnulib-tool --extract-license module |
| gnulib-tool --extract-maintainer module |
| gnulib-tool --extract-tests-module module |
| gnulib-tool --copy-file file [destination] |
| |
| Operation modes: |
| |
| --list print the available module names |
| --find find the modules which contain the specified file |
| --import import the given modules into the current package |
| --add-import augment the list of imports from gnulib into the |
| current package, by adding the given modules; |
| if no modules are specified, update the current |
| package from the current gnulib |
| --remove-import reduce the list of imports from gnulib into the |
| current package, by removing the given modules |
| --update update the current package, restore files omitted |
| from version control |
| --create-testdir create a scratch package with the given modules |
| --create-megatestdir create a mega scratch package with the given modules |
| one by one and all together |
| --test test the combination of the given modules |
| (recommended to use CC=\"gcc -Wall\" here) |
| --megatest test the given modules one by one and all together |
| (recommended to use CC=\"gcc -Wall\" here) |
| --extract-description extract the description |
| --extract-comment extract the comment |
| --extract-status extract the status (obsolete etc.) |
| --extract-notice extract the notice or banner |
| --extract-applicability extract the applicability |
| --extract-filelist extract the list of files |
| --extract-dependencies extract the dependencies |
| --extract-recursive-dependencies extract the dependencies of the module |
| and its dependencies, recursively, all |
| together, but without the conditions |
| --extract-autoconf-snippet extract the snippet for configure.ac |
| --extract-automake-snippet extract the snippet for library makefile |
| --extract-include-directive extract the #include directive |
| --extract-link-directive extract the linker directive |
| --extract-recursive-link-directive extract the linker directive of the |
| module and its dependencies, |
| recursively, all together |
| --extract-license report the license terms of the source files |
| under lib/ |
| --extract-maintainer report the maintainer(s) inside gnulib |
| --extract-tests-module report the unit test module, if it exists |
| --copy-file copy a file that is not part of any module |
| --help Show this help text. |
| --version Show version and authorship information. |
| |
| General options: |
| |
| --dir=DIRECTORY Specify the target directory. |
| For --import, this specifies where your |
| configure.ac can be found. Defaults to current |
| directory. |
| --local-dir=DIRECTORY Specify a local override directory where to look |
| up files before looking in gnulib's directory. |
| --verbose Increase verbosity. May be repeated. |
| --quiet Decrease verbosity. May be repeated. |
| |
| Options for --import, --add/remove-import, --update: |
| |
| --dry-run Only print what would have been done. |
| |
| Options for --import, --add/remove-import: |
| |
| --with-tests Include unit tests for the included modules. |
| |
| Options for --create-[mega]testdir, --[mega]test: |
| |
| --without-tests Don't include unit tests for the included modules. |
| |
| Options for --import, --add/remove-import, |
| --create-[mega]testdir, --[mega]test: |
| |
| --with-obsolete Include obsolete modules when they occur among the |
| dependencies. By default, dependencies to obsolete |
| modules are ignored. |
| --with-c++-tests Include even unit tests for C++ interoperability. |
| --without-c++-tests Exclude unit tests for C++ interoperability. |
| --with-longrunning-tests |
| Include even unit tests that are long-runners. |
| --without-longrunning-tests |
| Exclude unit tests that are long-runners. |
| --with-privileged-tests |
| Include even unit tests that require root |
| privileges. |
| --without-privileged-tests |
| Exclude unit tests that require root privileges. |
| --with-unportable-tests |
| Include even unit tests that fail on some platforms. |
| --without-unportable-tests |
| Exclude unit tests that fail on some platforms. |
| --with-all-tests Include all kinds of problematic unit tests. |
| --avoid=MODULE Avoid including the given MODULE. Useful if you |
| have code that provides equivalent functionality. |
| This option can be repeated. |
| --conditional-dependencies |
| Support conditional dependencies (may save configure |
| time and object code). |
| --no-conditional-dependencies |
| Don't use conditional dependencies. |
| --libtool Use libtool rules. |
| --no-libtool Don't use libtool rules. |
| |
| Options for --import, --add/remove-import: |
| |
| --lib=LIBRARY Specify the library name. Defaults to 'libgnu'. |
| --source-base=DIRECTORY |
| Directory relative to --dir where source code is |
| placed (default \"lib\"). |
| --m4-base=DIRECTORY Directory relative to --dir where *.m4 macros are |
| placed (default \"m4\"). |
| --po-base=DIRECTORY Directory relative to --dir where *.po files are |
| placed (default \"po\"). Deprecated. |
| --doc-base=DIRECTORY Directory relative to --dir where doc files are |
| placed (default \"doc\"). |
| --tests-base=DIRECTORY |
| Directory relative to --dir where unit tests are |
| placed (default \"tests\"). |
| --aux-dir=DIRECTORY Directory relative to --dir where auxiliary build |
| tools are placed (default comes from configure.ac). |
| --gnu-make Output for GNU Make instead of for the default |
| Automake |
| --lgpl[=2|=3orGPLv2|=3] |
| Abort if modules aren't available under the LGPL. |
| The version number of the LGPL can be specified; |
| the default is currently LGPLv3. |
| --makefile-name=NAME Name of makefile in the source-base and tests-base |
| directories (default \"Makefile.am\", or |
| \"Makefile.in\" if --gnu-make). |
| --tests-makefile-name=NAME |
| Name of makefile in the tests-base directory |
| (default as specified through --makefile-name). |
| --automake-subdir Specify that the makefile in the source-base |
| directory be generated in such a way that it can |
| be 'include'd from the toplevel Makefile.am. |
| --automake-subdir-tests |
| Likewise, but for the tests directory. |
| --macro-prefix=PREFIX Specify the prefix of the macros 'gl_EARLY' and |
| 'gl_INIT'. Default is 'gl'. |
| --po-domain=NAME Specify the prefix of the i18n domain. Usually use |
| the package name. A suffix '-gnulib' is appended. |
| Deprecated. |
| --witness-c-macro=NAME Specify the C macro that is defined when the |
| sources in this directory are compiled or used. |
| --vc-files Update version control related files. |
| --no-vc-files Don't update version control related files |
| (.gitignore and/or .cvsignore). |
| |
| Options for --create-[mega]testdir, --[mega]test: |
| |
| --two-configures Generate a separate configure file for the tests |
| directory, not a single configure file. |
| |
| Options for --import, --add/remove-import, --update, |
| --create-[mega]testdir, --[mega]test: |
| |
| -s, --symbolic, --symlink Make symbolic links instead of copying files. |
| --local-symlink Make symbolic links instead of copying files, only |
| for files from the local override directory. |
| -h, --hardlink Make hard links instead of copying files. |
| --local-hardlink Make hard links instead of copying files, only |
| for files from the local override directory. |
| |
| Options for --import, --add/remove-import, --update: |
| |
| -S, --more-symlinks Deprecated; equivalent to --symlink. |
| -H, --more-hardlinks Deprecated; equivalent to --hardlink. |
| |
| Report bugs to <bug-gnulib@gnu.org>." |
| } |
|
|
| |
| |
| func_version () |
| { |
| func_gnulib_dir |
| if test -d "$gnulib_dir"/.git \ |
| && (git --version) >/dev/null 2>/dev/null \ |
| && (date --version) >/dev/null 2>/dev/null; then |
| |
| sed_extract_first_date='/^Date/{ |
| s/^Date:[ ]*//p |
| q |
| }' |
| date=`cd "$gnulib_dir" && git log -n 1 --format=medium --date=iso ChangeLog | sed -n -e "$sed_extract_first_date"` |
| |
| date=`date -d "$date" -u +"%Y-%m-%d %H:%M:%S"` |
| version=' '`cd "$gnulib_dir" && ./build-aux/git-version-gen /dev/null | sed -e 's/-dirty/-modified/'` |
| else |
| |
| date=`sed -e 's/ .*//;q' "$gnulib_dir"/ChangeLog` |
| version= |
| fi |
| year=`"$gnulib_dir"/build-aux/mdate-sh "$self_abspathname" | sed -e 's,^.* ,,'` |
| echo "\ |
| gnulib-tool (GNU $package $date)$version |
| Copyright (C) $year Free Software Foundation, Inc. |
| License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> |
| This is free software: you are free to change and redistribute it. |
| There is NO WARRANTY, to the extent permitted by law. |
| " |
| printf "Written by %s, %s, and %s.\n" "Bruno Haible" "Paul Eggert" "Simon Josefsson" |
| } |
|
|
| |
| |
| func_emit_copyright_notice () |
| { |
| sed -n -e '/Copyright/ { |
| p |
| q |
| }' < "$self_abspathname" |
| echo "#" |
| echo "# This file is free software; you can redistribute it and/or modify" |
| echo "# it under the terms of the GNU General Public License as published by" |
| echo "# the Free Software Foundation, either version 3 of the License, or" |
| echo "# (at your option) any later version." |
| echo "#" |
| echo "# This file is distributed in the hope that it will be useful," |
| echo "# but WITHOUT ANY WARRANTY; without even the implied warranty of" |
| echo "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" |
| echo "# GNU General Public License for more details." |
| echo "#" |
| echo "# You should have received a copy of the GNU General Public License" |
| echo "# along with this file. If not, see <https://www.gnu.org/licenses/>." |
| echo "#" |
| echo "# As a special exception to the GNU General Public License," |
| echo "# this file may be distributed as part of a program that" |
| echo "# contains a configuration script generated by Autoconf, under" |
| echo "# the same distribution terms as the rest of that program." |
| echo "#" |
| echo "# Generated by gnulib-tool." |
| } |
|
|
| |
| |
| |
| |
| func_exit () |
| { |
| (exit $1); exit $1 |
| } |
|
|
| |
| |
| |
| |
| func_fatal_error () |
| { |
| echo "$progname: *** $1" 1>&2 |
| echo "$progname: *** Stop." 1>&2 |
| func_exit 1 |
| } |
|
|
| |
| |
| func_warning () |
| { |
| echo "gnulib-tool: warning: $1" 1>&2 |
| } |
|
|
| |
| |
| if (type readlink) > /dev/null 2>&1; then |
| func_readlink () |
| { |
| |
| readlink "$1" |
| } |
| else |
| func_readlink () |
| { |
| |
| |
| LC_ALL=C ls -l "$1" | sed -e 's, -> ,#%%#,' | sed -n -e 's,^.*#%%#\(.*\)$,\1,p' |
| } |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_gnulib_dir () |
| { |
| case "$progname" in |
| /* | ?:*) self_abspathname="$progname" ;; |
| */*) self_abspathname=`pwd`/"$progname" ;; |
| *) |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| self_abspathname= |
| if test "$PATH_SEPARATOR" = ";"; then |
| |
| pathx=".;$PATH" |
| else |
| |
| pathx="$PATH" |
| case :$PATH: in |
| *::*) |
| pathx=`echo ":$PATH:" | sed -e 's/:::*/:.:/g' -e 's/^://' -e 's/:\$//'` |
| ;; |
| esac |
| fi |
| saved_IFS="$IFS" |
| IFS="$PATH_SEPARATOR" |
| for d in $pathx; do |
| IFS="$saved_IFS" |
| test -z "$d" && d=. |
| if test -x "$d/$progname" && test ! -d "$d/$progname"; then |
| self_abspathname="$d/$progname" |
| break |
| fi |
| done |
| IFS="$saved_IFS" |
| if test -z "$self_abspathname"; then |
| func_fatal_error "could not locate the gnulib-tool program - how did you invoke it?" |
| fi |
| ;; |
| esac |
| while test -h "$self_abspathname"; do |
| |
| linkval=`func_readlink "$self_abspathname"` |
| test -n "$linkval" || break |
| case "$linkval" in |
| /* | ?:* ) self_abspathname="$linkval" ;; |
| * ) self_abspathname=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'`/"$linkval" ;; |
| esac |
| done |
| gnulib_dir=`echo "$self_abspathname" | sed -e 's,/[^/]*$,,'` |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_tmpdir () |
| { |
| |
| |
| |
| : "${TMPDIR=/tmp}" |
| { |
| |
| |
| tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` && |
| test -n "$tmp" && test -d "$tmp" |
| } || |
| { |
| |
| |
| |
| |
| |
| tmp=$TMPDIR/gl$$-$RANDOM |
| (umask 077 && mkdir "$tmp") |
| } || |
| { |
| echo "$progname: cannot create a temporary directory in $TMPDIR" >&2 |
| func_exit 1 |
| } |
| } |
|
|
| |
| |
| if ( foo=bar; foo+=baz && test "$foo" = barbaz ) >/dev/null 2>&1; then |
| |
| |
| func_append () |
| { |
| eval "$1+=\"\$2\"" |
| } |
| fast_func_append=true |
| else |
| func_append () |
| { |
| eval "$1=\"\$$1\$2\"" |
| } |
| fast_func_append=false |
| fi |
|
|
| |
| |
| |
| |
| |
| if ( foo=bar; eval 'test "${foo#b}" = ar' ) >/dev/null 2>&1; then |
| func_remove_prefix () |
| { |
| eval "$1=\${$1#\$2}" |
| } |
| fast_func_remove_prefix=true |
| else |
| func_remove_prefix () |
| { |
| eval "value=\"\$$1\"" |
| prefix="$2" |
| case "$prefix" in |
| *.*) |
| sed_escape_dots='s/\([.]\)/\\\1/g' |
| prefix=`echo "$prefix" | sed -e "$sed_escape_dots"` |
| ;; |
| esac |
| value=`echo "$value" | sed -e "s|^${prefix}||"` |
| eval "$1=\"\$value\"" |
| } |
| fast_func_remove_prefix=false |
| fi |
|
|
| |
| func_determine_path_separator () |
| { |
| if test "${PATH_SEPARATOR+set}" != set; then |
| |
| |
| |
| PATH_SEPARATOR=: |
| (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ |
| && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ |
| || PATH_SEPARATOR=';' |
| } |
| fi |
| } |
|
|
| |
| |
| func_path_append () |
| { |
| if eval "test -n \"\$$1\""; then |
| func_append "$1" "$PATH_SEPARATOR$2" |
| else |
| eval "$1=\$2" |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| func_path_foreach_inner () |
| { |
| set %start% "$@" |
| for _fpf_arg |
| do |
| case "$_fpf_arg" in |
| %start%) |
| set dummy |
| ;; |
| %dir%) |
| set "$@" "$fpf_dir" |
| ;; |
| *) |
| set "$@" "$_fpf_arg" |
| ;; |
| esac |
| done |
| shift |
|
|
| "$fpf_cb" "$@" |
| } |
|
|
| |
| |
| |
| |
| func_path_foreach () |
| { |
| fpf_dirs="$1"; shift |
| fpf_cb="$1"; shift |
| fpf_rc=false |
|
|
| fpf_saved_IFS="$IFS" |
| IFS="$PATH_SEPARATOR" |
| for fpf_dir in $fpf_dirs |
| do |
| IFS="$fpf_saved_IFS" |
| func_path_foreach_inner "$@" && fpf_rc=: |
| done |
| IFS="$fpf_saved_IFS" |
| $fpf_rc |
| } |
|
|
| |
| |
| |
| |
| |
| if ( foo=bar; eval 'test "${foo%r}" = ba' ) >/dev/null 2>&1; then |
| func_remove_suffix () |
| { |
| eval "$1=\${$1%\$2}" |
| } |
| fast_func_remove_suffix=true |
| else |
| func_remove_suffix () |
| { |
| eval "value=\"\$$1\"" |
| suffix="$2" |
| case "$suffix" in |
| *.*) |
| sed_escape_dots='s/\([.]\)/\\\1/g' |
| suffix=`echo "$suffix" | sed -e "$sed_escape_dots"` |
| ;; |
| esac |
| value=`echo "$value" | sed -e "s|${suffix}\$||"` |
| eval "$1=\"\$value\"" |
| } |
| fast_func_remove_suffix=false |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_relativize () |
| { |
| dir0=`pwd` |
| dir1="$1" |
| dir2="$2" |
| sed_first='s,^\([^/]*\)/.*$,\1,' |
| sed_rest='s,^[^/]*/*,,' |
| sed_last='s,^.*/\([^/]*\)$,\1,' |
| sed_butlast='s,/*[^/]*$,,' |
| while test -n "$dir1"; do |
| first=`echo "$dir1" | sed -e "$sed_first"` |
| if test "$first" != "."; then |
| if test "$first" = ".."; then |
| dir2=`echo "$dir0" | sed -e "$sed_last"`/"$dir2" |
| dir0=`echo "$dir0" | sed -e "$sed_butlast"` |
| else |
| first2=`echo "$dir2" | sed -e "$sed_first"` |
| if test "$first2" = "$first"; then |
| dir2=`echo "$dir2" | sed -e "$sed_rest"` |
| else |
| dir2="../$dir2" |
| fi |
| dir0="$dir0"/"$first" |
| fi |
| fi |
| dir1=`echo "$dir1" | sed -e "$sed_rest"` |
| done |
| reldir="$dir2" |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_relconcat () |
| { |
| dir1="$1" |
| dir2="$2" |
| sed_first='s,^\([^/]*\)/.*$,\1,' |
| sed_rest='s,^[^/]*/*,,' |
| sed_last='s,^.*/\([^/]*\)$,\1,' |
| sed_butlast='s,/*[^/]*$,,' |
| while true; do |
| first=`echo "$dir2" | sed -e "$sed_first"` |
| if test "$first" = "."; then |
| dir2=`echo "$dir2" | sed -e "$sed_rest"` |
| if test -z "$dir2"; then |
| relconcat="$dir1" |
| break |
| fi |
| else |
| last=`echo "$dir1" | sed -e "$sed_last"` |
| while test "$last" = "."; do |
| dir1=`echo "$dir1" | sed -e "$sed_butlast"` |
| last=`echo "$dir1" | sed -e "$sed_last"` |
| done |
| if test -z "$dir1"; then |
| relconcat="$dir2" |
| break |
| fi |
| if test "$first" = ".."; then |
| if test "$last" = ".."; then |
| relconcat="$dir1/$dir2" |
| break |
| fi |
| dir1=`echo "$dir1" | sed -e "$sed_butlast"` |
| dir2=`echo "$dir2" | sed -e "$sed_rest"` |
| if test -z "$dir1"; then |
| relconcat="$dir2" |
| break |
| fi |
| if test -z "$dir2"; then |
| relconcat="$dir1" |
| break |
| fi |
| else |
| relconcat="$dir1/$dir2" |
| break |
| fi |
| fi |
| done |
| } |
|
|
| |
| |
| func_ensure_writable () |
| { |
| test -w "$1" || chmod u+w "$1" |
| } |
|
|
| |
| |
| func_ln_s () |
| { |
| ln -s "$1" "$2" || { |
| echo "$progname: ln -s failed; falling back on cp -p" >&2 |
|
|
| case "$1" in |
| /* | ?:*) |
| cp_src="$1" ;; |
| *) |
| case "$2" in |
| */*) cp_src="${2%/*}/$1" ;; |
| *) cp_src="$1" ;; |
| esac |
| ;; |
| esac |
|
|
| cp -p "$cp_src" "$2" |
| func_ensure_writable "$2" |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| func_symlink_target () |
| { |
| case "$1" in |
| /* | ?:*) |
| link_target="$1" ;; |
| *) |
| case "$2" in |
| /* | ?:*) |
| link_target="`pwd`/$1" ;; |
| *) |
| ln_destdir=`echo "$2" | sed -e 's,[^/]*$,,'` |
| test -n "$ln_destdir" || ln_destdir="." |
| func_relativize "$ln_destdir" "$1" |
| link_target="$reldir" |
| ;; |
| esac |
| ;; |
| esac |
| } |
|
|
| |
| |
| |
| func_symlink () |
| { |
| func_symlink_target "$1" "$2" |
| func_ln_s "$link_target" "$2" |
| } |
|
|
| |
| |
| |
| func_symlink_if_changed () |
| { |
| if test $# -ne 2; then |
| echo "usage: func_symlink_if_changed SRC DEST" >&2 |
| fi |
| func_symlink_target "$1" "$2" |
| ln_target=`func_readlink "$2"` |
| if test -h "$2" && test "$link_target" = "$ln_target"; then |
| : |
| else |
| rm -f "$2" |
| func_ln_s "$link_target" "$2" |
| fi |
| } |
|
|
| |
| |
| |
| func_hardlink () |
| { |
| ln "$1" "$2" || { |
| echo "$progname: ln failed; falling back on cp -p" >&2 |
| cp -p "$1" "$2" |
| func_ensure_writable "$2" |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| have_echo= |
| if echo '\t' | grep t > /dev/null; then |
| have_echo=yes |
| fi |
| |
| |
| if test -z "$have_echo" \ |
| && test "X$1" != "X--no-reexec" \ |
| && test -n "$CONFIG_SHELL" \ |
| && test -f "$CONFIG_SHELL" \ |
| && $CONFIG_SHELL -c "echo '\\t' | grep t > /dev/null"; then |
| exec $CONFIG_SHELL "$0" --no-reexec "$@" |
| exit 127 |
| fi |
| |
| if test -z "$have_echo" \ |
| && test -n "$BASH_VERSION" \ |
| && (shopt -o xpg_echo; echo '\t' | grep t > /dev/null) 2>/dev/null; then |
| shopt -o xpg_echo |
| have_echo=yes |
| fi |
| |
| |
| |
| |
| if { test -z "$have_echo" \ |
| || case "$BASH_VERSION" in 3.2*) true;; *) false;; esac; \ |
| } \ |
| && test -n "$BASH_VERSION"; then \ |
| if type printf 2>/dev/null | grep / > /dev/null; then |
| |
| echo () |
| { |
| cat <<EOF |
| $* |
| EOF |
| } |
| else |
| |
| echo () |
| { |
| printf '%s\n' "$*" |
| } |
| fi |
| if echo '\t' | grep t > /dev/null; then |
| have_echo=yes |
| fi |
| fi |
| |
| if test -z "$have_echo" \ |
| && test -n "$ZSH_VERSION" \ |
| && (emulate sh) >/dev/null 2>&1; then |
| emulate sh |
| fi |
| |
| if test -z "$have_echo" \ |
| && (type print) >/dev/null 2>&1; then |
| |
| if type print 2>/dev/null | grep / > /dev/null; then |
| : |
| else |
| |
| if (print -r '\told' | grep told > /dev/null) 2>/dev/null; then |
| |
| alias echo='print -r' |
| fi |
| fi |
| fi |
| if test -z "$have_echo" \ |
| && echo '\t' | grep t > /dev/null; then |
| have_echo=yes |
| fi |
| |
| |
| |
| |
| |
| |
| |
| |
| if test -z "$have_echo"; then |
| bsd_echo () |
| { |
| cat <<EOF |
| $* |
| EOF |
| } |
| if (alias echo=bsd_echo) 2>/dev/null; then |
| alias echo=bsd_echo 2>/dev/null |
| fi |
| fi |
| if test -z "$have_echo" \ |
| && echo '\t' | grep t > /dev/null; then |
| have_echo=yes |
| fi |
| if test -z "$have_echo"; then |
| if (alias echo=bsd_echo) 2>/dev/null; then |
| unalias echo 2>/dev/null |
| fi |
| fi |
| |
| if test -z "$have_echo" \ |
| && test "X$1" != "X--no-reexec" \ |
| && test -f /bin/ksh; then |
| exec /bin/ksh "$0" --no-reexec "$@" |
| exit 127 |
| fi |
| |
| if test -z "$have_echo" \ |
| && test "X$1" != "X--no-reexec" \ |
| && test -f /bin/sh; then |
| exec /bin/sh "$0" --no-reexec "$@" |
| exit 127 |
| fi |
| if test -z "$have_echo"; then |
| func_fatal_error "Shell does not support 'echo' correctly. Please install GNU bash and set the environment variable CONFIG_SHELL to point to it." |
| fi |
| if echo '\t' | grep t > /dev/null; then |
| : |
| else |
| func_fatal_error "Shell does not support 'echo' correctly. Workaround does not work. Please report this as a bug to bug-gnulib@gnu.org." |
| fi |
| if test "X$1" = "X--no-reexec"; then |
| shift |
| fi |
|
|
| func_gnulib_dir |
| func_tmpdir |
| trap 'exit_status=$? |
| if test "$signal" != EXIT; then |
| echo "caught signal SIG$signal" >&2 |
| fi |
| rm -rf "$tmp" |
| exit $exit_status' EXIT |
| for signal in HUP INT QUIT PIPE TERM; do |
| trap '{ signal='$signal'; func_exit 1; }' $signal |
| done |
| signal=EXIT |
|
|
| |
| |
| |
| |
| |
| echo a > "$tmp"/join-input-1 |
| { echo; echo a; } > "$tmp"/join-input-2 |
| if test -n "$JOIN" \ |
| && LC_ALL=C $JOIN "$tmp"/join-input-1 "$tmp"/join-input-2 >/dev/null \ |
| && LC_ALL=C $JOIN "$tmp"/join-input-1 "$tmp"/join-input-2 | grep a >/dev/null \ |
| && LC_ALL=C $JOIN "$tmp"/join-input-2 "$tmp"/join-input-1 | grep a >/dev/null; then |
| : |
| else |
| if (type join) >/dev/null 2>&1 \ |
| && LC_ALL=C join "$tmp"/join-input-1 "$tmp"/join-input-2 | grep a >/dev/null \ |
| && LC_ALL=C join "$tmp"/join-input-2 "$tmp"/join-input-1 | grep a >/dev/null; then |
| JOIN=join |
| else |
| if (type gjoin) >/dev/null 2>&1 \ |
| && LC_ALL=C gjoin "$tmp"/join-input-1 "$tmp"/join-input-2 | grep a >/dev/null \ |
| && LC_ALL=C gjoin "$tmp"/join-input-2 "$tmp"/join-input-1 | grep a >/dev/null; then |
| JOIN=gjoin |
| else |
| if (type join) >/dev/null 2>&1; then |
| echo "$progname: 'join' program is buggy. Consider installing GNU coreutils." >&2 |
| func_exit 1 |
| else |
| echo "$progname: 'join' program not found. Consider installing GNU coreutils." >&2 |
| func_exit 1 |
| fi |
| fi |
| fi |
| fi |
|
|
| |
| (unset CDPATH) >/dev/null 2>&1 && unset CDPATH |
|
|
| |
| |
| func_determine_path_separator |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| { |
| mode= |
| destdir= |
| local_gnulib_path= |
| modcache=true |
| verbose=0 |
| libname=libgnu |
| supplied_libname= |
| sourcebase= |
| m4base= |
| pobase= |
| docbase= |
| testsbase= |
| auxdir= |
| inctests= |
| incobsolete= |
| inc_cxx_tests= |
| inc_longrunning_tests= |
| inc_privileged_tests= |
| inc_unportable_tests= |
| inc_all_tests= |
| excl_cxx_tests= |
| excl_longrunning_tests= |
| excl_privileged_tests= |
| excl_unportable_tests= |
| single_configure= |
| avoidlist= |
| cond_dependencies= |
| lgpl= |
| gnu_make=false |
| makefile_name= |
| tests_makefile_name= |
| automake_subdir=false |
| automake_subdir_tests=false |
| libtool= |
| macro_prefix= |
| po_domain= |
| witness_c_macro= |
| vc_files= |
| doit=: |
| copymode= |
| lcopymode= |
|
|
| while test $# -gt 0; do |
| case "$1" in |
| --list | --lis ) |
| mode=list |
| shift ;; |
| --find | --fin | --fi | --f ) |
| mode=find |
| shift ;; |
| --import | --impor | --impo | --imp | --im | --i ) |
| mode=import |
| shift ;; |
| --add-import | --add-impor | --add-impo | --add-imp | --add-im | --add-i | --add- | --add | --ad ) |
| mode=add-import |
| shift ;; |
| --remove-import | --remove-impor | --remove-impo | --remove-imp | --remove-im | --remove-i | --remove- | --remove | --remov | --remo | --rem | --re | --r ) |
| mode=remove-import |
| shift ;; |
| --update | --updat | --upda | --upd | --up | --u ) |
| mode=update |
| shift ;; |
| --create-testdir | --create-testdi | --create-testd | --create-test | --create-tes | --create-te | --create-t ) |
| mode=create-testdir |
| shift ;; |
| --create-megatestdir | --create-megatestdi | --create-megatestd | --create-megatest | --create-megates | --create-megate | --create-megat | --create-mega | --create-meg | --create-me | --create-m ) |
| mode=create-megatestdir |
| shift ;; |
| --test | --tes | --te ) |
| mode=test |
| shift ;; |
| --megatest | --megates | --megate | --megat | --mega | --meg | --me | --m ) |
| mode=megatest |
| shift ;; |
| --extract-* ) |
| mode=`echo "X$1" | sed -e 's/^X--//'` |
| shift ;; |
| --copy-file | --copy-fil | --copy-fi | --copy-f | --copy- | --copy | --cop ) |
| mode=copy-file |
| shift ;; |
| --dir ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --dir" |
| fi |
| destdir=$1 |
| shift ;; |
| --dir=* ) |
| destdir=`echo "X$1" | sed -e 's/^X--dir=//'` |
| shift ;; |
| --local-dir ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --local-dir" |
| fi |
| func_path_append local_gnulib_path "$1" |
| shift ;; |
| --local-dir=* ) |
| local_dir=`echo "X$1" | sed -e 's/^X--local-dir=//'` |
| func_path_append local_gnulib_path "$local_dir" |
| shift ;; |
| --cache-modules | --cache-module | --cache-modul | --cache-modu | --cache-mod | --cache-mo | --cache-m | --cache- | --cache | --cach | --cac | --ca ) |
| modcache=true |
| shift ;; |
| --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 ) |
| modcache=false |
| shift ;; |
| --verbose | --verbos | --verbo | --verb ) |
| verbose=`expr $verbose + 1` |
| shift ;; |
| --quiet | --quie | --qui | --qu | --q ) |
| verbose=`expr $verbose - 1` |
| shift ;; |
| --lib ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --lib" |
| fi |
| libname=$1 |
| supplied_libname=true |
| shift ;; |
| --lib=* ) |
| libname=`echo "X$1" | sed -e 's/^X--lib=//'` |
| supplied_libname=true |
| shift ;; |
| --source-base ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --source-base" |
| fi |
| sourcebase=$1 |
| shift ;; |
| --source-base=* ) |
| sourcebase=`echo "X$1" | sed -e 's/^X--source-base=//'` |
| shift ;; |
| --m4-base ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --m4-base" |
| fi |
| m4base=$1 |
| shift ;; |
| --m4-base=* ) |
| m4base=`echo "X$1" | sed -e 's/^X--m4-base=//'` |
| shift ;; |
| --po-base ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --po-base" |
| fi |
| pobase=$1 |
| shift ;; |
| --po-base=* ) |
| pobase=`echo "X$1" | sed -e 's/^X--po-base=//'` |
| shift ;; |
| --doc-base ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --doc-base" |
| fi |
| docbase=$1 |
| shift ;; |
| --doc-base=* ) |
| docbase=`echo "X$1" | sed -e 's/^X--doc-base=//'` |
| shift ;; |
| --tests-base ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --tests-base" |
| fi |
| testsbase=$1 |
| shift ;; |
| --tests-base=* ) |
| testsbase=`echo "X$1" | sed -e 's/^X--tests-base=//'` |
| shift ;; |
| --aux-dir ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --aux-dir" |
| fi |
| auxdir=$1 |
| shift ;; |
| --aux-dir=* ) |
| auxdir=`echo "X$1" | sed -e 's/^X--aux-dir=//'` |
| shift ;; |
| --with-tests | --with-test | --with-tes | --with-te | --with-t) |
| inctests=true |
| shift ;; |
| --with-obsolete | --with-obsolet | --with-obsole | --with-obsol | --with-obso | --with-obs | --with-ob | --with-o) |
| incobsolete=true |
| shift ;; |
| --with-c++-tests | --with-c++-test | --with-c++-tes | --with-c++-te | --with-c++-t | --with-c++- | --with-c++ | --with-c+ | --with-c) |
| inc_cxx_tests=true |
| shift ;; |
| --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) |
| inc_longrunning_tests=true |
| shift ;; |
| --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) |
| inc_privileged_tests=true |
| shift ;; |
| --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) |
| inc_unportable_tests=true |
| shift ;; |
| --with-all-tests | --with-all-test | --with-all-tes | --with-all-te | --with-all-t | --with-all- | --with-all | --with-al | --with-a) |
| inc_all_tests=true |
| shift ;; |
| --without-tests | --without-test | --without-tes | --without-te | --without-t) |
| inctests=false |
| shift ;; |
| --without-c++-tests | --without-c++-test | --without-c++-tes | --without-c++-te | --without-c++-t | --without-c++- | --without-c++ | --without-c+ | --without-c) |
| excl_cxx_tests=true |
| shift ;; |
| --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) |
| excl_longrunning_tests=true |
| shift ;; |
| --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) |
| excl_privileged_tests=true |
| shift ;; |
| --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) |
| excl_unportable_tests=true |
| shift ;; |
| --two-configures | --two-configure | --two-configur | --two-configu | --two-config | --two-confi | --two-conf | --two-con | --two-co | --two-c | --two- | --two | --tw) |
| single_configure=false |
| shift ;; |
| --single-configure | --single-configur | --single-configu | --single-config | --single-confi | --single-conf | --single-con | --single-co | --single-c | --single- | --single | --singl | --sing | --sin | --si) |
| single_configure=true |
| shift ;; |
| --avoid ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --avoid" |
| fi |
| if test -z "$avoidlist"; then |
| avoidlist="$1" |
| else |
| func_append avoidlist " $1" |
| fi |
| shift ;; |
| --avoid=* ) |
| arg=`echo "X$1" | sed -e 's/^X--avoid=//'` |
| if test -z "$avoidlist"; then |
| avoidlist="$arg" |
| else |
| func_append avoidlist " $arg" |
| fi |
| shift ;; |
| --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) |
| cond_dependencies=true |
| shift ;; |
| --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) |
| cond_dependencies=false |
| shift ;; |
| --lgpl ) |
| lgpl=yes |
| shift ;; |
| --lgpl=* ) |
| arg=`echo "X$1" | sed -e 's/^X--lgpl=//'` |
| case "$arg" in |
| 2 | 3orGPLv2 | 3) ;; |
| *) func_fatal_error "invalid LGPL version number for --lgpl" ;; |
| esac |
| lgpl=$arg |
| shift ;; |
| --gnu-make ) |
| gnu_make=true |
| shift ;; |
| --makefile-name ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --makefile-name" |
| fi |
| makefile_name="$1" |
| shift ;; |
| --makefile-name=* ) |
| makefile_name=`echo "X$1" | sed -e 's/^X--makefile-name=//'` |
| shift ;; |
| --tests-makefile-name ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --tests-makefile-name" |
| fi |
| tests_makefile_name="$1" |
| shift ;; |
| --tests-makefile-name=* ) |
| tests_makefile_name=`echo "X$1" | sed -e 's/^X--tests-makefile-name=//'` |
| shift ;; |
| --automake-subdir ) |
| automake_subdir=true |
| shift ;; |
| --automake-subdir-tests ) |
| automake_subdir_tests=true |
| shift ;; |
| --libtool ) |
| libtool=true |
| shift ;; |
| --no-libtool ) |
| libtool=false |
| shift ;; |
| --macro-prefix ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --macro-prefix" |
| fi |
| macro_prefix="$1" |
| shift ;; |
| --macro-prefix=* ) |
| macro_prefix=`echo "X$1" | sed -e 's/^X--macro-prefix=//'` |
| shift ;; |
| --po-domain ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --po-domain" |
| fi |
| po_domain="$1" |
| shift ;; |
| --po-domain=* ) |
| po_domain=`echo "X$1" | sed -e 's/^X--po-domain=//'` |
| shift ;; |
| --witness-c-macro ) |
| shift |
| if test $# = 0; then |
| func_fatal_error "missing argument for --witness-c-macro" |
| fi |
| witness_c_macro="$1" |
| shift ;; |
| --witness-c-macro=* ) |
| witness_c_macro=`echo "X$1" | sed -e 's/^X--witness-c-macro=//'` |
| shift ;; |
| --vc-files ) |
| vc_files=true |
| shift ;; |
| --no-vc-files ) |
| vc_files=false |
| shift ;; |
| --no-changelog | --no-changelo | --no-changel | --no-change | --no-chang | --no-chan | --no-cha | --no-ch ) |
| |
| shift ;; |
| --dry-run ) |
| doit=false |
| shift ;; |
| -s | --symbolic | --symboli | --symbol | --symbo | --symb | --symlink | --symlin | --symli | --syml | --sym | --sy ) |
| copymode=symlink |
| shift ;; |
| --local-symlink | --local-symlin | --local-symli | --local-syml | --local-sym | --local-sy | --local-s ) |
| lcopymode=symlink |
| shift ;; |
| -h | --hardlink | --hardlin | --hardli | --hardl | --hard | --har | --ha ) |
| copymode=hardlink |
| shift ;; |
| --local-hardlink | --local-hardlin | --local-hardli | --local-hardl | --local-hard | --local-har | --local-ha | --local-h ) |
| lcopymode=hardlink |
| shift ;; |
| -S | --more-symlinks | --more-symlink | --more-symlin | --more-symli | --more-syml | --more-sym | --more-sy | --more-s ) |
| copymode=symlink |
| shift ;; |
| -H | --more-hardlinks | --more-hardlink | --more-hardlin | --more-hardli | --more-hardl | --more-hard | --more-har | --more-ha | --more-h ) |
| copymode=hardlink |
| shift ;; |
| --help | --hel | --he ) |
| func_usage |
| func_exit $? ;; |
| --version | --versio | --versi | --vers ) |
| func_version |
| func_exit $? ;; |
| |
| --gnulib-dir=* ) |
| gnulib_dir=`echo "X$1" | sed -e 's/^X--gnulib-dir=//'` |
| gnulib_dir=`cd "$gnulib_dir" && pwd` |
| shift ;; |
| -- ) |
| |
| shift |
| break ;; |
| -* ) |
| echo "gnulib-tool: unknown option $1" 1>&2 |
| echo "Try 'gnulib-tool --help' for more information." 1>&2 |
| func_exit 1 ;; |
| * ) |
| break ;; |
| esac |
| done |
|
|
| if case "$mode" in import | add-import | remove-import) true;; *) false;; esac; then |
| if test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \ |
| || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \ |
| || test -n "$single_configure"; then |
| echo "gnulib-tool: invalid options for '$mode' mode" 1>&2 |
| echo "Try 'gnulib-tool --help' for more information." 1>&2 |
| func_exit 1 |
| fi |
| fi |
| if test "$mode" = update; then |
| if test $# != 0; then |
| echo "gnulib-tool: too many arguments in 'update' mode" 1>&2 |
| echo "Try 'gnulib-tool --help' for more information." 1>&2 |
| echo "If you really want to modify the gnulib configuration of your project," 1>&2 |
| echo "you need to use 'gnulib-tool --import' - at your own risk!" 1>&2 |
| func_exit 1 |
| fi |
| if test -n "$local_gnulib_path" || test -n "$supplied_libname" \ |
| || test -n "$sourcebase" || test -n "$m4base" || test -n "$pobase" \ |
| || test -n "$docbase" || test -n "$testsbase" || test -n "$auxdir" \ |
| || test -n "$inctests" || test -n "$incobsolete" \ |
| || test -n "$inc_cxx_tests" || test -n "$inc_longrunning_tests" \ |
| || test -n "$inc_privileged_tests" || test -n "$inc_unportable_tests" \ |
| || test -n "$inc_all_tests" \ |
| || test -n "$excl_cxx_tests" || test -n "$excl_longrunning_tests" \ |
| || test -n "$excl_privileged_tests" || test -n "$excl_unportable_tests" \ |
| || test -n "$avoidlist" || test -n "$lgpl" || test -n "$makefile_name" \ |
| || test -n "$tests_makefile_name" || test "$automake_subdir" != false \ |
| || test "$automake_subdir_tests" != false \ |
| || test -n "$macro_prefix" || test -n "$po_domain" \ |
| || test -n "$witness_c_macro" || test -n "$vc_files"; then |
| echo "gnulib-tool: invalid options for 'update' mode" 1>&2 |
| echo "Try 'gnulib-tool --help' for more information." 1>&2 |
| echo "If you really want to modify the gnulib configuration of your project," 1>&2 |
| echo "you need to use 'gnulib-tool --import' - at your own risk!" 1>&2 |
| func_exit 1 |
| fi |
| fi |
| if test -n "$pobase" && test -z "$po_domain"; then |
| echo "gnulib-tool: together with --po-base, you need to specify --po-domain" 1>&2 |
| echo "Try 'gnulib-tool --help' for more information." 1>&2 |
| func_exit 1 |
| fi |
| if test -z "$pobase" && test -n "$po_domain"; then |
| func_warning "--po-domain has no effect without a --po-base option" |
| fi |
| case $mode,$gnu_make in |
| *test*,true) |
| echo "gnulib-tool: --gnu-make not supported when including tests" |
| func_exit 1;; |
| esac |
| |
| case "$mode" in |
| import | add-import | remove-import | update) |
| if test -z "$inctests"; then |
| inctests=false |
| fi |
| ;; |
| create-testdir | create-megatestdir | test | megatest) |
| if test -z "$inctests"; then |
| inctests=true |
| fi |
| ;; |
| esac |
| |
| |
| |
| if test -z "$single_configure"; then |
| single_configure=true |
| fi |
|
|
| |
| |
| DEFAULT_AUTOCONF_MINVERSION="2.64" |
| autoconf_minversion= |
| configure_ac= |
| if case "$mode" in import | add-import | remove-import | update) true;; *) false;; esac \ |
| && test -n "$destdir"; then |
| if test -f "$destdir"/configure.ac; then |
| configure_ac="$destdir/configure.ac" |
| else |
| if test -f "$destdir"/configure.in; then |
| configure_ac="$destdir/configure.in" |
| fi |
| fi |
| else |
| if test -f configure.ac; then |
| configure_ac="configure.ac" |
| else |
| if test -f configure.in; then |
| configure_ac="configure.in" |
| fi |
| fi |
| fi |
| if test -n "$configure_ac"; then |
| |
| |
| |
| |
| |
| my_sed_traces=' |
| s,#.*$,, |
| s,^dnl .*$,, |
| s, dnl .*$,, |
| /AC_PREREQ/ { |
| s,^.*AC_PREREQ([[ ]*\([^])]*\).*$,\1,p |
| }' |
| prereqs=`sed -n -e "$my_sed_traces" < "$configure_ac"` |
| if test -n "$prereqs"; then |
| autoconf_minversion=` |
| for version in $prereqs; do echo $version; done | |
| LC_ALL=C sort -nru | sed -e 1q |
| ` |
| fi |
| fi |
| if test -z "$autoconf_minversion"; then |
| autoconf_minversion=$DEFAULT_AUTOCONF_MINVERSION |
| fi |
| case "$autoconf_minversion" in |
| 1.* | 2.[0-5]* | 2.6[0-3]*) |
| func_fatal_error "minimum supported autoconf version is 2.64. Try adding AC_PREREQ([$DEFAULT_AUTOCONF_MINVERSION]) to your configure.ac." ;; |
| esac |
|
|
| |
| if $automake_subdir || $automake_subdir_tests; then |
| found_subdir_objects=false |
| if test -n "$configure_ac"; then |
| my_sed_traces=' |
| s,#.*$,, |
| s,^dnl .*$,, |
| s, dnl .*$,, |
| /AM_INIT_AUTOMAKE/ { |
| s,^.*AM_INIT_AUTOMAKE([[ ]*\([^])]*\).*$,\1,p |
| }' |
| automake_options=`sed -n -e "$my_sed_traces" < "$configure_ac"` |
| for option in $automake_options; do |
| case "$option" in |
| subdir-objects ) found_subdir_objects=true ;; |
| esac |
| done |
| fi |
| if test -f "${destdir:-.}"/Makefile.am; then |
| automake_options=`sed -n -e 's/^AUTOMAKE_OPTIONS[ ]*=\(.*\)$/\1/p' "${destdir:-.}"/Makefile.am` |
| for option in $automake_options; do |
| case "$option" in |
| subdir-objects ) found_subdir_objects=true ;; |
| esac |
| done |
| fi |
| if ! $found_subdir_objects; then |
| func_fatal_error "Option --automake-subdir/--automake-subdir-tests are only supported if the definition of AUTOMAKE_OPTIONS in Makefile.am contains 'subdir-objects'." |
| fi |
| fi |
|
|
| |
| |
| sed_trimtrailingslashes='s,\([^/]\)//*$,\1,' |
| old_local_gnulib_path="$local_gnulib_path" |
| local_gnulib_path= |
| saved_IFS="$IFS" |
| IFS=: |
| for dir in $old_local_gnulib_path |
| do |
| IFS="$saved_IFS" |
| case "$dir" in |
| */ ) dir=`echo "$dir" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| func_path_append local_gnulib_path "$dir" |
| done |
| IFS="$saved_IFS" |
| case "$sourcebase" in |
| */ ) sourcebase=`echo "$sourcebase" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| case "$m4base" in |
| */ ) m4base=`echo "$m4base" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| case "$pobase" in |
| */ ) pobase=`echo "$pobase" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| case "$docbase" in |
| */ ) docbase=`echo "$docbase" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| case "$testsbase" in |
| */ ) testsbase=`echo "$testsbase" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| case "$auxdir" in |
| */ ) auxdir=`echo "$auxdir" | sed -e "$sed_trimtrailingslashes"` ;; |
| esac |
| } |
|
|
| |
| if (declare -A x && { x[f/2]='foo'; x[f/3]='bar'; eval test '${x[f/2]}' = foo; }) 2>/dev/null; then |
| |
| have_associative=true |
| else |
| |
| have_associative=false |
| fi |
|
|
| |
| |
| |
| func_lookup_local_file_cb () |
| { |
| test -n "$func_lookup_local_file_result" && return 1 |
| test -f "$1/$2" || return 1 |
| func_lookup_local_file_result=$1/$2 |
| : |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_lookup_local_file () |
| { |
| func_lookup_local_file_result= |
| func_path_foreach "$local_gnulib_path" func_lookup_local_file_cb %dir% "$1" |
| } |
|
|
| |
| |
| |
| func_lookup_file_cb () |
| { |
| |
| |
| if test -z "$lookedup_file"; then |
| |
| if test -f "$1/$lkfile"; then |
| lookedup_file="$1/$lkfile" |
| else |
| if test -f "$1/$lkfile.diff"; then |
| lkpatches="$1/$lkfile.diff${lkpatches:+$PATH_SEPARATOR$lkpatches}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_lookup_file () |
| { |
| lkfile="$1" |
| |
| |
| |
| |
| lookedup_file= |
| lkpatches= |
| func_path_foreach "$local_gnulib_path" func_lookup_file_cb %dir% |
| |
| |
| if test -z "$lookedup_file"; then |
| if test -f "$gnulib_dir/$lkfile"; then |
| lookedup_file="$gnulib_dir/$lkfile" |
| else |
| func_fatal_error "file $gnulib_dir/$lkfile not found" |
| fi |
| fi |
| |
| lookedup_tmp= |
| if test -n "$lkpatches"; then |
| lkbase=`echo "$lkfile" | sed -e 's,^.*/,,'` |
| rm -f "$tmp/$lkbase" |
| cp "$lookedup_file" "$tmp/$lkbase" |
| func_ensure_writable "$tmp/$lkbase" |
| saved_IFS="$IFS" |
| IFS="$PATH_SEPARATOR" |
| for patchfile in $lkpatches; do |
| IFS="$saved_IFS" |
| patch -s "$tmp/$lkbase" < "$patchfile" >&2 \ |
| || func_fatal_error "patch file $patchfile didn't apply cleanly" |
| done |
| IFS="$saved_IFS" |
| lookedup_file="$tmp/$lkbase" |
| lookedup_tmp=true |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_sanitize_modulelist () |
| { |
| sed -e '/^ChangeLog$/d' -e '/\/ChangeLog$/d' \ |
| -e '/^COPYING$/d' -e '/\/COPYING$/d' \ |
| -e '/^README$/d' -e '/\/README$/d' \ |
| -e '/^TEMPLATE$/d' \ |
| -e '/^TEMPLATE-EXTENDED$/d' \ |
| -e '/^TEMPLATE-TESTS$/d' \ |
| -e '/^\..*/d' \ |
| -e '/\.orig$/d' \ |
| -e '/\.rej$/d' \ |
| -e '/~$/d' |
| } |
|
|
|
|
| |
| |
| func_modules_in_dir () |
| { |
| (test -d "$1" && cd "$1" && find modules -type f -print) |
| } |
|
|
| |
| |
| |
| func_all_modules () |
| { |
| |
| |
| |
| { |
| (cd "$gnulib_dir" && find modules -type f -print | sed -e 's,^modules/,,') |
| func_path_foreach "$local_gnulib_path" func_modules_in_dir %dir% | sed -e 's,^modules/,,' -e 's,\.diff$,,' |
| } \ |
| | func_sanitize_modulelist \ |
| | sed -e '/-tests$/d' \ |
| | LC_ALL=C sort -u |
| } |
|
|
| |
| |
| func_exists_local_module () |
| { |
| test -d "$1/modules" && test -f "$1/modules/$2"; |
| } |
|
|
| |
| |
| |
| |
| func_exists_module () |
| { |
| { test -f "$gnulib_dir/modules/$1" \ |
| || func_path_foreach "$local_gnulib_path" func_exists_local_module %dir% "$1" ; } \ |
| && test "ChangeLog" != "$1" \ |
| && test "COPYING" != "$1" \ |
| && test "README" != "$1" \ |
| && test "TEMPLATE" != "$1" \ |
| && test "TEMPLATE-EXTENDED" != "$1" \ |
| && test "TEMPLATE-TESTS" != "$1" |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_verify_module () |
| { |
| if func_exists_module "$module"; then |
| |
| |
| func_lookup_file "modules/$module" |
| else |
| func_warning "module $module doesn't exist" |
| module= |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| func_verify_nontests_module () |
| { |
| case "$module" in |
| *-tests ) module= ;; |
| * ) func_verify_module ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| sed_extract_prog=':[ ]*$/ { |
| :a |
| n |
| s/^Description:[ ]*$// |
| s/^Comment:[ ]*$// |
| s/^Status:[ ]*$// |
| s/^Notice:[ ]*$// |
| s/^Applicability:[ ]*$// |
| s/^Usable-in-testdir:[ ]*$// |
| s/^Files:[ ]*$// |
| s/^Depends-on:[ ]*$// |
| s/^configure\.ac-early:[ ]*$// |
| s/^configure\.ac:[ ]*$// |
| s/^Makefile\.am:[ ]*$// |
| s/^Include:[ ]*$// |
| s/^Link:[ ]*$// |
| s/^License:[ ]*$// |
| s/^Maintainer:[ ]*$// |
| tb |
| p |
| ba |
| :b |
| }' |
|
|
| |
| |
| |
| sed_extract_field_header=' |
| s/^Description:[ ]*$/description/ |
| s/^Comment:[ ]*$/comment/ |
| s/^Status:[ ]*$/status/ |
| s/^Notice:[ ]*$/notice/ |
| s/^Applicability:[ ]*$/applicability/ |
| s/^Usable-in-testdir:[ ]*$/usability_in_testdir/ |
| s/^Files:[ ]*$/files/ |
| s/^Depends-on:[ ]*$/dependson/ |
| s/^configure\.ac-early:[ ]*$/configureac_early/ |
| s/^configure\.ac:[ ]*$/configureac/ |
| s/^Makefile\.am:[ ]*$/makefile/ |
| s/^Include:[ ]*$/include/ |
| s/^Link:[ ]*$/link/ |
| s/^License:[ ]*$/license/ |
| s/^Maintainer:[ ]*$/maintainer/' |
|
|
| if $modcache; then |
|
|
| if $have_associative; then |
|
|
| |
| declare -A modcache_cached |
| sed_to_declare_statement='s|^.*/\([a-zA-Z0-9_]*\)/$|declare -A modcache_\1|p' |
| declare_script=`echo "$sed_extract_field_header" | sed -n -e "$sed_to_declare_statement"` |
| eval "$declare_script" |
|
|
| else |
|
|
| |
| |
| |
| |
| |
| |
| |
| if (f=foo; eval echo '${f//o/e}') < /dev/null 2>/dev/null | grep fee >/dev/null; then |
| |
| |
| |
| |
| |
| eval 'func_cache_var () |
| { |
| cachevar=c_${1//[!a-zA-Z0-9_]/_} |
| }' |
| else |
| func_cache_var () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| cachevar=c_`echo "$1" | LC_ALL=C sed -e 's/[^a-zA-Z0-9_]/_/g'` ;; |
| *) |
| cachevar=c_$1 ;; |
| esac |
| } |
| fi |
|
|
| fi |
|
|
| |
| |
| |
| |
| |
| func_init_sed_convert_to_cache_statements () |
| { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| sed_convert_to_cache_statements=" |
| :llla |
| # Here we have not yet seen a field header. |
| |
| # See if the current line contains a field header. |
| t llla1 |
| :llla1 |
| ${sed_extract_field_header} |
| t lllb |
| |
| # No field header. Ignore the line. |
| |
| # Read the next line. Upon EOF, just exit. |
| n |
| b llla |
| |
| :lllb |
| # The current line contains a field header. |
| |
| # Turn it into the beginning of an assignment. |
| s/^\\(.*\\)\$/${modcachevar_assignment}\\\\/ |
| |
| # Move it to the hold space. Don't print it yet, |
| # because we want no assignment if the field is empty. |
| h |
| |
| # Read the next line. |
| # Upon EOF, the field was empty. Print no assignment. Just exit. |
| n |
| |
| # See if the current line contains a field header. |
| t lllb1 |
| :lllb1 |
| ${sed_extract_field_header} |
| # If it is, the previous field was empty. Print no assignment. |
| t lllb |
| |
| # Not a field header. |
| |
| # Print the previous line, held in the hold space. |
| x |
| p |
| x |
| |
| # Transform single quotes. |
| s/'/'\"'\"'/g |
| |
| # Prepend a single quote. |
| s/^/'/ |
| |
| :lllc |
| |
| # Move it to the hold space. |
| h |
| |
| # Read the next line. |
| # Upon EOF, branch. |
| \${ |
| b llle |
| } |
| n |
| |
| # See if the current line contains a field header. |
| t lllc1 |
| :lllc1 |
| ${sed_extract_field_header} |
| t llld |
| |
| # Print the previous line, held in the hold space. |
| x |
| p |
| x |
| |
| # Transform single quotes. |
| s/'/'\"'\"'/g |
| |
| b lllc |
| |
| :llld |
| # A field header. |
| # Print the previous line, held in the hold space, with a single quote |
| # to end the assignment. |
| x |
| s/\$/'/ |
| p |
| x |
| |
| b lllb |
| |
| :llle |
| # EOF seen. |
| # Print the previous line, held in the hold space, with a single quote |
| # to end the assignment. |
| x |
| s/\$/'/ |
| p |
| # Exit. |
| n |
| " |
| if ! $sed_comments; then |
| |
| sed_convert_to_cache_statements=`echo "$sed_convert_to_cache_statements" \ |
| | sed -e 's/^ *//' -e 's/^#.*//'` |
| fi |
| } |
|
|
| if $have_associative; then |
| |
| modcachevar_assignment='modcache_\1[$1]=' |
| func_init_sed_convert_to_cache_statements |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_cache_lookup_module () |
| { |
| if $have_associative; then |
| eval 'cached=${modcache_cached[$1]}' |
| else |
| func_cache_var "$1" |
| eval "cached=\"\$${cachevar}_cached\"" |
| fi |
| if test -z "$cached"; then |
| |
| func_lookup_file "modules/$1" |
| if $have_associative; then |
| eval 'modcache_cached[$1]=yes' |
| else |
| eval "${cachevar}_cached=\"\$1\"" |
| fi |
| if ! $have_associative; then |
| |
| modcachevar_assignment="${cachevar}"'_\1_set=set; '"${cachevar}"'_\1=' |
| func_init_sed_convert_to_cache_statements |
| fi |
| cache_statements=`LC_ALL=C sed -n -e "$sed_convert_to_cache_statements" < "$lookedup_file"` |
| eval "$cache_statements" |
| else |
| if ! $have_associative; then |
| if test "$1" != "$cached"; then |
| func_fatal_error "cache variable collision between $1 and $cached" |
| fi |
| fi |
| fi |
| } |
|
|
| fi |
|
|
| |
| |
| |
| |
| func_get_description () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Description$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_description[$1]+set}"'; then |
| eval 'echo "${modcache_description[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_description_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_description\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_comment () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Comment$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_comment[$1]+set}"'; then |
| eval 'echo "${modcache_comment[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_comment_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_comment\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_status () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Status$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_status[$1]+set}"'; then |
| eval 'echo "${modcache_status[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_status_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_status\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_notice () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Notice$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_notice[$1]+set}"'; then |
| eval 'echo "${modcache_notice[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_notice_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_notice\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| func_get_applicability () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| my_applicability=`sed -n -e "/^Applicability$sed_extract_prog" < "$lookedup_file"` |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| eval 'my_applicability="${modcache_applicability[$1]}"' |
| else |
| eval "my_applicability=\"\$${cachevar}_applicability\"" |
| fi |
| fi |
| if test -n "$my_applicability"; then |
| echo $my_applicability |
| else |
| |
| case $1 in |
| *-tests) echo "tests";; |
| *) echo "main";; |
| esac |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_filelist () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Files$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_files[$1]+set}"'; then |
| eval 'echo "${modcache_files[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_files_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_files\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| echo m4/00gnulib.m4 |
| echo m4/zzgnulib.m4 |
| echo m4/gnulib-common.m4 |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_filter_filelist () |
| { |
| if test "$2" != "$nl" \ |
| || { $fast_func_append \ |
| && { test -z "$6" || $fast_func_remove_prefix; } \ |
| && { test -z "$7" || $fast_func_remove_suffix; }; \ |
| }; then |
| ffflist= |
| for fff in $3; do |
| |
| |
| case "$fff" in |
| $4*$5) |
| if test -n "$6"; then |
| func_remove_prefix fff "$6" |
| fi |
| if test -n "$7"; then |
| func_remove_suffix fff "$7" |
| fi |
| fff="$8${fff}$9" |
| if test -z "$ffflist"; then |
| ffflist="${fff}" |
| else |
| func_append ffflist "$2${fff}" |
| fi |
| ;; |
| esac |
| done |
| else |
| sed_fff_filter="s|^$6\(.*\)$7\$|$8\\1$9|" |
| ffflist=`for fff in $3; do |
| case "$fff" in |
| $4*$5) echo "$fff" ;; |
| esac |
| done | sed -e "$sed_fff_filter"` |
| fi |
| eval "$1=\"\$ffflist\"" |
| } |
|
|
| |
| |
| |
| |
| func_get_dependencies () |
| { |
| |
| case "$1" in |
| *-tests) |
| fgd1="$1" |
| func_remove_suffix fgd1 '-tests' |
| if func_exists_module "$fgd1"; then |
| echo "$fgd1" |
| fi |
| ;; |
| esac |
| |
| { if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Depends-on$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_dependson[$1]+set}"'; then |
| eval 'echo "${modcache_dependson[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_dependson_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_dependson\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } \ |
| | sed -e '/^#/d' |
| } |
|
|
| sed_dependencies_without_conditions='s/ *\[.*//' |
|
|
| |
| |
| |
| |
| func_get_autoconf_early_snippet () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^configure\.ac-early$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_configureac_early[$1]+set}"'; then |
| eval 'echo "${modcache_configureac_early[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_configureac_early_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_configureac_early\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_autoconf_snippet () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^configure\.ac$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_configureac[$1]+set}"'; then |
| eval 'echo "${modcache_configureac[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_configureac_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_configureac\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| combine_lines() { |
| sed -e "/$1.*"'\\$/{ |
| :a |
| N |
| s/\\\n/ / |
| s/\\$/\\/ |
| ta |
| }' |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_get_automake_snippet_conditional () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_makefile[$1]+set}"'; then |
| eval 'echo "${modcache_makefile[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_makefile_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_makefile\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_get_automake_snippet_unconditional () |
| { |
| case "$1" in |
| *-tests) |
| |
| |
| all_files=`func_get_filelist $1` |
| func_filter_filelist tests_files " " "$all_files" 'tests/' '' 'tests/' '' |
| extra_files="$tests_files" |
| if test -n "$extra_files"; then |
| echo "EXTRA_DIST +=" $extra_files |
| echo |
| fi |
| ;; |
| *) |
| |
| sed_extract_mentioned_files='s/^lib_SOURCES[ ]*+=[ ]*//p' |
| already_mentioned_files=` \ |
| { if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Makefile\.am$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| if $have_associative; then |
| if eval 'test -n "${modcache_makefile[$1]+set}"'; then |
| eval 'echo "${modcache_makefile[$1]}"' |
| fi |
| else |
| eval 'field_set="$'"${cachevar}"'_makefile_set"' |
| if test -n "$field_set"; then |
| eval 'field_value="$'"${cachevar}"'_makefile"' |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } \ |
| | combine_lines \ |
| | sed -n -e "$sed_extract_mentioned_files" | sed -e 's/#.*//'` |
| all_files=`func_get_filelist $1` |
| func_filter_filelist lib_files "$nl" "$all_files" 'lib/' '' 'lib/' '' |
| |
| echo "$lib_files" | LC_ALL=C sort -u > "$tmp"/lib-files |
| extra_files=`for f in $already_mentioned_files; do echo $f; done \ |
| | LC_ALL=C sort -u | LC_ALL=C $JOIN -v 2 - "$tmp"/lib-files` |
| if test -n "$extra_files"; then |
| echo "EXTRA_DIST +=" $extra_files |
| echo |
| fi |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| case "$1" in |
| relocatable-prog-wrapper) ;; |
| pt_chown) ;; |
| *) |
| func_filter_filelist extra_files "$nl" "$extra_files" '' '.c' '' '' |
| if test -n "$extra_files"; then |
| echo "EXTRA_lib_SOURCES +=" $extra_files |
| echo |
| fi |
| ;; |
| esac |
| |
| func_filter_filelist buildaux_files "$nl" "$all_files" 'build-aux/' '' 'build-aux/' '' |
| if test -n "$buildaux_files"; then |
| if test "$auxdir" != "."; then |
| auxdir_subdir="$auxdir/" |
| else |
| auxdir_subdir= |
| fi |
| sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir_subdir"',' |
| echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"` |
| echo |
| fi |
| ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| |
| func_get_automake_snippet () |
| { |
| func_get_automake_snippet_conditional "$1" |
| func_get_automake_snippet_unconditional "$1" |
| } |
|
|
| |
| |
| |
| |
| func_get_include_directive () |
| { |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Include$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_include[$1]+set}"'; then |
| eval 'echo "${modcache_include[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_include_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_include\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } | sed -e 's/^\(["<]\)/#include \1/' |
| } |
|
|
| |
| |
| |
| |
| func_get_link_directive () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Link$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_link[$1]+set}"'; then |
| eval 'echo "${modcache_link[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_link_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_link\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_license_raw () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^License$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_license[$1]+set}"'; then |
| eval 'echo "${modcache_license[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_license_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_license\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| func_get_license () |
| { |
| |
| case "$1" in |
| *-tests ) ;; |
| * ) |
| license=`func_get_license_raw "$1"` |
| if test -z "$license"; then |
| func_warning "module $1 lacks a License" |
| fi |
| ;; |
| esac |
| case "$1" in |
| parse-datetime* ) |
| |
| |
| |
| echo "GPL" |
| ;; |
| * ) |
| { |
| func_get_license_raw "$1" |
| |
| echo "GPL" |
| } | sed -e 's,^ *$,,' | sed -e 1q |
| ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| func_get_maintainer () |
| { |
| if ! $modcache; then |
| func_lookup_file "modules/$1" |
| sed -n -e "/^Maintainer$sed_extract_prog" < "$lookedup_file" |
| else |
| func_cache_lookup_module "$1" |
| |
| if $have_associative; then |
| if eval 'test -n "${modcache_maintainer[$1]+set}"'; then |
| eval 'echo "${modcache_maintainer[$1]}"' |
| fi |
| else |
| eval "field_set=\"\$${cachevar}_maintainer_set\"" |
| if test -n "$field_set"; then |
| eval "field_value=\"\$${cachevar}_maintainer\"" |
| echo "${field_value}" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| func_get_tests_module () |
| { |
| |
| if test -f "$gnulib_dir/modules/$1"-tests \ |
| || func_path_foreach "$local_gnulib_path" func_exists_local_module %dir% "$1-tests"; then |
| echo "$1"-tests |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_verify_tests_module () |
| { |
| func_verify_module |
| if test -n "$module"; then |
| if test `func_get_applicability $module` = main; then |
| module= |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_repeat_module_in_tests () |
| { |
| case "$module" in |
| libtextstyle-optional) |
| |
| |
| |
| |
| |
| echo true ;; |
| *) |
| echo false ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| func_get_dependencies_recursively () |
| { |
| |
| |
| |
| |
| |
| handledmodules= |
| inmodules="$1" |
| outmodules= |
| while test -n "$inmodules"; do |
| inmodules_this_round="$inmodules" |
| inmodules= |
| for module in $inmodules_this_round; do |
| func_verify_module |
| if test -n "$module"; then |
| func_append outmodules " $module" |
| deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"` |
| for dep in $deps; do |
| func_append inmodules " $dep" |
| done |
| fi |
| done |
| handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u` |
| |
| for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules |
| inmodules=`echo "$handledmodules" | LC_ALL=C $JOIN -v 2 - "$tmp"/queued-modules` |
| done |
| rm -f "$tmp"/queued-modules |
| for m in $outmodules; do echo $m; done | LC_ALL=C sort -u |
| } |
|
|
| |
| |
| |
| |
| func_get_link_directive_recursively () |
| { |
| |
| |
| |
| |
| |
| handledmodules= |
| inmodules="$1" |
| outmodules= |
| while test -n "$inmodules"; do |
| inmodules_this_round="$inmodules" |
| inmodules= |
| for module in $inmodules_this_round; do |
| func_verify_module |
| if test -n "$module"; then |
| if grep '^Link:[ ]*$' "$lookedup_file" >/dev/null; then |
| |
| func_append outmodules " $module" |
| else |
| |
| deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"` |
| for dep in $deps; do |
| func_append inmodules " $dep" |
| done |
| fi |
| fi |
| done |
| handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u` |
| |
| for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules |
| inmodules=`echo "$handledmodules" | LC_ALL=C $JOIN -v 2 - "$tmp"/queued-modules` |
| done |
| rm -f "$tmp"/queued-modules |
| for m in $outmodules; do func_get_link_directive "$m"; done | LC_ALL=C sort -u | sed -e '/^$/d' |
| } |
|
|
| |
| |
| |
| |
| func_acceptable () |
| { |
| for avoid in $avoidlist; do |
| if test "$avoid" = "$1"; then |
| return 1 |
| fi |
| done |
| return 0 |
| } |
|
|
| |
| sed_first_32_chars='s/^\(................................\).*/\1/' |
|
|
| |
| |
| |
| |
| |
| |
| func_module_shellfunc_name () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| shellfunc=func_${macro_prefix}_gnulib_m4code_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| shellfunc=func_${macro_prefix}_gnulib_m4code_$1 ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| |
| func_module_shellvar_name () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| shellvar=${macro_prefix}_gnulib_enabled_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| shellvar=${macro_prefix}_gnulib_enabled_$1 ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| func_module_conditional_name () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| conditional=${macro_prefix}_GNULIB_ENABLED_`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| conditional=${macro_prefix}_GNULIB_ENABLED_$1 ;; |
| esac |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if $have_associative; then |
| declare -A conddep_isuncond |
| declare -A conddep_dependers |
| declare -A conddep_condition |
| func_uncond_add_module () |
| { |
| eval 'conddep_isuncond[$1]=true' |
| eval 'unset conddep_dependers[$1]' |
| } |
| func_conddep_add_module () |
| { |
| eval 'isuncond="${conddep_isuncond[$2]}"' |
| if test -z "$isuncond"; then |
| |
| eval 'conddep_dependers[$2]="${conddep_dependers[$2]} $1"' |
| eval 'conddep_condition[$1---$2]="$3"' |
| fi |
| } |
| func_cond_module_p () |
| { |
| eval 'previous_dependers="${conddep_dependers[$1]}"' |
| test -n "$previous_dependers" |
| } |
| func_cond_module_condition () |
| { |
| eval 'condition="${conddep_condition[$1---$2]}"' |
| } |
| else |
| func_uncond_add_module () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| suffix=$1 ;; |
| esac |
| eval 'conddep_isuncond_'"$suffix"'=true' |
| eval 'unset conddep_dependers_'"$suffix" |
| } |
| func_conddep_add_module () |
| { |
| case $2 in |
| *[!a-zA-Z0-9_]*) |
| suffix=`echo "$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| suffix=$2 ;; |
| esac |
| eval 'isuncond="${conddep_isuncond_'"$suffix"'}"' |
| if test -z "$isuncond"; then |
| eval 'conddep_dependers_'"$suffix"'="${conddep_dependers_'"$suffix"'} $1"' |
| suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` |
| eval 'conddep_condition_'"$suffix"'="$3"' |
| fi |
| } |
| func_cond_module_p () |
| { |
| case $1 in |
| *[!a-zA-Z0-9_]*) |
| suffix=`echo "$1" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` ;; |
| *) |
| suffix=$1 ;; |
| esac |
| eval 'previous_dependers="${conddep_dependers_'"$suffix"'}"' |
| test -n "$previous_dependers" |
| } |
| func_cond_module_condition () |
| { |
| suffix=`echo "$1---$2" | md5sum | LC_ALL=C sed -e "$sed_first_32_chars"` |
| eval 'condition="${conddep_condition_'"$suffix"'}"' |
| } |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_modules_transitive_closure () |
| { |
| sed_escape_dependency='s|\([/.]\)|\\\1|g' |
| |
| |
| |
| |
| |
| handledmodules= |
| inmodules="$modules" |
| outmodules= |
| fmtc_inc_all_tests="$inc_all_direct_tests" |
| if test "$cond_dependencies" = true; then |
| for module in $inmodules; do |
| func_verify_module |
| if test -n "$module"; then |
| if func_acceptable $module; then |
| func_uncond_add_module $module |
| fi |
| fi |
| done |
| fi |
| while test -n "$inmodules"; do |
| inmodules_this_round="$inmodules" |
| inmodules= |
| for module in $inmodules_this_round; do |
| func_verify_module |
| if test -n "$module"; then |
| if func_acceptable $module; then |
| func_append outmodules " $module" |
| if test "$cond_dependencies" = true; then |
| if func_cond_module_p $module; then |
| conditional=true |
| else |
| conditional=false |
| fi |
| fi |
| deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"` |
| |
| duplicated_deps=`echo "$deps" | LC_ALL=C sort | LC_ALL=C uniq -d` |
| if test -n "$duplicated_deps"; then |
| func_warning "module $module has duplicated dependencies: "`echo $duplicated_deps` |
| fi |
| if $inctests; then |
| testsmodule=`func_get_tests_module $module` |
| if test -n "$testsmodule"; then |
| deps="$deps $testsmodule" |
| fi |
| fi |
| for dep in $deps; do |
| |
| inc=true |
| for word in `func_get_status $dep`; do |
| case "$word" in |
| obsolete) |
| test -n "$incobsolete" \ |
| || inc=false |
| ;; |
| c++-test) |
| test -z "$excl_cxx_tests" \ |
| || inc=false |
| test -n "$fmtc_inc_all_tests" || test -n "$inc_cxx_tests" \ |
| || inc=false |
| ;; |
| longrunning-test) |
| test -z "$excl_longrunning_tests" \ |
| || inc=false |
| test -n "$fmtc_inc_all_tests" || test -n "$inc_longrunning_tests" \ |
| || inc=false |
| ;; |
| privileged-test) |
| test -z "$excl_privileged_tests" \ |
| || inc=false |
| test -n "$fmtc_inc_all_tests" || test -n "$inc_privileged_tests" \ |
| || inc=false |
| ;; |
| unportable-test) |
| test -z "$excl_unportable_tests" \ |
| || inc=false |
| test -n "$fmtc_inc_all_tests" || test -n "$inc_unportable_tests" \ |
| || inc=false |
| ;; |
| *-test) |
| test -n "$fmtc_inc_all_tests" \ |
| || inc=false |
| ;; |
| esac |
| done |
| if $inc && func_acceptable "$dep"; then |
| func_append inmodules " $dep" |
| if test "$cond_dependencies" = true; then |
| escaped_dep=`echo "$dep" | sed -e "$sed_escape_dependency"` |
| sed_extract_condition1='/^ *'"$escaped_dep"' *$/{ |
| s/^.*$/true/p |
| }' |
| sed_extract_condition2='/^ *'"$escaped_dep"' *\[.*] *$/{ |
| s/^ *'"$escaped_dep"' *\[\(.*\)] *$/\1/p |
| }' |
| condition=`func_get_dependencies $module | sed -n -e "$sed_extract_condition1" -e "$sed_extract_condition2"` |
| if test "$condition" = true; then |
| condition= |
| fi |
| if test -n "$condition"; then |
| func_conddep_add_module "$module" "$dep" "$condition" |
| else |
| if $conditional; then |
| func_conddep_add_module "$module" "$dep" true |
| else |
| func_uncond_add_module "$dep" |
| fi |
| fi |
| fi |
| fi |
| done |
| fi |
| fi |
| done |
| handledmodules=`for m in $handledmodules $inmodules_this_round; do echo $m; done | LC_ALL=C sort -u` |
| |
| for m in $inmodules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/queued-modules |
| inmodules=`echo "$handledmodules" | LC_ALL=C $JOIN -v 2 - "$tmp"/queued-modules` |
| fmtc_inc_all_tests="$inc_all_indirect_tests" |
| done |
| modules=`for m in $outmodules; do echo $m; done | LC_ALL=C sort -u` |
| rm -f "$tmp"/queued-modules |
| } |
|
|
| |
| |
| |
| |
| |
| func_show_module_list () |
| { |
| if test -n "$TERM" && test -t 1; then |
| case "$TERM" in |
| xterm*) |
| |
| bold_on=`printf '\033[1m'` |
| bold_off=`printf '\033[0m'` |
| ;; |
| *) |
| |
| if test "$TERM" = sun-color && test "`tput smso`" != "`tput rev`"; then |
| |
| |
| bold_on=`tput smso 2>/dev/null` |
| bold_off=`tput rmso 2>/dev/null` |
| else |
| bold_on=`tput bold 2>/dev/null` |
| bold_off=`tput sgr0 2>/dev/null` |
| fi |
| if test -z "$bold_on" || test -z "$bold_off"; then |
| bold_on= |
| bold_off= |
| fi |
| ;; |
| esac |
| else |
| bold_on= |
| bold_off= |
| fi |
| echo "Module list with included dependencies (indented):" |
| echo "$specified_modules" | sed -e '/^$/d' -e 's/$/| /' > "$tmp"/specified-modules |
| echo "$modules" | sed -e '/^$/d' \ |
| | LC_ALL=C $JOIN -t '|' -a2 "$tmp"/specified-modules - \ |
| | sed -e 's/^\(.*\)|.*/|\1/' -e 's/^/ /' -e 's/^ |\(.*\)$/ '"${bold_on}"'\1'"${bold_off}"'/' |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_modules_transitive_closure_separately () |
| { |
| |
| saved_inctests="$inctests" |
| inctests=false |
| modules="$specified_modules" |
| func_modules_transitive_closure |
| main_modules="$modules" |
| inctests="$saved_inctests" |
| if test $verbose -ge 1; then |
| echo "Main module list:" |
| echo "$main_modules" | sed -e 's/^/ /' |
| fi |
| |
| echo "$final_modules" | LC_ALL=C sort -u > "$tmp"/final-modules |
| testsrelated_modules=`for module in $main_modules; do |
| if test \`func_get_applicability $module\` = main; then |
| echo $module |
| fi |
| done \ |
| | LC_ALL=C sort -u | LC_ALL=C $JOIN -v 2 - "$tmp"/final-modules` |
| |
| |
| have_nontrivial_testsrelated_modules= |
| for module in $testsrelated_modules; do |
| if test `func_get_applicability $module` != all; then |
| have_nontrivial_testsrelated_modules=yes |
| break |
| fi |
| done |
| if test -z "$have_nontrivial_testsrelated_modules"; then |
| testsrelated_modules= |
| fi |
| if test $verbose -ge 1; then |
| echo "Tests-related module list:" |
| echo "$testsrelated_modules" | sed -e 's/^/ /' |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_determine_use_libtests () |
| { |
| use_libtests=false |
| for module in $testsrelated_modules; do |
| func_verify_nontests_module |
| if test -n "$module"; then |
| all_files=`func_get_filelist $module` |
| |
| for f in $all_files; do |
| case $f in |
| lib/*) |
| use_libtests=true |
| break 2 |
| ;; |
| esac |
| done |
| fi |
| done |
| } |
|
|
| |
| |
| func_remove_if_blocks () |
| { |
| sed -n -e '/^if / { |
| :a |
| n |
| s/^endif// |
| tb |
| ba |
| :b |
| } |
| p' |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_modules_add_dummy () |
| { |
| |
| have_lib_SOURCES= |
| for module in $modules; do |
| func_verify_nontests_module |
| if test -n "$module"; then |
| if test "$cond_dependencies" = true && func_cond_module_p $module; then |
| |
| |
| : |
| else |
| |
| for file in `func_get_automake_snippet "$module" | combine_lines | |
| func_remove_if_blocks | |
| sed -n -e 's,^lib_SOURCES[ ]*+=\([^#]*\).*$,\1,p'`; do |
| |
| case "$file" in |
| *.h) ;; |
| *) |
| have_lib_SOURCES=yes |
| break 2 |
| ;; |
| esac |
| done |
| fi |
| fi |
| done |
| |
| if test -z "$have_lib_SOURCES"; then |
| if func_acceptable "dummy"; then |
| func_append modules " dummy" |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_modules_add_dummy_separately () |
| { |
| |
| modules="$main_modules" |
| func_modules_add_dummy |
| main_modules="$modules" |
|
|
| |
| if $use_libtests; then |
| modules="$testsrelated_modules" |
| func_modules_add_dummy |
| testsrelated_modules="$modules" |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_modules_notice () |
| { |
| if test $verbose -ge -1; then |
| for module in $modules; do |
| func_verify_module |
| if test -n "$module"; then |
| msg=`func_get_notice $module` |
| if test -n "$msg"; then |
| echo "Notice from module $module:" |
| echo "$msg" | sed -e 's/^/ /' |
| fi |
| fi |
| done |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_modules_to_filelist () |
| { |
| files= |
| for module in $modules; do |
| func_verify_module |
| if test -n "$module"; then |
| fs=`func_get_filelist $module` |
| func_append files " $fs" |
| fi |
| done |
| files=`for f in $files; do echo $f; done | LC_ALL=C sort -u` |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_modules_to_filelist_separately () |
| { |
| |
| modules="$main_modules" |
| func_modules_to_filelist |
| main_files="$files" |
| |
| modules="$testsrelated_modules" |
| func_modules_to_filelist |
| testsrelated_files=`echo "$files" | sed -e 's,^lib/,tests=lib/,'` |
| |
| sed_remove_empty_lines='/^$/d' |
| files=`{ echo "$main_files"; echo "$testsrelated_files"; } | sed -e "$sed_remove_empty_lines" | LC_ALL=C sort -u` |
| if test $verbose -ge 0; then |
| echo "File list:" |
| sed_prettyprint_files='s,^tests=lib/\(.*\)$,lib/\1 -> tests/\1,' |
| echo "$files" | sed -e "$sed_prettyprint_files" -e 's/^/ /' |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_compute_include_guard_prefix () |
| { |
| if test "$macro_prefix" = gl; then |
| include_guard_prefix='GL' |
| else |
| include_guard_prefix='GL_'`echo "$macro_prefix" | LC_ALL=C tr '[a-z]' '[A-Z]'` |
| fi |
| sed_replace_include_guard_prefix='s/\${gl_include_guard_prefix}/'"${include_guard_prefix}"'/g' |
| module_indicator_prefix="${include_guard_prefix}" |
| } |
|
|
| |
| |
| |
| |
| func_execute_command () |
| { |
| if test $verbose -ge 0; then |
| echo "executing $*" |
| "$@" |
| else |
| |
| |
| "$@" > "$tmp"/cmdout 2>&1 |
| cmdret=$? |
| if test $cmdret = 0; then |
| rm -f "$tmp"/cmdout |
| else |
| echo "executing $*" |
| cat "$tmp"/cmdout 1>&2 |
| rm -f "$tmp"/cmdout |
| (exit $cmdret) |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_dest_tmpfilename () |
| { |
| if $doit; then |
| |
| |
| tmpfile="$destdir/$1.tmp" |
| else |
| |
| |
| tmpfile="$tmp"/`basename "$1"`.tmp |
| fi |
| } |
|
|
| |
| |
| func_is_local_file () |
| { |
| dname=$1 |
| func_remove_suffix dname "/$2" |
| func_path_foreach "$local_gnulib_path" test %dir% = "$dname" |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_should_link () |
| { |
| if test -n "$lcopymode" && func_is_local_file "$lookedup_file" "$f"; then |
| copyaction="$lcopymode" |
| else |
| if test -n "$copymode"; then |
| copyaction="$copymode" |
| else |
| copyaction=copy |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_add_file () |
| { |
| if $doit; then |
| echo "Copying file $g" |
| func_should_link |
| if test "$copyaction" = symlink \ |
| && test -z "$lookedup_tmp" \ |
| && cmp -s "$lookedup_file" "$tmpfile"; then |
| func_symlink_if_changed "$lookedup_file" "$destdir/$g" |
| else |
| if test "$copyaction" = hardlink \ |
| && test -z "$lookedup_tmp" \ |
| && cmp -s "$lookedup_file" "$tmpfile"; then |
| func_hardlink "$lookedup_file" "$destdir/$g" |
| else |
| mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed" |
| fi |
| fi |
| else |
| echo "Copy file $g" |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_update_file () |
| { |
| if cmp -s "$destdir/$g" "$tmpfile"; then |
| : |
| else |
| |
| if $doit; then |
| if test -n "$already_present"; then |
| echo "Updating file $g (backup in ${g}~)" |
| else |
| echo "Replacing file $g (non-gnulib code backed up in ${g}~) !!" |
| fi |
| mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed" |
| func_should_link |
| if test "$copyaction" = symlink \ |
| && test -z "$lookedup_tmp" \ |
| && cmp -s "$lookedup_file" "$tmpfile"; then |
| func_symlink_if_changed "$lookedup_file" "$destdir/$g" |
| else |
| if test "$copyaction" = hardlink \ |
| && test -z "$lookedup_tmp" \ |
| && cmp -s "$lookedup_file" "$tmpfile"; then |
| func_hardlink "$lookedup_file" "$destdir/$g" |
| else |
| mv -f "$tmpfile" "$destdir/${g}" || func_fatal_error "failed" |
| fi |
| fi |
| else |
| if test -n "$already_present"; then |
| echo "Update file $g (backup in ${g}~)" |
| else |
| echo "Replace file $g (non-gnulib code backed up in ${g}~) !!" |
| fi |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_lib_Makefile_am () |
| { |
| |
| |
| if $gnu_make || test -n "$makefile_name"; then |
| assign='+=' |
| else |
| assign='=' |
| fi |
| if test "$libtool" = true; then |
| libext=la |
| objext=lo |
| perhapsLT=LT |
| sed_eliminate_LDFLAGS="$sed_noop" |
| else |
| libext=a |
| objext=o |
| perhapsLT= |
| sed_eliminate_LDFLAGS='/^lib_LDFLAGS[ ]*+=/d' |
| fi |
| |
| |
| if $automake_subdir; then |
| sed_eliminate_NMD='s/^@NMD@//;/^@!NMD@/d' |
| else |
| sed_eliminate_NMD='/^@NMD@/d;s/^@!NMD@//' |
| fi |
| if $for_test; then |
| |
| |
| |
| |
| sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g' |
| else |
| sed_transform_check_PROGRAMS="$sed_noop" |
| fi |
| echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!" |
| if ! $gnu_make; then |
| echo "## Process this file with automake to produce Makefile.in." |
| fi |
| func_emit_copyright_notice |
| if test -n "$actioncmd"; then |
| printf '# Reproduce by:\n%s\n' "$actioncmd" |
| fi |
| echo |
| uses_subdirs= |
| uses_cxx= |
| { |
| for module in $modules; do |
| func_verify_nontests_module |
| if test -n "$module"; then |
| { |
| func_get_automake_snippet_conditional "$module" | |
| LC_ALL=C \ |
| sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \ |
| -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \ |
| -e "$sed_eliminate_LDFLAGS" \ |
| -e "$sed_eliminate_NMD" \ |
| -e "s,@LT@,$perhapsLT,g" \ |
| -e "s,@la@,$libext,g" \ |
| -e "s,@lo@,$objext,g" \ |
| -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \ |
| -e 's,\$(GNULIB_,$('"${module_indicator_prefix}"'_GNULIB_,' \ |
| -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \ |
| -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \ |
| -e "$sed_transform_check_PROGRAMS" \ |
| -e "$sed_replace_include_guard_prefix" |
| if test "$module" = 'alloca'; then |
| echo "${libname}_${libext}_LIBADD += @${perhapsLT}ALLOCA@" |
| echo "${libname}_${libext}_DEPENDENCIES += @${perhapsLT}ALLOCA@" |
| fi |
| } | combine_lines "${libname}_${libext}_SOURCES" > "$tmp"/amsnippet1 |
| { |
| func_get_automake_snippet_unconditional "$module" | |
| LC_ALL=C \ |
| sed -e 's,lib_\([A-Z][A-Z]*\),'"${libname}_${libext}"'_\1,g' \ |
| -e 's,\$(GNULIB_,$('"${module_indicator_prefix}"'_GNULIB_,' |
| } > "$tmp"/amsnippet2 |
| |
| if grep '[^ ]' "$tmp"/amsnippet1 "$tmp"/amsnippet2 > /dev/null ; then |
| echo "## begin gnulib module $module" |
| if $gnu_make; then |
| echo "ifeq (,\$(OMIT_GNULIB_MODULE_$module))" |
| convert_to_gnu_make_1='s/^if \(.*\)/ifneq (,$(\1_CONDITION))/' |
| convert_to_gnu_make_2='s|%reldir%/||g' |
| convert_to_gnu_make_3='s|%reldir%|.|g' |
| fi |
| echo |
| if test "$cond_dependencies" = true; then |
| if func_cond_module_p "$module"; then |
| func_module_conditional_name "$module" |
| if $gnu_make; then |
| echo "ifneq (,\$(${conditional}_CONDITION))" |
| else |
| echo "if $conditional" |
| fi |
| fi |
| fi |
| if $gnu_make; then |
| sed -e "$convert_to_gnu_make_1" \ |
| -e "$convert_to_gnu_make_2" \ |
| -e "$convert_to_gnu_make_3" \ |
| "$tmp"/amsnippet1 |
| else |
| cat "$tmp"/amsnippet1 |
| fi |
| if test "$cond_dependencies" = true; then |
| if func_cond_module_p "$module"; then |
| echo "endif" |
| fi |
| fi |
| if $gnu_make; then |
| sed -e "$convert_to_gnu_make_1" \ |
| -e "$convert_to_gnu_make_2" \ |
| -e "$convert_to_gnu_make_3" \ |
| "$tmp"/amsnippet2 |
| else |
| cat "$tmp"/amsnippet2 |
| fi |
| if $gnu_make; then |
| echo "endif" |
| fi |
| echo "## end gnulib module $module" |
| echo |
| fi |
| rm -f "$tmp"/amsnippet1 "$tmp"/amsnippet2 |
| |
| |
| for f in `func_get_filelist "$module"`; do |
| case $f in |
| lib/*/*.c) |
| uses_subdirs=yes |
| ;; |
| esac |
| case $f in |
| *.C | *.c++ | *.cc | *.cxx | *.cpp) |
| uses_cxx=yes |
| ;; |
| esac |
| done |
| fi |
| done |
| } > "$tmp"/allsnippets |
| if test -z "$makefile_name"; then |
| |
| |
| subdir_options= |
| if test -n "$uses_subdirs"; then |
| subdir_options=' subdir-objects' |
| fi |
| echo "AUTOMAKE_OPTIONS = 1.14 gnits${subdir_options}" |
| fi |
| echo |
| if test -z "$makefile_name"; then |
| echo "SUBDIRS =" |
| echo "TESTS_ENVIRONMENT =" |
| echo "noinst_HEADERS =" |
| echo "noinst_LIBRARIES =" |
| echo "noinst_LTLIBRARIES =" |
| echo "pkgdata_DATA =" |
| echo "EXTRA_DIST =" |
| echo "BUILT_SOURCES =" |
| echo "SUFFIXES =" |
| fi |
| echo "MOSTLYCLEANFILES $assign core *.stackdump" |
| if test -z "$makefile_name"; then |
| echo "MOSTLYCLEANDIRS =" |
| echo "CLEANFILES =" |
| echo "DISTCLEANFILES =" |
| echo "MAINTAINERCLEANFILES =" |
| fi |
| if $gnu_make; then |
| echo "# Start of GNU Make output." |
|
|
| |
| |
| |
| ${AUTOCONF} -t 'AC_SUBST:$1 = @$1@' "$configure_ac" \ |
| >"$tmp"/makeout 2>"$tmp"/makeout2 && |
| LC_ALL=C sort -u "$tmp"/makeout || { |
| echo "== gnulib-tool GNU Make output failed as follows ==" |
| sed 's/^/# stderr: /' "$tmp"/makeout2 |
| } |
| rm -f "$tmp"/makeout "$tmp"/makeout2 |
|
|
| echo "# End of GNU Make output." |
| else |
| echo "# No GNU Make output." |
| fi |
| |
| edit=0 |
| while test $edit != $makefile_am_edits; do |
| edit=`expr $edit + 1` |
| eval dir=\"\$makefile_am_edit${edit}_dir\" |
| eval var=\"\$makefile_am_edit${edit}_var\" |
| eval val=\"\$makefile_am_edit${edit}_val\" |
| eval dotfirst=\"\$makefile_am_edit${edit}_dotfirst\" |
| if test -n "$var"; then |
| if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then |
| if test "${var}" = SUBDIRS && test -n "$dotfirst"; then |
| |
| |
| val=". ${val}" |
| fi |
| echo "${var} += ${val}" |
| eval "makefile_am_edit${edit}_var=" |
| fi |
| fi |
| done |
| if test -n "$witness_c_macro"; then |
| cppflags_part1=" -D$witness_c_macro=1" |
| else |
| cppflags_part1= |
| fi |
| if $for_test; then |
| cppflags_part2=" -DGNULIB_STRICT_CHECKING=1" |
| else |
| cppflags_part2= |
| fi |
| if test -z "$makefile_name"; then |
| echo |
| echo "AM_CPPFLAGS =$cppflags_part1$cppflags_part2" |
| echo "AM_CFLAGS =" |
| else |
| if test -n "$cppflags_part1$cppflags_part2"; then |
| echo |
| echo "AM_CPPFLAGS +=$cppflags_part1$cppflags_part2" |
| fi |
| fi |
| echo |
| if LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$tmp"/allsnippets > /dev/null \ |
| || { test -n "$makefile_name" \ |
| && test -f "$sourcebase/Makefile.am" \ |
| && LC_ALL=C grep "^[a-zA-Z0-9_]*_${perhapsLT}LIBRARIES *+\{0,1\}= *$libname\\.$libext\$" "$sourcebase/Makefile.am" > /dev/null; \ |
| }; then |
| |
| |
| |
| : |
| else |
| |
| echo "noinst_${perhapsLT}LIBRARIES += $libname.$libext" |
| fi |
| echo |
| echo "${libname}_${libext}_SOURCES =" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if ! $for_test; then |
| echo "${libname}_${libext}_CFLAGS = \$(AM_CFLAGS) \$(GL_CFLAG_GNULIB_WARNINGS) \$(GL_CFLAG_ALLOW_WARNINGS)" |
| if test -n "$uses_cxx"; then |
| echo "${libname}_${libext}_CXXFLAGS = \$(AM_CXXFLAGS) \$(GL_CXXFLAG_GNULIB_WARNINGS) \$(GL_CXXFLAG_ALLOW_WARNINGS)" |
| fi |
| fi |
| |
| |
| if ! $for_test; then |
| |
| |
| |
| echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${libname}_${perhapsLT}LIBOBJS)" |
| echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${libname}_${perhapsLT}LIBOBJS)" |
| else |
| echo "${libname}_${libext}_LIBADD = \$(${macro_prefix}_${perhapsLT}LIBOBJS)" |
| echo "${libname}_${libext}_DEPENDENCIES = \$(${macro_prefix}_${perhapsLT}LIBOBJS)" |
| fi |
| echo "EXTRA_${libname}_${libext}_SOURCES =" |
| if test "$libtool" = true; then |
| echo "${libname}_${libext}_LDFLAGS = \$(AM_LDFLAGS)" |
| echo "${libname}_${libext}_LDFLAGS += -no-undefined" |
| |
| |
| for module in $modules; do |
| func_verify_nontests_module |
| if test -n "$module"; then |
| func_get_link_directive "$module" |
| fi |
| done \ |
| | LC_ALL=C sed -e '/^$/d' -e 's/ when linking with libtool.*//' \ |
| | LC_ALL=C sort -u \ |
| | LC_ALL=C sed -e 's/^/'"${libname}_${libext}"'_LDFLAGS += /' |
| fi |
| echo |
| if test -n "$pobase"; then |
| echo "AM_CPPFLAGS += -DDEFAULT_TEXT_DOMAIN=\\\"${po_domain}-gnulib\\\"" |
| echo |
| fi |
| cat "$tmp"/allsnippets \ |
| | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g' |
| echo |
| echo "mostlyclean-local: mostlyclean-generic" |
| echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\" |
| echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\" |
| echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\" |
| echo " fi; \\" |
| echo " done; \\" |
| echo " :" |
| |
| |
| echo "distclean-local: distclean-gnulib-libobjs" |
| echo "distclean-gnulib-libobjs:" |
| if ! $for_test; then |
| |
| |
| |
| echo " -rm -f @${macro_prefix}_${libname}_LIBOBJDEPS@" |
| else |
| echo " -rm -f @${macro_prefix}_LIBOBJDEPS@" |
| fi |
| |
| echo "maintainer-clean-local: distclean-gnulib-libobjs" |
| rm -f "$tmp"/allsnippets |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_po_Makevars () |
| { |
| echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!" |
| func_emit_copyright_notice |
| echo |
| echo "# Usually the message domain is the same as the package name." |
| echo "# But here it has a '-gnulib' suffix." |
| echo "DOMAIN = ${po_domain}-gnulib" |
| echo |
| echo "# These two variables depend on the location of this directory." |
| echo "subdir = ${pobase}" |
| echo "top_builddir = "`echo "$pobase" | sed -e 's,//*,/,g' -e 's,[^/][^/]*,..,g'` |
| echo |
| cat <<\EOF |
| |
| XGETTEXT_OPTIONS = \ |
| --keyword=_ --flag=_:1:pass-c-format \ |
| --keyword=N_ --flag=N_:1:pass-c-format \ |
| --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."' \ |
| --keyword='proper_name_lite:1,"This is a proper name. See the gettext manual, section Names."' \ |
| --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."' \ |
| --flag=error:3:c-format --flag=error_at_line:5:c-format |
|
|
| |
| |
| COPYRIGHT_HOLDER = Free Software Foundation, Inc. |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| MSGID_BUGS_ADDRESS = bug-gnulib@gnu.org |
|
|
| |
| |
| EXTRA_LOCALE_CATEGORIES = |
|
|
| |
| |
| |
| |
| USE_MSGCTXT = no |
| EOF |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_emit_po_POTFILES_in () |
| { |
| echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!" |
| func_emit_copyright_notice |
| echo |
| echo "# List of files which contain translatable strings." |
| echo "$files" | sed -n -e "s,^lib/,$sourcebase/,p" |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_tests_Makefile_am () |
| { |
| witness_macro="$1" |
| if test "$libtool" = true; then |
| libext=la |
| objext=lo |
| perhapsLT=LT |
| sed_eliminate_LDFLAGS="$sed_noop" |
| else |
| libext=a |
| objext=o |
| perhapsLT= |
| sed_eliminate_LDFLAGS='/^lib_LDFLAGS[ ]*+=/d' |
| fi |
| |
| |
| sed_eliminate_NMD='/^@NMD@/d;s/^@!NMD@//' |
| if $for_test; then |
| |
| |
| |
| |
| sed_transform_check_PROGRAMS='s,check_PROGRAMS,noinst_PROGRAMS,g' |
| else |
| sed_transform_check_PROGRAMS="$sed_noop" |
| fi |
| testsbase_inverse=`echo "$testsbase" | sed -e 's,/$,,' | sed -e 's,[^/][^/]*,..,g'` |
| echo "## DO NOT EDIT! GENERATED AUTOMATICALLY!" |
| echo "## Process this file with automake to produce Makefile.in." |
| func_emit_copyright_notice |
| echo |
| uses_subdirs= |
| uses_cxx= |
| { |
| for module in $modules; do |
| if $for_test && ! $single_configure; then |
| if `func_repeat_module_in_tests`; then |
| func_verify_module |
| else |
| func_verify_tests_module |
| fi |
| else |
| func_verify_module |
| fi |
| if test -n "$module"; then |
| { |
| func_get_automake_snippet_conditional "$module" | |
| LC_ALL=C \ |
| sed -e 's,lib_LIBRARIES,lib%_LIBRARIES,g' \ |
| -e 's,lib_LTLIBRARIES,lib%_LTLIBRARIES,g' \ |
| -e "$sed_eliminate_LDFLAGS" \ |
| -e "$sed_eliminate_NMD" \ |
| -e "s,@LT@,$perhapsLT,g" \ |
| -e "s,@la@,$libext,g" \ |
| -e "s,@lo@,$objext,g" \ |
| -e 's,lib_\([A-Z][A-Z]*\),libtests_a_\1,g' \ |
| -e 's,\$(GNULIB_,$('"${module_indicator_prefix}"'_GNULIB_,' \ |
| -e 's,lib%_LIBRARIES,lib_LIBRARIES,g' \ |
| -e 's,lib%_LTLIBRARIES,lib_LTLIBRARIES,g' \ |
| -e "$sed_transform_check_PROGRAMS" \ |
| -e "$sed_replace_include_guard_prefix" |
| if $use_libtests && test "$module" = 'alloca'; then |
| echo "libtests_a_LIBADD += @ALLOCA@" |
| echo "libtests_a_DEPENDENCIES += @ALLOCA@" |
| fi |
| } | combine_lines "libtests_a_SOURCES" > "$tmp"/amsnippet1 |
| { |
| func_get_automake_snippet_unconditional "$module" | |
| LC_ALL=C \ |
| sed -e 's,lib_\([A-Z][A-Z]*\),libtests_a_\1,g' \ |
| -e 's,\$(GNULIB_,$('"${module_indicator_prefix}"'_GNULIB_,' |
| } > "$tmp"/amsnippet2 |
| |
| if grep '[^ ]' "$tmp"/amsnippet1 "$tmp"/amsnippet2 > /dev/null ; then |
| |
| ofd=3 |
| for word in `func_get_status "$module"`; do |
| if test "$word" = 'longrunning-test'; then |
| ofd=4 |
| break |
| fi |
| done |
| { echo "## begin gnulib module $module" |
| if $gnu_make; then |
| echo "ifeq (,\$(OMIT_GNULIB_MODULE_$module))" |
| convert_to_gnu_make_1='s/^if \(.*\)/ifneq (,$(\1_CONDITION))/' |
| convert_to_gnu_make_2='s|%reldir%/||g' |
| convert_to_gnu_make_3='s|%reldir%|.|g' |
| fi |
| echo |
| if test "$cond_dependencies" = true; then |
| if func_cond_module_p "$module"; then |
| func_module_conditional_name "$module" |
| if $gnu_make; then |
| echo "ifneq (,\$(${conditional}_CONDITION))" |
| else |
| echo "if $conditional" |
| fi |
| fi |
| fi |
| if $gnu_make; then |
| sed -e "$convert_to_gnu_make_1" \ |
| -e "$convert_to_gnu_make_2" \ |
| -e "$convert_to_gnu_make_3" \ |
| "$tmp"/amsnippet1 |
| else |
| cat "$tmp"/amsnippet1 |
| fi |
| if test "$cond_dependencies" = true; then |
| if func_cond_module_p "$module"; then |
| echo "endif" |
| fi |
| fi |
| if $gnu_make; then |
| sed -e "$convert_to_gnu_make_1" \ |
| -e "$convert_to_gnu_make_2" \ |
| -e "$convert_to_gnu_make_3" \ |
| "$tmp"/amsnippet2 |
| else |
| cat "$tmp"/amsnippet2 |
| fi |
| if $gnu_make; then |
| echo "endif" |
| fi |
| echo "## end gnulib module $module" |
| echo |
| } >&$ofd |
| fi |
| rm -f "$tmp"/amsnippet1 "$tmp"/amsnippet2 |
| |
| |
| for f in `func_get_filelist "$module"`; do |
| case $f in |
| lib/*/*.c | tests/*/*.c) |
| uses_subdirs=yes |
| ;; |
| esac |
| case $f in |
| *.C | *.c++ | *.cc | *.cxx | *.cpp) |
| uses_cxx=yes |
| ;; |
| esac |
| done |
| fi |
| done |
| } 3> "$tmp"/main_snippets 4> "$tmp"/longrunning_snippets |
| |
| |
| |
| subdir_options= |
| if test -n "$uses_subdirs"; then |
| subdir_options=' subdir-objects' |
| fi |
| echo "AUTOMAKE_OPTIONS = 1.14 foreign${subdir_options}" |
| echo |
| if $for_test && ! $single_configure; then |
| echo "ACLOCAL_AMFLAGS = -I ${testsbase_inverse}/${m4base}" |
| echo |
| fi |
| |
| |
| |
| echo "SUBDIRS = ." |
| echo "TESTS =" |
| echo "XFAIL_TESTS =" |
| echo "TESTS_ENVIRONMENT =" |
| echo "noinst_PROGRAMS =" |
| if ! $for_test; then |
| echo "check_PROGRAMS =" |
| fi |
| echo "EXTRA_PROGRAMS =" |
| echo "noinst_HEADERS =" |
| echo "noinst_LIBRARIES =" |
| if $use_libtests; then |
| if $for_test; then |
| echo "noinst_LIBRARIES += libtests.a" |
| else |
| echo "check_LIBRARIES = libtests.a" |
| fi |
| fi |
| echo "pkgdata_DATA =" |
| echo "EXTRA_DIST =" |
| echo "BUILT_SOURCES =" |
| echo "SUFFIXES =" |
| echo "MOSTLYCLEANFILES = core *.stackdump" |
| echo "MOSTLYCLEANDIRS =" |
| echo "CLEANFILES =" |
| echo "DISTCLEANFILES =" |
| echo "MAINTAINERCLEANFILES =" |
| |
| edit=0 |
| while test $edit != $makefile_am_edits; do |
| edit=`expr $edit + 1` |
| eval dir=\"\$makefile_am_edit${edit}_dir\" |
| eval var=\"\$makefile_am_edit${edit}_var\" |
| eval val=\"\$makefile_am_edit${edit}_val\" |
| eval dotfirst=\"\$makefile_am_edit${edit}_dotfirst\" |
| if test -n "$var"; then |
| if test "${dir}Makefile.am" = "$destfile" || test "./${dir}Makefile.am" = "$destfile"; then |
| if test "${var}" = SUBDIRS && test -n "$dotfirst"; then |
| |
| |
| : |
| fi |
| echo "${var} += ${val}" |
| eval "makefile_am_edit${edit}_var=" |
| fi |
| fi |
| done |
| echo |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if ! $for_test && { test -n "$tests_makefile_name" || test -n "$makefile_name"; }; then |
| |
| am_set_or_augment='+=' |
| else |
| |
| am_set_or_augment='=' |
| fi |
| cflags_for_gnulib_code= |
| if ! $for_test; then |
| |
| cflags_for_gnulib_code=" \$(GL_CFLAG_GNULIB_WARNINGS)" |
| fi |
| |
| echo "AM_CFLAGS ${am_set_or_augment} @GL_CFLAG_ALLOW_WARNINGS@${cflags_for_gnulib_code}" |
| if test -n "$uses_cxx"; then |
| echo "AM_CXXFLAGS ${am_set_or_augment} @GL_CXXFLAG_ALLOW_WARNINGS@" |
| fi |
| echo |
| |
| |
| |
| |
| |
| echo "CFLAGS = @GL_CFLAG_ALLOW_WARNINGS@${cflags_for_gnulib_code} @CFLAGS@" |
| if test -n "$uses_cxx"; then |
| echo "CXXFLAGS = @GL_CXXFLAG_ALLOW_WARNINGS@ @CXXFLAGS@" |
| fi |
| echo |
| echo "AM_CPPFLAGS = \\" |
| if $for_test; then |
| echo " -DGNULIB_STRICT_CHECKING=1 \\" |
| fi |
| if test -n "$witness_c_macro"; then |
| echo " -D$witness_c_macro=1 \\" |
| fi |
| if test -n "${witness_macro}"; then |
| echo " -D@${witness_macro}@=1 \\" |
| fi |
| echo " -I. -I\$(srcdir) \\" |
| echo " -I${testsbase_inverse} -I\$(srcdir)/${testsbase_inverse} \\" |
| echo " -I${testsbase_inverse}/${sourcebase-lib} -I\$(srcdir)/${testsbase_inverse}/${sourcebase-lib}" |
| echo |
| if $use_libtests; then |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| echo "LDADD = libtests.a ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext} libtests.a ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext} libtests.a \$(LIBTESTS_LIBDEPS)" |
| else |
| echo "LDADD = ${testsbase_inverse}/${sourcebase-lib}/${libname}.${libext}" |
| fi |
| echo |
| if $use_libtests; then |
| echo "libtests_a_SOURCES =" |
| |
| |
| echo "libtests_a_LIBADD = \$(${macro_prefix}tests_LIBOBJS)" |
| echo "libtests_a_DEPENDENCIES = \$(${macro_prefix}tests_LIBOBJS)" |
| echo "EXTRA_libtests_a_SOURCES =" |
| |
| echo "AM_LIBTOOLFLAGS = --preserve-dup-deps" |
| echo |
| fi |
| |
| |
| |
| echo "TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='\$(srcdir)'" |
| |
| echo "IGNORE_SKIPPED_LOGS = 1" |
| echo |
| cat "$tmp"/main_snippets "$tmp"/longrunning_snippets \ |
| | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g' |
| |
| echo "all: all-notice" |
| echo "all-notice:" |
| echo " @echo '## ---------------------------------------------------- ##'" |
| echo " @echo '## ------------------- Gnulib tests ------------------- ##'" |
| echo " @echo '## You can ignore compiler warnings in this directory. ##'" |
| echo " @echo '## ---------------------------------------------------- ##'" |
| echo |
| |
| echo "check-am: check-notice" |
| echo "check-notice:" |
| echo " @echo '## ---------------------------------------------------------------------- ##'" |
| echo " @echo '## ---------------------------- Gnulib tests ---------------------------- ##'" |
| echo " @echo '## Please report test failures in this directory to <bug-gnulib@gnu.org>. ##'" |
| echo " @echo '## ---------------------------------------------------------------------- ##'" |
| echo |
| echo "# Clean up after Solaris cc." |
| echo "clean-local:" |
| echo " rm -rf SunWS_cache" |
| echo |
| echo "mostlyclean-local: mostlyclean-generic" |
| echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\" |
| echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\" |
| echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\" |
| echo " fi; \\" |
| echo " done; \\" |
| echo " :" |
| rm -f "$tmp"/main_snippets "$tmp"/longrunning_snippets |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_emit_initmacro_start () |
| { |
| macro_prefix_arg="$1" |
| |
| |
| |
| |
| |
| |
| |
| |
| echo " m4_pushdef([AC_LIBOBJ], m4_defn([${macro_prefix_arg}_LIBOBJ]))" |
| echo " m4_pushdef([AC_REPLACE_FUNCS], m4_defn([${macro_prefix_arg}_REPLACE_FUNCS]))" |
| |
| |
| |
| |
| |
| echo " m4_pushdef([AC_LIBSOURCES], m4_defn([${macro_prefix_arg}_LIBSOURCES]))" |
| |
| |
| |
| |
| |
| |
| echo " m4_pushdef([${macro_prefix_arg}_LIBSOURCES_LIST], [])" |
| echo " m4_pushdef([${macro_prefix_arg}_LIBSOURCES_DIR], [])" |
| |
| echo " m4_pushdef([GL_MACRO_PREFIX], [${macro_prefix_arg}])" |
| |
| echo " m4_pushdef([GL_MODULE_INDICATOR_PREFIX], [${module_indicator_prefix}])" |
| echo " gl_COMMON" |
| if "$2"; then |
| echo " AC_REQUIRE([gl_CC_ALLOW_WARNINGS])" |
| echo " AC_REQUIRE([gl_CXX_ALLOW_WARNINGS])" |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_initmacro_end () |
| { |
| macro_prefix_arg="$1" |
| |
| |
| |
| |
| echo " m4_ifval(${macro_prefix_arg}_LIBSOURCES_LIST, [" |
| echo " m4_syscmd([test ! -d ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[ ||" |
| echo " for gl_file in ]${macro_prefix_arg}_LIBSOURCES_LIST[ ; do" |
| echo " if test ! -r ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file ; then" |
| echo " echo \"missing file ]m4_defn([${macro_prefix_arg}_LIBSOURCES_DIR])[/\$gl_file\" >&2" |
| echo " exit 1" |
| echo " fi" |
| echo " done])dnl" |
| echo " m4_if(m4_sysval, [0], []," |
| echo " [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])" |
| echo " ])" |
| echo " m4_popdef([GL_MODULE_INDICATOR_PREFIX])" |
| echo " m4_popdef([GL_MACRO_PREFIX])" |
| echo " m4_popdef([${macro_prefix_arg}_LIBSOURCES_DIR])" |
| echo " m4_popdef([${macro_prefix_arg}_LIBSOURCES_LIST])" |
| echo " m4_popdef([AC_LIBSOURCES])" |
| echo " m4_popdef([AC_REPLACE_FUNCS])" |
| echo " m4_popdef([AC_LIBOBJ])" |
| echo " AC_CONFIG_COMMANDS_PRE([" |
| echo " ${macro_prefix_arg}_libobjs=" |
| echo " ${macro_prefix_arg}_ltlibobjs=" |
| echo " ${macro_prefix_arg}_libobjdeps=" |
| echo " ${macro_prefix_arg}_${libname}_libobjs=" |
| echo " ${macro_prefix_arg}_${libname}_ltlibobjs=" |
| echo " ${macro_prefix_arg}_${libname}_libobjdeps=" |
| echo " if test -n \"\$${macro_prefix_arg}_LIBOBJS\"; then" |
| echo " # Remove the extension." |
| echo "changequote(,)dnl" |
| echo " sed_drop_objext='s/\\.o\$//;s/\\.obj\$//'" |
| echo " sed_dirname1='s,//*,/,g'" |
| echo " sed_dirname2='s,\\(.\\)/\$,\\1,'" |
| echo " sed_dirname3='s,[^/]*\$,,'" |
| echo " sed_basename1='s,.*/,,'" |
| echo "changequote([, ])dnl" |
| if $automake_subdir && ! "$2" && test -n "$sourcebase" && test "$sourcebase" != '.'; then |
| subdir="$sourcebase/" |
| elif $automake_subdir_tests && "$2" && test -n "$testsbase" && test "$testsbase" != '.'; then |
| subdir="$testsbase/" |
| else |
| subdir= |
| fi |
| echo " for i in \`for i in \$${macro_prefix_arg}_LIBOBJS; do echo \"\$i\"; done | sed -e \"\$sed_drop_objext\" | sort | uniq\`; do" |
| echo " ${macro_prefix_arg}_libobjs=\"\$${macro_prefix_arg}_libobjs ${subdir}\$i.\$ac_objext\"" |
| echo " ${macro_prefix_arg}_ltlibobjs=\"\$${macro_prefix_arg}_ltlibobjs ${subdir}\$i.lo\"" |
| echo " i_dir=\`echo \"\$i\" | sed -e \"\$sed_dirname1\" -e \"\$sed_dirname2\" -e \"\$sed_dirname3\"\`" |
| echo " i_base=\`echo \"\$i\" | sed -e \"\$sed_basename1\"\`" |
| echo " ${macro_prefix_arg}_${libname}_libobjs=\"\$${macro_prefix_arg}_${libname}_libobjs ${subdir}\$i_dir\"\"${libname}_a-\$i_base.\$ac_objext\"" |
| echo " ${macro_prefix_arg}_${libname}_ltlibobjs=\"\$${macro_prefix_arg}_${libname}_ltlibobjs ${subdir}\$i_dir\"\"${libname}_la-\$i_base.lo\"" |
| if test "$libtool" = true; then |
| echo " ${macro_prefix_arg}_libobjdeps=\"\$${macro_prefix_arg}_libobjdeps ${subdir}\$i_dir\\\$(DEPDIR)/\$i_base.Plo\"" |
| echo " ${macro_prefix_arg}_${libname}_libobjdeps=\"\$${macro_prefix_arg}_${libname}_libobjdeps ${subdir}\$i_dir\\\$(DEPDIR)/${libname}_la-\$i_base.Plo\"" |
| else |
| echo " ${macro_prefix_arg}_libobjdeps=\"\$${macro_prefix_arg}_libobjdeps ${subdir}\$i_dir\\\$(DEPDIR)/\$i_base.Po\"" |
| echo " ${macro_prefix_arg}_${libname}_libobjdeps=\"\$${macro_prefix_arg}_${libname}_libobjdeps ${subdir}\$i_dir\\\$(DEPDIR)/${libname}_a-\$i_base.Po\"" |
| fi |
| echo " done" |
| echo " fi" |
| echo " AC_SUBST([${macro_prefix_arg}_LIBOBJS], [\$${macro_prefix_arg}_libobjs])" |
| echo " AC_SUBST([${macro_prefix_arg}_LTLIBOBJS], [\$${macro_prefix_arg}_ltlibobjs])" |
| echo " AC_SUBST([${macro_prefix_arg}_LIBOBJDEPS], [\$${macro_prefix_arg}_libobjdeps])" |
| echo " AC_SUBST([${macro_prefix_arg}_${libname}_LIBOBJS], [\$${macro_prefix_arg}_${libname}_libobjs])" |
| echo " AC_SUBST([${macro_prefix_arg}_${libname}_LTLIBOBJS], [\$${macro_prefix_arg}_${libname}_ltlibobjs])" |
| echo " AC_SUBST([${macro_prefix_arg}_${libname}_LIBOBJDEPS], [\$${macro_prefix_arg}_${libname}_libobjdeps])" |
| echo " ])" |
| } |
|
|
| |
| |
| |
| |
| func_emit_initmacro_done () |
| { |
| macro_prefix_arg="$1" |
| sourcebase_arg="$2" |
| echo |
| echo "# Like AC_LIBOBJ, except that the module name goes" |
| echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS." |
| echo "AC_DEFUN([${macro_prefix_arg}_LIBOBJ], [" |
| echo " AS_LITERAL_IF([\$1], [${macro_prefix_arg}_LIBSOURCES([\$1.c])])dnl" |
| echo " ${macro_prefix_arg}_LIBOBJS=\"\$${macro_prefix_arg}_LIBOBJS \$1.\$ac_objext\"" |
| echo "])" |
| echo |
| echo "# Like AC_REPLACE_FUNCS, except that the module name goes" |
| echo "# into ${macro_prefix_arg}_LIBOBJS instead of into LIBOBJS." |
| echo "AC_DEFUN([${macro_prefix_arg}_REPLACE_FUNCS], [" |
| echo " m4_foreach_w([gl_NAME], [\$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl" |
| echo " AC_CHECK_FUNCS([\$1], , [${macro_prefix_arg}_LIBOBJ(\$ac_func)])" |
| echo "])" |
| echo |
| echo "# Like AC_LIBSOURCES, except the directory where the source file is" |
| echo "# expected is derived from the gnulib-tool parameterization," |
| echo "# and alloca is special cased (for the alloca-opt module)." |
| echo "# We could also entirely rely on EXTRA_lib..._SOURCES." |
| echo "AC_DEFUN([${macro_prefix_arg}_LIBSOURCES], [" |
| echo " m4_foreach([_gl_NAME], [\$1], [" |
| echo " m4_if(_gl_NAME, [alloca.c], [], [" |
| echo " m4_define([${macro_prefix_arg}_LIBSOURCES_DIR], [$sourcebase_arg])" |
| echo " m4_append([${macro_prefix_arg}_LIBSOURCES_LIST], _gl_NAME, [ ])" |
| echo " ])" |
| echo " ])" |
| echo "])" |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_emit_shellvars_init () |
| { |
| |
| echo " gl_source_base='$2'" |
| |
| if $1 && $automake_subdir_tests; then |
| |
| |
| if test "$2" = "$testsbase"; then |
| echo " gl_source_base_prefix='\$(top_build_prefix)$sourcebase/'" |
| else |
| echo " gl_source_base_prefix='\$(top_build_prefix)$2/'" |
| fi |
| elif ! $1 && $automake_subdir; then |
| echo " gl_source_base_prefix='\$(top_build_prefix)$2/'" |
| else |
| echo " gl_source_base_prefix=" |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_autoconf_snippet () |
| { |
| indentation="$1" |
| if { case $module in |
| gnumakefile | maintainer-makefile) |
| |
| $toplevel ;; |
| *) |
| true ;; |
| esac |
| }; then |
| func_get_autoconf_snippet "$module" \ |
| | sed -e '/^$/d;' -e "s/^/$indentation/" \ |
| -e "$sed_replace_build_aux" \ |
| -e "$sed_replace_include_guard_prefix" \ |
| | { if $disable_libtool; then |
| sed -e 's/\$gl_cond_libtool/false/g' \ |
| -e 's/gl_libdeps/gltests_libdeps/g' \ |
| -e 's/gl_ltlibdeps/gltests_ltlibdeps/g' |
| else |
| cat |
| fi |
| } \ |
| | { if $disable_gettext; then |
| sed -e 's/AM_GNU_GETTEXT(\[external])/dnl you must add AM_GNU_GETTEXT([external]) or similar to configure.ac./' |
| else |
| |
| |
| sed -e 's/^ *AM_GNU_GETTEXT_VERSION/AM_GNU_GETTEXT_VERSION/' |
| fi |
| } |
| if test "$module" = 'alloca' && test "$libtool" = true && ! $disable_libtool; then |
| echo 'changequote(,)dnl' |
| echo 'LTALLOCA=`echo "$ALLOCA" | sed -e '"'"'s/\.[^.]* /.lo /g;s/\.[^.]*$/.lo/'"'"'`' |
| echo 'changequote([, ])dnl' |
| echo 'AC_SUBST([LTALLOCA])' |
| fi |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_emit_autoconf_snippets () |
| { |
| referenceable_modules="$2" |
| verifier="$3" |
| toplevel="$4" |
| disable_libtool="$5" |
| disable_gettext="$6" |
| if test "$cond_dependencies" = true; then |
| for m in $referenceable_modules; do echo $m; done | LC_ALL=C sort -u > "$tmp"/modules |
| |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| if func_cond_module_p "$module"; then |
| : |
| else |
| func_emit_autoconf_snippet " " |
| fi |
| fi |
| done |
| |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| if func_cond_module_p "$module"; then |
| func_module_shellvar_name "$module" |
| echo " $shellvar=false" |
| fi |
| fi |
| done |
| |
| |
| |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| if func_cond_module_p "$module"; then |
| func_module_shellfunc_name "$module" |
| func_module_shellvar_name "$module" |
| echo " $shellfunc ()" |
| echo ' {' |
| echo " if \$$shellvar; then :; else" |
| func_emit_autoconf_snippet " " |
| echo " $shellvar=true" |
| deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"` |
| |
| deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C $JOIN - "$tmp"/modules` |
| for dep in $deps; do |
| if func_cond_module_p "$dep"; then |
| func_module_shellfunc_name "$dep" |
| func_cond_module_condition "$module" "$dep" |
| if test "$condition" != true; then |
| echo " if $condition; then" |
| echo " $shellfunc" |
| echo ' fi' |
| else |
| echo " $shellfunc" |
| fi |
| else |
| |
| |
| : |
| fi |
| done |
| echo ' fi' |
| echo ' }' |
| fi |
| fi |
| done |
| |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| if func_cond_module_p "$module"; then |
| : |
| else |
| deps=`func_get_dependencies $module | sed -e "$sed_dependencies_without_conditions"` |
| |
| deps=`for m in $deps; do echo $m; done | LC_ALL=C sort -u | LC_ALL=C $JOIN - "$tmp"/modules` |
| for dep in $deps; do |
| if func_cond_module_p "$dep"; then |
| func_module_shellfunc_name "$dep" |
| func_cond_module_condition "$module" "$dep" |
| if test "$condition" != true; then |
| echo " if $condition; then" |
| echo " $shellfunc" |
| echo ' fi' |
| else |
| echo " $shellfunc" |
| fi |
| else |
| |
| |
| : |
| fi |
| done |
| fi |
| fi |
| done |
| |
| echo " m4_pattern_allow([^${macro_prefix}_GNULIB_ENABLED_])" |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| if func_cond_module_p "$module"; then |
| func_module_conditional_name "$module" |
| func_module_shellvar_name "$module" |
| echo " AM_CONDITIONAL([$conditional], [\$$shellvar])" |
| fi |
| fi |
| done |
| else |
| |
| for module in $1; do |
| eval $verifier |
| if test -n "$module"; then |
| func_emit_autoconf_snippet " " |
| fi |
| done |
| fi |
| } |
|
|
| |
| |
| func_emit_pre_early_macros () |
| { |
| echo |
| echo "${2}# Pre-early section." |
| if $1; then |
| _pre_early_snippet="echo \"${2}AC_REQUIRE([\$_pre_early_macro])\"" |
| else |
| _pre_early_snippet="echo \"${2}\$_pre_early_macro\"" |
| fi |
|
|
| |
| |
| _pre_early_macro="gl_USE_SYSTEM_EXTENSIONS" |
| case "${nl}${3}${nl}" in |
| *${nl}extensions${nl}*) eval "$_pre_early_snippet" ;; |
| esac |
|
|
| _pre_early_macro="gl_PROG_AR_RANLIB" |
| eval "$_pre_early_snippet" |
| echo |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func_reconstruct_cached_dir () |
| { |
| cached_dir=$1 |
| if test -n "$cached_dir"; then |
| case "$cached_dir" in |
| /*) |
| func_path_append local_gnulib_path "$cached_dir" ;; |
| *) |
| case "$destdir" in |
| /*) |
| |
| func_path_append local_gnulib_path "$destdir/$cached_dir" ;; |
| *) |
| func_relconcat "$destdir" "$cached_dir" |
| func_path_append local_gnulib_path "$relconcat" ;; |
| esac ;; |
| esac |
| fi |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| func_reconstruct_cached_local_gnulib_path () |
| { |
| func_path_foreach "$cached_local_gnulib_path" func_reconstruct_cached_dir %dir% |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_import () |
| { |
| |
| |
| |
| cached_local_gnulib_path= |
| cached_specified_modules= |
| cached_incobsolete= |
| cached_inc_cxx_tests= |
| cached_inc_longrunning_tests= |
| cached_inc_privileged_tests= |
| cached_inc_unportable_tests= |
| cached_inc_all_tests= |
| cached_avoidlist= |
| cached_sourcebase= |
| cached_m4base= |
| cached_pobase= |
| cached_docbase= |
| cached_testsbase= |
| cached_inctests= |
| cached_libname= |
| cached_lgpl= |
| cached_makefile_name= |
| cached_tests_makefile_name= |
| cached_automake_subdir= |
| cached_cond_dependencies= |
| cached_libtool= |
| cached_macro_prefix= |
| cached_po_domain= |
| cached_witness_c_macro= |
| cached_vc_files= |
| cached_files= |
| if test -f "$destdir"/$m4base/gnulib-cache.m4; then |
| cached_libtool=false |
| my_sed_traces=' |
| s,#.*$,, |
| s,^dnl .*$,, |
| s, dnl .*$,, |
| /gl_LOCAL_DIR(/ { |
| s,^.*gl_LOCAL_DIR([[ ]*\([^]"$`\\)]*\).*$,cached_local_gnulib_path="\1",p |
| } |
| /gl_MODULES(/ { |
| ta |
| :a |
| s/)/)/ |
| tb |
| N |
| ba |
| :b |
| s,^.*gl_MODULES([[ ]*\([^]"$`\\)]*\).*$,cached_specified_modules="\1",p |
| } |
| /gl_WITH_OBSOLETE/ { |
| s,^.*$,cached_incobsolete=true,p |
| } |
| /gl_WITH_CXX_TESTS/ { |
| s,^.*$,cached_inc_cxx_tests=true,p |
| } |
| /gl_WITH_LONGRUNNING_TESTS/ { |
| s,^.*$,cached_inc_longrunning_tests=true,p |
| } |
| /gl_WITH_PRIVILEGED_TESTS/ { |
| s,^.*$,cached_inc_privileged_tests=true,p |
| } |
| /gl_WITH_UNPORTABLE_TESTS/ { |
| s,^.*$,cached_inc_unportable_tests=true,p |
| } |
| /gl_WITH_ALL_TESTS/ { |
| s,^.*$,cached_inc_all_tests=true,p |
| } |
| /gl_AVOID(/ { |
| s,^.*gl_AVOID([[ ]*\([^]"$`\\)]*\).*$,cached_avoidlist="\1",p |
| } |
| /gl_SOURCE_BASE(/ { |
| s,^.*gl_SOURCE_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_sourcebase="\1",p |
| } |
| /gl_M4_BASE(/ { |
| s,^.*gl_M4_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_m4base="\1",p |
| } |
| /gl_PO_BASE(/ { |
| s,^.*gl_PO_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_pobase="\1",p |
| } |
| /gl_DOC_BASE(/ { |
| s,^.*gl_DOC_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_docbase="\1",p |
| } |
| /gl_TESTS_BASE(/ { |
| s,^.*gl_TESTS_BASE([[ ]*\([^]"$`\\)]*\).*$,cached_testsbase="\1",p |
| } |
| /gl_WITH_TESTS/ { |
| s,^.*$,cached_inctests=true,p |
| } |
| /gl_LIB(/ { |
| s,^.*gl_LIB([[ ]*\([^]"$`\\)]*\).*$,cached_libname="\1",p |
| } |
| /gl_LGPL(/ { |
| s,^.*gl_LGPL([[ ]*\([^]"$`\\)]*\).*$,cached_lgpl="\1",p |
| } |
| /gl_LGPL/ { |
| s,^.*$,cached_lgpl=yes,p |
| } |
| /gl_MAKEFILE_NAME(/ { |
| s,^.*gl_MAKEFILE_NAME([[ ]*\([^]"$`\\)]*\).*$,cached_makefile_name="\1",p |
| } |
| /gl_TESTS_MAKEFILE_NAME(/ { |
| s,^.*gl_TESTS_MAKEFILE_NAME([[ ]*\([^]"$`\\)]*\).*$,cached_tests_makefile_name="\1",p |
| } |
| /gl_AUTOMAKE_SUBDIR/ { |
| s,^.*$,cached_automake_subdir=true,p |
| } |
| /gl_CONDITIONAL_DEPENDENCIES/ { |
| s,^.*$,cached_cond_dependencies=true,p |
| } |
| /gl_LIBTOOL/ { |
| s,^.*$,cached_libtool=true,p |
| } |
| /gl_MACRO_PREFIX(/ { |
| s,^.*gl_MACRO_PREFIX([[ ]*\([^]"$`\\)]*\).*$,cached_macro_prefix="\1",p |
| } |
| /gl_PO_DOMAIN(/ { |
| s,^.*gl_PO_DOMAIN([[ ]*\([^]"$`\\)]*\).*$,cached_po_domain="\1",p |
| } |
| /gl_WITNESS_C_MACRO(/ { |
| s,^.*gl_WITNESS_C_MACRO([[ ]*\([^]"$`\\)]*\).*$,cached_witness_c_macro="\1",p |
| } |
| /gl_VC_FILES(/ { |
| s,^.*gl_VC_FILES([[ ]*\([^]"$`\\)]*\).*$,cached_vc_files="\1",p |
| }' |
| eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-cache.m4` |
| if test -f "$destdir"/$m4base/gnulib-comp.m4; then |
| my_sed_traces=' |
| s,#.*$,, |
| s,^dnl .*$,, |
| s, dnl .*$,, |
| /AC_DEFUN(\['"${cached_macro_prefix}"'_FILE_LIST], \[/ { |
| s,^.*$,cached_files=",p |
| n |
| ta |
| :a |
| s,^]).*$,", |
| tb |
| s,["$`\\],,g |
| p |
| n |
| ba |
| :b |
| p |
| }' |
| eval `sed -n -e "$my_sed_traces" < "$destdir"/$m4base/gnulib-comp.m4` |
| fi |
| fi |
|
|
| if test "$mode" = import; then |
| |
| |
| specified_modules="$1" |
| else |
| |
| |
| if test -n "$cached_m4base" && test "$cached_m4base" != "$m4base"; then |
| func_fatal_error "$m4base/gnulib-cache.m4 is expected to contain gl_M4_BASE([$m4base])" |
| fi |
| |
| |
| if test -z "$local_gnulib_path"; then |
| func_reconstruct_cached_local_gnulib_path |
| fi |
| case $mode in |
| add-import) |
| |
| |
| specified_modules="$cached_specified_modules $1" |
| ;; |
| remove-import) |
| |
| specified_modules= |
| if $have_associative; then |
| |
| declare -A to_remove |
| for m in $1; do |
| eval 'to_remove[$m]=yes' |
| done |
| for module in $cached_specified_modules; do |
| if eval 'test -z "${to_remove[$module]}"'; then |
| func_append specified_modules "$module " |
| fi |
| done |
| else |
| |
| for module in $cached_specified_modules; do |
| to_remove= |
| for m in $1; do |
| if test "$m" = "$module"; then |
| to_remove=yes |
| break |
| fi |
| done |
| if test -z "$to_remove"; then |
| func_append specified_modules "$module " |
| fi |
| done |
| fi |
| ;; |
| update) |
| |
| specified_modules="$cached_specified_modules" |
| ;; |
| esac |
| |
| if test -z "$incobsolete"; then |
| incobsolete="$cached_incobsolete" |
| fi |
| |
| |
| if test -z "$inc_cxx_tests"; then |
| inc_cxx_tests="$cached_inc_cxx_tests" |
| fi |
| if test -z "$inc_longrunning_tests"; then |
| inc_longrunning_tests="$cached_inc_longrunning_tests" |
| fi |
| if test -z "$inc_privileged_tests"; then |
| inc_privileged_tests="$cached_inc_privileged_tests" |
| fi |
| if test -z "$inc_unportable_tests"; then |
| inc_unportable_tests="$cached_inc_unportable_tests" |
| fi |
| if test -z "$inc_all_tests"; then |
| inc_all_tests="$cached_inc_all_tests" |
| fi |
| |
| |
| avoidlist=`for m in $cached_avoidlist $avoidlist; do echo $m; done | LC_ALL=C sort -u` |
| avoidlist=`echo $avoidlist` |
|
|
| |
| if test -z "$sourcebase"; then |
| sourcebase="$cached_sourcebase" |
| if test -z "$sourcebase"; then |
| func_fatal_error "missing --source-base option" |
| fi |
| fi |
| |
| if test -z "$pobase"; then |
| pobase="$cached_pobase" |
| fi |
| |
| if test -z "$docbase"; then |
| docbase="$cached_docbase" |
| if test -z "$docbase"; then |
| 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." |
| fi |
| fi |
| |
| if test -z "$testsbase"; then |
| testsbase="$cached_testsbase" |
| if test -z "$testsbase"; then |
| func_fatal_error "missing --tests-base option" |
| fi |
| fi |
| |
| if ! $inctests; then |
| inctests="$cached_inctests" |
| if test -z "$inctests"; then |
| inctests=false |
| fi |
| fi |
| |
| if test -z "$supplied_libname"; then |
| libname="$cached_libname" |
| if test -z "$libname"; then |
| func_fatal_error "missing --lib option" |
| fi |
| fi |
| |
| if test -z "$lgpl"; then |
| lgpl="$cached_lgpl" |
| fi |
| |
| if test -z "$makefile_name"; then |
| makefile_name="$cached_makefile_name" |
| fi |
| |
| if test -z "$tests_makefile_name"; then |
| tests_makefile_name="$cached_tests_makefile_name" |
| fi |
| |
| if ! $automake_subdir; then |
| automake_subdir="$cached_automake_subdir" |
| if test -z "$automake_subdir"; then |
| automake_subdir=false |
| fi |
| fi |
| |
| if test -z "$cond_dependencies"; then |
| cond_dependencies="$cached_cond_dependencies" |
| fi |
| |
| if test -z "$libtool"; then |
| if test -n "$cached_m4base"; then |
| libtool="$cached_libtool" |
| else |
| libtool="$guessed_libtool" |
| fi |
| fi |
| |
| if test -z "$macro_prefix"; then |
| macro_prefix="$cached_macro_prefix" |
| if test -z "$macro_prefix"; then |
| func_fatal_error "missing --macro-prefix option" |
| fi |
| fi |
| |
| if test -z "$po_domain"; then |
| po_domain="$cached_po_domain" |
| fi |
| |
| if test -z "$witness_c_macro"; then |
| witness_c_macro="$cached_witness_c_macro" |
| fi |
| |
| if test -z "$vc_files"; then |
| vc_files="$cached_vc_files" |
| fi |
| fi |
| |
| excl_cxx_tests= |
| excl_longrunning_tests= |
| excl_privileged_tests= |
| excl_unportable_tests= |
|
|
| |
| specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u` |
|
|
| |
| inc_all_direct_tests="$inc_all_tests" |
| inc_all_indirect_tests="$inc_all_tests" |
|
|
| |
| modules="$specified_modules" |
| func_modules_transitive_closure |
| if test $verbose -ge 0; then |
| func_show_module_list |
| fi |
| final_modules="$modules" |
|
|
| |
| func_modules_transitive_closure_separately |
|
|
| |
| func_determine_use_libtests |
|
|
| |
| |
| func_modules_add_dummy_separately |
|
|
| |
| if test -n "$lgpl"; then |
| license_incompatibilities= |
| for module in $main_modules; do |
| license=`func_get_license $module` |
| case $license in |
| 'GPLv2+ build tool' | 'GPLed build tool') ;; |
| 'public domain' | 'unlimited' | 'unmodifiable license text') ;; |
| *) |
| case "$lgpl" in |
| yes | 3) |
| case $license in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+' | LGPLv3+ | LGPL) ;; |
| *) func_append license_incompatibilities "$module $license$nl" ;; |
| esac |
| ;; |
| 3orGPLv2) |
| case $license in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+') ;; |
| *) func_append license_incompatibilities "$module $license$nl" ;; |
| esac |
| ;; |
| 2) |
| case $license in |
| LGPLv2+) ;; |
| *) func_append license_incompatibilities "$module $license$nl" ;; |
| esac |
| ;; |
| *) func_fatal_error "invalid value lgpl=$lgpl" ;; |
| esac |
| ;; |
| esac |
| done |
| if test -n "$license_incompatibilities"; then |
| |
| sed_expand_column1_width50_indent17='s,^\([^ ]*\) ,\1 , |
| s,^\(.................................................[^ ]*\) *, \1 ,' |
| license_incompatibilities=`echo "$license_incompatibilities" | sed -e "$sed_expand_column1_width50_indent17"` |
| func_fatal_error "incompatible license on modules:$nl$license_incompatibilities" |
| fi |
| fi |
|
|
| |
| modules="$main_modules" |
| func_modules_notice |
|
|
| |
| sed_transform_lib_file= |
| for module in $main_modules; do |
| if test $module = config-h; then |
| |
| sed_transform_lib_file=$sed_transform_lib_file' |
| s/^#ifdef[ ]*HAVE_CONFIG_H[ ]*$/#if 1/ |
| ' |
| break |
| fi |
| done |
| sed_transform_main_lib_file="$sed_transform_lib_file" |
|
|
| |
| sed_transform_build_aux_file= |
|
|
| |
| sed_transform_testsrelated_lib_file="$sed_transform_lib_file" |
|
|
| |
| func_modules_to_filelist_separately |
|
|
| test -n "$files" \ |
| || func_fatal_error "refusing to do nothing" |
|
|
| |
| new_files="$files m4/gnulib-tool.m4" |
| old_files="$cached_files" |
| if test -f "$destdir"/$m4base/gnulib-tool.m4; then |
| func_append old_files " m4/gnulib-tool.m4" |
| fi |
|
|
| rewritten='%REWRITTEN%' |
| if test "$auxdir" = '.'; then |
| auxdir_prefix= |
| else |
| auxdir_prefix="$auxdir/" |
| fi |
| if test "$cached_docbase" = '.'; then |
| cached_docbase_prefix= |
| else |
| cached_docbase_prefix="$cached_docbase/" |
| fi |
| if test "$cached_sourcebase" = '.'; then |
| cached_sourcebase_prefix= |
| else |
| cached_sourcebase_prefix="$cached_sourcebase/" |
| fi |
| if test "$cached_m4base" = '.'; then |
| cached_m4base_prefix= |
| else |
| cached_m4base_prefix="$cached_m4base/" |
| fi |
| if test "$cached_testsbase" = '.'; then |
| cached_testsbase_prefix= |
| else |
| cached_testsbase_prefix="$cached_testsbase/" |
| fi |
| if test "$docbase" = '.'; then |
| docbase_prefix= |
| else |
| docbase_prefix="$docbase/" |
| fi |
| if test "$sourcebase" = '.'; then |
| sourcebase_prefix= |
| else |
| sourcebase_prefix="$sourcebase/" |
| fi |
| if test "$m4base" = '.'; then |
| m4base_prefix= |
| else |
| m4base_prefix="$m4base/" |
| fi |
| if test "$testsbase" = '.'; then |
| testsbase_prefix= |
| else |
| testsbase_prefix="$testsbase/" |
| fi |
| sed_rewrite_old_files="\ |
| s,^build-aux/,$rewritten$auxdir_prefix, |
| s,^doc/,$rewritten$cached_docbase_prefix, |
| s,^lib/,$rewritten$cached_sourcebase_prefix, |
| s,^m4/,$rewritten$cached_m4base_prefix, |
| s,^tests/,$rewritten$cached_testsbase_prefix, |
| s,^tests=lib/,$rewritten$cached_testsbase_prefix, |
| s,^top/,$rewritten, |
| s,^$rewritten,," |
| sed_rewrite_new_files="\ |
| s,^build-aux/,$rewritten$auxdir_prefix, |
| s,^doc/,$rewritten$docbase_prefix, |
| s,^lib/,$rewritten$sourcebase_prefix, |
| s,^m4/,$rewritten$m4base_prefix, |
| s,^tests/,$rewritten$testsbase_prefix, |
| s,^tests=lib/,$rewritten$testsbase_prefix, |
| s,^top/,$rewritten, |
| s,^$rewritten,," |
|
|
| |
| testsfiles=`echo "$files" | sed -n -e 's,^tests/,,p' -e 's,^tests=lib/,,p'` |
| if test -n "$testsfiles"; then |
| gentests=true |
| else |
| gentests=false |
| fi |
|
|
| |
| { echo "$sourcebase" |
| echo "$m4base" |
| if test -n "$pobase"; then |
| echo "$pobase" |
| fi |
| docfiles=`echo "$files" | sed -n -e 's,^doc/,,p'` |
| if test -n "$docfiles"; then |
| echo "$docbase" |
| fi |
| if $gentests; then |
| echo "$testsbase" |
| fi |
| echo "$auxdir" |
| for f in $files; do echo $f; done \ |
| | sed -e "$sed_rewrite_new_files" \ |
| | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \ |
| | LC_ALL=C sort -u |
| } > "$tmp"/dirs |
| { |
| |
| exec 5<&0 < "$tmp"/dirs |
| while read d; do |
| if test ! -d "$destdir/$d"; then |
| if $doit; then |
| echo "Creating directory $destdir/$d" |
| mkdir -p "$destdir/$d" || func_fatal_error "failed" |
| else |
| echo "Create directory $destdir/$d" |
| fi |
| fi |
| done |
| exec 0<&5 5<&- |
| } |
|
|
| |
| added_files='' |
| removed_files='' |
| delimiter=' ' |
| |
| |
| for f in $old_files; do echo $f; done \ |
| | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_old_files" \ |
| | LC_ALL=C sort \ |
| > "$tmp"/old-files |
| |
| |
| for f in $new_files; do echo $f; done \ |
| | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" \ |
| | LC_ALL=C sort \ |
| > "$tmp"/new-files |
| |
| sed_take_first_column='s,'"$delimiter"'.*,,' |
| for g in `LC_ALL=C $JOIN -t"$delimiter" -v1 "$tmp"/old-files "$tmp"/new-files | sed -e "$sed_take_first_column"`; do |
| |
| if test -f "$destdir/$g" || test -h "$destdir/$g"; then |
| if $doit; then |
| echo "Removing file $g (backup in ${g}~)" |
| mv -f "$destdir/$g" "$destdir/${g}~" || func_fatal_error "failed" |
| else |
| echo "Remove file $g (backup in ${g}~)" |
| fi |
| func_append removed_files "$g$nl" |
| fi |
| done |
| |
| |
| |
| |
| |
| |
| func_add_or_update () |
| { |
| of="$f" |
| case "$f" in |
| tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;; |
| esac |
| func_dest_tmpfilename "$g" |
| func_lookup_file "$f" |
| cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed" |
| func_ensure_writable "$tmpfile" |
| case "$f" in |
| *.class | *.mo ) |
| |
| ;; |
| *) |
| if test -n "$sed_transform_main_lib_file"; then |
| case "$of" in |
| lib/*) |
| sed -e "$sed_transform_main_lib_file" \ |
| < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed" |
| ;; |
| esac |
| fi |
| if test -n "$sed_transform_build_aux_file"; then |
| case "$of" in |
| build-aux/*) |
| sed -e "$sed_transform_build_aux_file" \ |
| < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed" |
| ;; |
| esac |
| fi |
| if test -n "$sed_transform_testsrelated_lib_file"; then |
| case "$of" in |
| tests=lib/*) |
| sed -e "$sed_transform_testsrelated_lib_file" \ |
| < "$lookedup_file" > "$tmpfile" || func_fatal_error "failed" |
| ;; |
| esac |
| fi |
| ;; |
| esac |
| if test -f "$destdir/$g"; then |
| |
| func_update_file |
| else |
| |
| |
| |
| func_add_file |
| func_append added_files "$g$nl" |
| fi |
| rm -f "$tmpfile" |
| } |
| |
| sed_take_last_column='s,^.*'"$delimiter"',,' |
| already_present= |
| LC_ALL=C $JOIN -t"$delimiter" -v2 "$tmp"/old-files "$tmp"/new-files \ |
| | sed -e "$sed_take_last_column" \ |
| | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/added-files |
| { |
| |
| exec 5<&0 < "$tmp"/added-files |
| while read g f; do |
| func_add_or_update |
| done |
| exec 0<&5 5<&- |
| } |
| |
| already_present=true |
| LC_ALL=C $JOIN -t"$delimiter" "$tmp"/old-files "$tmp"/new-files \ |
| | sed -e "$sed_take_last_column" \ |
| | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_new_files" > "$tmp"/kept-files |
| { |
| |
| exec 5<&0 < "$tmp"/kept-files |
| while read g f; do |
| func_add_or_update |
| done |
| exec 0<&5 5<&- |
| } |
|
|
| |
| actioncmd="# gnulib-tool --import" |
|
|
| |
| |
| |
| |
| |
| func_append_actionarg () |
| { |
| func_append actioncmd " \\$nl# $1" |
| } |
|
|
| |
| func_append_actioncmd_local_dir () |
| { |
| func_append_actionarg "--local-dir=$1" |
| } |
| func_path_foreach "$local_gnulib_path" func_append_actioncmd_local_dir %dir% |
|
|
| func_append_actionarg "--lib=$libname" |
| func_append_actionarg "--source-base=$sourcebase" |
| func_append_actionarg "--m4-base=$m4base" |
| if test -n "$pobase"; then |
| func_append_actionarg "--po-base=$pobase" |
| fi |
| func_append_actionarg "--doc-base=$docbase" |
| func_append_actionarg "--tests-base=$testsbase" |
| func_append_actionarg "--aux-dir=$auxdir" |
| if $inctests; then |
| func_append_actionarg "--with-tests" |
| fi |
| if test -n "$incobsolete"; then |
| func_append_actionarg "--with-obsolete" |
| fi |
| if test -n "$inc_cxx_tests"; then |
| func_append_actionarg "--with-c++-tests" |
| fi |
| if test -n "$inc_longrunning_tests"; then |
| func_append_actionarg "--with-longrunning-tests" |
| fi |
| if test -n "$inc_privileged_tests"; then |
| func_append_actionarg "--with-privileged-tests" |
| fi |
| if test -n "$inc_unportable_tests"; then |
| func_append_actionarg "--with-unportable-tests" |
| fi |
| if test -n "$inc_all_tests"; then |
| func_append_actionarg "--with-all-tests" |
| fi |
| if test -n "$lgpl"; then |
| if test "$lgpl" = yes; then |
| func_append_actionarg "--lgpl" |
| else |
| func_append_actionarg "--lgpl=$lgpl" |
| fi |
| fi |
| if $gnu_make; then |
| func_append_actionarg "--gnu-make" |
| fi |
| if test -n "$makefile_name"; then |
| func_append_actionarg "--makefile-name=$makefile_name" |
| fi |
| if test -n "$tests_makefile_name"; then |
| func_append_actionarg "--tests-makefile-name=$tests_makefile_name" |
| fi |
| if $automake_subdir; then |
| func_append_actionarg "--automake-subdir" |
| fi |
| if $automake_subdir_tests; then |
| func_append_actionarg "--automake-subdir-tests" |
| fi |
| if test "$cond_dependencies" = true; then |
| func_append_actionarg "--conditional-dependencies" |
| else |
| func_append_actionarg "--no-conditional-dependencies" |
| fi |
| if test "$libtool" = true; then |
| func_append_actionarg "--libtool" |
| else |
| func_append_actionarg "--no-libtool" |
| fi |
| func_append_actionarg "--macro-prefix=$macro_prefix" |
| if test -n "$po_domain"; then |
| func_append_actionarg "--po-domain=$po_domain" |
| fi |
| if test -n "$witness_c_macro"; then |
| func_append_actionarg "--witness-c-macro=$witness_c_macro" |
| fi |
| if test -n "$vc_files"; then |
| if test "$vc_files" = true; then |
| func_append_actionarg "--vc-files" |
| else |
| func_append_actionarg "--no-vc-files" |
| fi |
| fi |
| for module in $avoidlist; do |
| func_append_actionarg "--avoid=$module" |
| done |
| for module in $specified_modules; do |
| func_append_actionarg "$module" |
| done |
|
|
| |
| func_compute_include_guard_prefix |
|
|
| |
| if test -n "$makefile_name"; then |
| source_makefile_am="$makefile_name" |
| else |
| source_makefile_am='Makefile.am' |
| fi |
| |
| if test -n "$tests_makefile_name"; then |
| tests_makefile_am="$tests_makefile_name" |
| else |
| tests_makefile_am="$source_makefile_am" |
| fi |
|
|
| |
| for_test=false |
|
|
| |
| |
| |
| makefile_am_edits=0 |
| |
| |
| |
| |
| |
| |
| func_note_Makefile_am_edit () |
| { |
| makefile_am_edits=`expr $makefile_am_edits + 1` |
| eval makefile_am_edit${makefile_am_edits}_dir=\"\$1\" |
| eval makefile_am_edit${makefile_am_edits}_var=\"\$2\" |
| eval makefile_am_edit${makefile_am_edits}_val=\"\$3\" |
| eval makefile_am_edit${makefile_am_edits}_dotfirst=\"\$4\" |
| } |
| if test "$source_makefile_am" = Makefile.am; then |
| sourcebase_dir=`echo "$sourcebase" | sed -n -e 's,/[^/]*$,/,p'` |
| sourcebase_base=`basename "$sourcebase"` |
| func_note_Makefile_am_edit "$sourcebase_dir" SUBDIRS "$sourcebase_base" |
| fi |
| if test -n "$pobase"; then |
| pobase_dir=`echo "$pobase" | sed -n -e 's,/[^/]*$,/,p'` |
| pobase_base=`basename "$pobase"` |
| func_note_Makefile_am_edit "$pobase_dir" SUBDIRS "$pobase_base" |
| fi |
| if $inctests; then |
| if test "$tests_makefile_am" = Makefile.am; then |
| testsbase_dir=`echo "$testsbase" | sed -n -e 's,/[^/]*$,/,p'` |
| testsbase_base=`basename "$testsbase"` |
| func_note_Makefile_am_edit "$testsbase_dir" SUBDIRS "$testsbase_base" true |
| fi |
| fi |
| func_note_Makefile_am_edit "" ACLOCAL_AMFLAGS "${m4base}" |
| { |
| |
| |
| sed_last='s,^.*/\([^/][^/]*\)//*$,\1/, |
| s,//*$,/,' |
| sed_butlast='s,[^/][^/]*//*$,,' |
| dir1="${m4base}/"; dir2="" |
| while test -n "$dir1" \ |
| && ! { test -f "${destdir}/${dir1}Makefile.am" \ |
| || test "${dir1}Makefile.am" = "$sourcebase/$source_makefile_am" \ |
| || test "./${dir1}Makefile.am" = "$sourcebase/$source_makefile_am" \ |
| || { $gentests \ |
| && { test "${dir1}Makefile.am" = "$testsbase/$tests_makefile_am" \ |
| || test "./${dir1}Makefile.am" = "$testsbase/$tests_makefile_am"; }; }; }; do |
| dir2=`echo "$dir1" | sed -e "$sed_last"`"$dir2" |
| dir1=`echo "$dir1" | sed -e "$sed_butlast"` |
| done |
| func_note_Makefile_am_edit "$dir1" EXTRA_DIST "${dir2}gnulib-cache.m4" |
| } |
|
|
| |
| if test -n "$pobase"; then |
| |
| for file in Makefile.in.in remove-potcdate.sin remove-potcdate.sed; do |
| func_dest_tmpfilename $pobase/$file |
| if test -r "$gnulib_dir/build-aux/po/$file"; then |
| func_lookup_file build-aux/po/$file |
| cat "$lookedup_file" > "$tmpfile" |
| if test -f "$destdir"/$pobase/$file; then |
| if cmp -s "$destdir"/$pobase/$file "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $pobase/$file (backup in $pobase/$file~)" |
| mv -f "$destdir"/$pobase/$file "$destdir"/$pobase/$file~ |
| mv -f "$tmpfile" "$destdir"/$pobase/$file |
| else |
| echo "Update $pobase/$file (backup in $pobase/$file~)" |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $pobase/$file" |
| mv -f "$tmpfile" "$destdir"/$pobase/$file |
| else |
| echo "Create $pobase/$file" |
| rm -f "$tmpfile" |
| fi |
| func_append added_files "$pobase/$file$nl" |
| fi |
| fi |
| done |
| |
| func_dest_tmpfilename $pobase/Makevars |
| func_emit_po_Makevars > "$tmpfile" |
| if test -f "$destdir"/$pobase/Makevars; then |
| if cmp -s "$destdir"/$pobase/Makevars "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $pobase/Makevars (backup in $pobase/Makevars~)" |
| mv -f "$destdir"/$pobase/Makevars "$destdir"/$pobase/Makevars~ |
| mv -f "$tmpfile" "$destdir"/$pobase/Makevars |
| else |
| echo "Update $pobase/Makevars (backup in $pobase/Makevars~)" |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $pobase/Makevars" |
| mv -f "$tmpfile" "$destdir"/$pobase/Makevars |
| else |
| echo "Create $pobase/Makevars" |
| rm -f "$tmpfile" |
| fi |
| func_append added_files "$pobase/Makevars$nl" |
| fi |
| |
| func_dest_tmpfilename $pobase/POTFILES.in |
| func_emit_po_POTFILES_in > "$tmpfile" |
| if test -f "$destdir"/$pobase/POTFILES.in; then |
| if cmp -s "$destdir"/$pobase/POTFILES.in "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)" |
| mv -f "$destdir"/$pobase/POTFILES.in "$destdir"/$pobase/POTFILES.in~ |
| mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in |
| else |
| echo "Update $pobase/POTFILES.in (backup in $pobase/POTFILES.in~)" |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $pobase/POTFILES.in" |
| mv -f "$tmpfile" "$destdir"/$pobase/POTFILES.in |
| else |
| echo "Create $pobase/POTFILES.in" |
| rm -f "$tmpfile" |
| fi |
| func_append added_files "$pobase/POTFILES.in$nl" |
| fi |
| |
| TP_URL="https://translationproject.org/latest/" |
| if $doit; then |
| echo "Fetching gnulib PO files from $TP_URL" |
| (cd "$destdir"/$pobase \ |
| && wget --no-verbose --mirror --level=1 -nd -A.po -P . "${TP_URL}gnulib/" |
| ) |
| else |
| echo "Fetch gnulib PO files from $TP_URL" |
| fi |
| |
| if $doit; then |
| func_dest_tmpfilename $pobase/LINGUAS |
| (cd "$destdir"/$pobase \ |
| && { echo '# Set of available languages.' |
| LC_ALL=C ls -1 *.po | sed -e 's,\.po$,,' |
| } |
| ) > "$tmpfile" |
| if test -f "$destdir"/$pobase/LINGUAS; then |
| if cmp -s "$destdir"/$pobase/LINGUAS "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| echo "Updating $pobase/LINGUAS (backup in $pobase/LINGUAS~)" |
| mv -f "$destdir"/$pobase/LINGUAS "$destdir"/$pobase/LINGUAS~ |
| mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS |
| fi |
| else |
| echo "Creating $pobase/LINGUAS" |
| mv -f "$tmpfile" "$destdir"/$pobase/LINGUAS |
| func_append added_files "$pobase/LINGUAS$nl" |
| fi |
| else |
| if test -f "$destdir"/$pobase/LINGUAS; then |
| echo "Update $pobase/LINGUAS (backup in $pobase/LINGUAS~)" |
| else |
| echo "Create $pobase/LINGUAS" |
| fi |
| fi |
| fi |
|
|
| |
| |
| |
| |
| |
| |
| |
| func_compute_relative_local_gnulib_path () |
| { |
| relative_local_gnulib_path= |
| saved_IFS="$IFS" |
| IFS="$PATH_SEPARATOR" |
| for local_dir in $local_gnulib_path |
| do |
| IFS="$saved_IFS" |
| |
| case "$local_dir" in |
| "" | /*) |
| relative_local_dir="$local_dir" ;; |
| * ) |
| case "$destdir" in |
| /*) |
| |
| relative_local_dir="$local_dir" ;; |
| *) |
| |
| func_relativize "$destdir" "$local_dir" |
| relative_local_dir="$reldir" ;; |
| esac ;; |
| esac |
| func_path_append relative_local_gnulib_path "$relative_local_dir" |
| done |
| IFS="$saved_IFS" |
| } |
|
|
| |
| func_dest_tmpfilename $m4base/gnulib-cache.m4 |
| ( |
| func_emit_copyright_notice |
| echo "#" |
| echo "# This file represents the specification of how gnulib-tool is used." |
| echo "# It acts as a cache: It is written and read by gnulib-tool." |
| echo "# In projects that use version control, this file is meant to be put under" |
| echo "# version control, like the configure.ac and various Makefile.am files." |
| echo |
| echo |
| echo "# Specification in the form of a command-line invocation:" |
| printf '%s\n' "$actioncmd" |
| echo |
| echo "# Specification in the form of a few gnulib-tool.m4 macro invocations:" |
| func_compute_relative_local_gnulib_path |
| echo "gl_LOCAL_DIR([$relative_local_gnulib_path])" |
| echo "gl_MODULES([" |
| echo "$specified_modules" | sed -e 's/^/ /g' |
| echo "])" |
| test -z "$incobsolete" || echo "gl_WITH_OBSOLETE" |
| test -z "$inc_cxx_tests" || echo "gl_WITH_CXX_TESTS" |
| test -z "$inc_longrunning_tests" || echo "gl_WITH_LONGRUNNING_TESTS" |
| test -z "$inc_privileged_tests" || echo "gl_WITH_PRIVILEGED_TESTS" |
| test -z "$inc_unportable_tests" || echo "gl_WITH_UNPORTABLE_TESTS" |
| test -z "$inc_all_tests" || echo "gl_WITH_ALL_TESTS" |
| echo "gl_AVOID([$avoidlist])" |
| echo "gl_SOURCE_BASE([$sourcebase])" |
| echo "gl_M4_BASE([$m4base])" |
| echo "gl_PO_BASE([$pobase])" |
| echo "gl_DOC_BASE([$docbase])" |
| echo "gl_TESTS_BASE([$testsbase])" |
| if $inctests; then |
| echo "gl_WITH_TESTS" |
| fi |
| echo "gl_LIB([$libname])" |
| if test -n "$lgpl"; then |
| if test "$lgpl" = yes; then |
| echo "gl_LGPL" |
| else |
| echo "gl_LGPL([$lgpl])" |
| fi |
| fi |
| echo "gl_MAKEFILE_NAME([$makefile_name])" |
| if test -n "$tests_makefile_name"; then |
| echo "gl_TESTS_MAKEFILE_NAME([$tests_makefile_name])" |
| fi |
| if test "$automake_subdir" = true; then |
| echo "gl_AUTOMAKE_SUBDIR" |
| fi |
| if test "$cond_dependencies" = true; then |
| echo "gl_CONDITIONAL_DEPENDENCIES" |
| fi |
| if test "$libtool" = true; then |
| echo "gl_LIBTOOL" |
| fi |
| echo "gl_MACRO_PREFIX([$macro_prefix])" |
| echo "gl_PO_DOMAIN([$po_domain])" |
| echo "gl_WITNESS_C_MACRO([$witness_c_macro])" |
| if test -n "$vc_files"; then |
| echo "gl_VC_FILES([$vc_files])" |
| fi |
| ) > "$tmpfile" |
| if test -f "$destdir"/$m4base/gnulib-cache.m4; then |
| if cmp -s "$destdir"/$m4base/gnulib-cache.m4 "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)" |
| mv -f "$destdir"/$m4base/gnulib-cache.m4 "$destdir"/$m4base/gnulib-cache.m4~ |
| mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4 |
| else |
| echo "Update $m4base/gnulib-cache.m4 (backup in $m4base/gnulib-cache.m4~)" |
| if false; then |
| cat "$tmpfile" |
| echo |
| echo "# gnulib-cache.m4 ends here" |
| fi |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $m4base/gnulib-cache.m4" |
| mv -f "$tmpfile" "$destdir"/$m4base/gnulib-cache.m4 |
| else |
| echo "Create $m4base/gnulib-cache.m4" |
| cat "$tmpfile" |
| rm -f "$tmpfile" |
| fi |
| fi |
|
|
| |
| func_dest_tmpfilename $m4base/gnulib-comp.m4 |
| ( |
| echo "# DO NOT EDIT! GENERATED AUTOMATICALLY!" |
| func_emit_copyright_notice |
| echo "#" |
| echo "# This file represents the compiled summary of the specification in" |
| echo "# gnulib-cache.m4. It lists the computed macro invocations that need" |
| echo "# to be invoked from configure.ac." |
| echo "# In projects that use version control, this file can be treated like" |
| echo "# other built files." |
| echo |
| echo |
| echo "# This macro should be invoked from $configure_ac, in the section" |
| echo "# \"Checks for programs\", right after AC_PROG_CC, and certainly before" |
| echo "# any checks for libraries, header files, types and library functions." |
| echo "AC_DEFUN([${macro_prefix}_EARLY]," |
| echo "[" |
| echo " m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace" |
| echo " m4_pattern_allow([^gl_ES\$])dnl a valid locale name" |
| echo " m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable" |
| echo " m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable" |
|
|
| func_emit_pre_early_macros : ' ' "$final_modules" |
|
|
| for module in $final_modules; do |
| func_verify_module |
| if test -n "$module"; then |
| echo "# Code from module $module:" |
| func_get_autoconf_early_snippet "$module" |
| fi |
| done \ |
| | sed -e '/^$/d;' -e 's/^/ /' |
| echo "])" |
| echo |
| echo "# This macro should be invoked from $configure_ac, in the section" |
| echo "# \"Check for header files, types and library functions\"." |
| echo "AC_DEFUN([${macro_prefix}_INIT]," |
| echo "[" |
| |
| |
| |
| |
| |
| |
| |
| if grep ' lib/alloca\.c$' "$tmp"/new-files >/dev/null; then |
| |
| echo " AC_CONFIG_LIBOBJ_DIR([$sourcebase])" |
| else |
| if grep ' tests=lib/alloca\.c$' "$tmp"/new-files >/dev/null; then |
| |
| echo " AC_CONFIG_LIBOBJ_DIR([$testsbase])" |
| fi |
| fi |
| if test "$libtool" = true; then |
| echo " AM_CONDITIONAL([GL_COND_LIBTOOL], [true])" |
| echo " gl_cond_libtool=true" |
| else |
| echo " AM_CONDITIONAL([GL_COND_LIBTOOL], [false])" |
| echo " gl_cond_libtool=false" |
| echo " gl_libdeps=" |
| echo " gl_ltlibdeps=" |
| fi |
| if test "$auxdir" != "build-aux"; then |
| sed_replace_build_aux=' |
| :a |
| /AC_CONFIG_FILES(.*:build-aux\/.*)/{ |
| s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)| |
| ba |
| }' |
| else |
| sed_replace_build_aux="$sed_noop" |
| fi |
| echo " gl_m4_base='$m4base'" |
| func_emit_initmacro_start $macro_prefix false |
| func_emit_shellvars_init false "$sourcebase" |
| if test -n "$witness_c_macro"; then |
| echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$witness_c_macro])" |
| fi |
| func_emit_autoconf_snippets "$main_modules" "$main_modules" func_verify_module true false true |
| if test -n "$witness_c_macro"; then |
| echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])" |
| fi |
| echo " # End of code from modules" |
| func_emit_initmacro_end $macro_prefix false |
| echo " gltests_libdeps=" |
| echo " gltests_ltlibdeps=" |
| func_emit_initmacro_start ${macro_prefix}tests $gentests |
| func_emit_shellvars_init true "$testsbase" |
| |
| |
| |
| echo "changequote(,)dnl" |
| 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" |
| echo "changequote([, ])dnl" |
| echo " AC_SUBST([${macro_prefix}tests_WITNESS])" |
| echo " gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS" |
| echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])" |
| func_emit_autoconf_snippets "$testsrelated_modules" "$main_modules $testsrelated_modules" func_verify_module true true true |
| echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])" |
| func_emit_initmacro_end ${macro_prefix}tests $gentests |
| echo " AC_REQUIRE([gl_CC_GNULIB_WARNINGS])" |
| |
| |
| if test "$libtool" != true; then |
| libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'` |
| echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\"" |
| echo " AC_SUBST([${libname_upper}_LIBDEPS])" |
| echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\"" |
| echo " AC_SUBST([${libname_upper}_LTLIBDEPS])" |
| fi |
| if $use_libtests; then |
| echo " LIBTESTS_LIBDEPS=\"\$gltests_libdeps\"" |
| echo " AC_SUBST([LIBTESTS_LIBDEPS])" |
| fi |
| echo "])" |
| func_emit_initmacro_done $macro_prefix $sourcebase |
| func_emit_initmacro_done ${macro_prefix}tests $testsbase |
| echo |
| echo "# This macro records the list of files which have been installed by" |
| echo "# gnulib-tool and may be removed by future gnulib-tool invocations." |
| echo "AC_DEFUN([${macro_prefix}_FILE_LIST], [" |
| echo "$files" | sed -e 's,^, ,' |
| echo "])" |
| ) > "$tmpfile" |
| if test -f "$destdir"/$m4base/gnulib-comp.m4; then |
| if cmp -s "$destdir"/$m4base/gnulib-comp.m4 "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)" |
| mv -f "$destdir"/$m4base/gnulib-comp.m4 "$destdir"/$m4base/gnulib-comp.m4~ |
| mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4 |
| else |
| echo "Update $m4base/gnulib-comp.m4 (backup in $m4base/gnulib-comp.m4~)" |
| if false; then |
| cat "$tmpfile" |
| echo |
| echo "# gnulib-comp.m4 ends here" |
| fi |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $m4base/gnulib-comp.m4" |
| mv -f "$tmpfile" "$destdir"/$m4base/gnulib-comp.m4 |
| else |
| echo "Create $m4base/gnulib-comp.m4" |
| cat "$tmpfile" |
| rm -f "$tmpfile" |
| fi |
| fi |
|
|
| |
| |
| |
| func_dest_tmpfilename $sourcebase/$source_makefile_am |
| destfile="$sourcebase/$source_makefile_am" |
| modules="$main_modules" |
| if $automake_subdir; then |
| func_emit_lib_Makefile_am | "$gnulib_dir"/build-aux/prefix-gnulib-mk --from-gnulib-tool --lib-name="$libname" --prefix="$sourcebase/" > "$tmpfile" |
| else |
| func_emit_lib_Makefile_am > "$tmpfile" |
| fi |
| if test -f "$destdir"/$sourcebase/$source_makefile_am; then |
| if cmp -s "$destdir"/$sourcebase/$source_makefile_am "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $sourcebase/$source_makefile_am (backup in $sourcebase/$source_makefile_am~)" |
| mv -f "$destdir"/$sourcebase/$source_makefile_am "$destdir"/$sourcebase/$source_makefile_am~ |
| mv -f "$tmpfile" "$destdir"/$sourcebase/$source_makefile_am |
| else |
| echo "Update $sourcebase/$source_makefile_am (backup in $sourcebase/$source_makefile_am~)" |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $sourcebase/$source_makefile_am" |
| mv -f "$tmpfile" "$destdir"/$sourcebase/$source_makefile_am |
| else |
| echo "Create $sourcebase/$source_makefile_am" |
| rm -f "$tmpfile" |
| fi |
| func_append added_files "$sourcebase/$source_makefile_am$nl" |
| fi |
|
|
| if $gentests; then |
| |
| func_dest_tmpfilename $testsbase/$tests_makefile_am |
| destfile="$testsbase/$tests_makefile_am" |
| modules="$testsrelated_modules" |
| func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$tmpfile" |
| if test -f "$destdir"/$testsbase/$tests_makefile_am; then |
| if cmp -s "$destdir"/$testsbase/$tests_makefile_am "$tmpfile"; then |
| rm -f "$tmpfile" |
| else |
| if $doit; then |
| echo "Updating $testsbase/$tests_makefile_am (backup in $testsbase/$tests_makefile_am~)" |
| mv -f "$destdir"/$testsbase/$tests_makefile_am "$destdir"/$testsbase/$tests_makefile_am~ |
| mv -f "$tmpfile" "$destdir"/$testsbase/$tests_makefile_am |
| else |
| echo "Update $testsbase/$tests_makefile_am (backup in $testsbase/$tests_makefile_am~)" |
| rm -f "$tmpfile" |
| fi |
| fi |
| else |
| if $doit; then |
| echo "Creating $testsbase/$tests_makefile_am" |
| mv -f "$tmpfile" "$destdir"/$testsbase/$tests_makefile_am |
| else |
| echo "Create $testsbase/$tests_makefile_am" |
| rm -f "$tmpfile" |
| fi |
| func_append added_files "$testsbase/$tests_makefile_am$nl" |
| fi |
| fi |
|
|
| if test "$vc_files" != false; then |
| |
| { echo "$added_files" | sed -e '/^$/d' -e 's,^\([^/]*\)$,./\1,' -e 's,/\([^/]*\)$,|A|\1,' |
| echo "$removed_files" | sed -e '/^$/d' -e 's,^\([^/]*\)$,./\1,' -e 's,/\([^/]*\)$,|R|\1,' |
| |
| echo "$m4base|A|gnulib-comp.m4" |
| } | LC_ALL=C sort -t'|' -k1,1 > "$tmp"/fileset-changes |
| { |
| |
| exec 5<&0 < "$tmp"/fileset-changes |
| func_update_ignorelist () |
| { |
| ignore="$1" |
| if test "$ignore" = .gitignore; then |
| |
| |
| anchor='/' |
| escaped_anchor='\/' |
| doubly_escaped_anchor='\\/' |
| else |
| anchor='' |
| escaped_anchor='' |
| doubly_escaped_anchor='' |
| fi |
| if test -f "$destdir/$dir$ignore"; then |
| if test -n "$dir_added" || test -n "$dir_removed"; then |
| sed -e "s|^$anchor||" < "$destdir/$dir$ignore" | LC_ALL=C sort > "$tmp"/ignore |
| (echo "$dir_added" | sed -e '/^$/d' | LC_ALL=C sort -u \ |
| | LC_ALL=C $JOIN -v 1 - "$tmp"/ignore > "$tmp"/ignore-added |
| echo "$dir_removed" | sed -e '/^$/d' | LC_ALL=C sort -u \ |
| > "$tmp"/ignore-removed |
| ) |
| if test -s "$tmp"/ignore-added || test -s "$tmp"/ignore-removed; then |
| if $doit; then |
| echo "Updating $dir$ignore (backup in $dir${ignore}~)" |
| mv -f "$destdir/$dir$ignore" "$destdir/$dir$ignore"~ |
| { sed -e 's,/,\\/,g' -e 's,^,/^,' -e 's,$,\$/d,' < "$tmp"/ignore-removed |
| if test -n "$anchor"; then sed -e 's,/,\\/,g' -e "s,^,/^${doubly_escaped_anchor}," -e 's,$,$/d,' < "$tmp"/ignore-removed; fi |
| } > "$tmp"/sed-ignore-removed |
| { cat "$destdir/$dir$ignore"~ |
| |
| |
| if test `tail -c 1 < "$destdir/$dir$ignore"~ | tr -d '\n' | wc -c` = 1; then echo; fi |
| sed -e "s|^|$anchor|" < "$tmp"/ignore-added |
| } | sed -f "$tmp"/sed-ignore-removed \ |
| > "$destdir/$dir$ignore" |
| else |
| echo "Update $dir$ignore (backup in $dir${ignore}~)" |
| fi |
| fi |
| fi |
| else |
| if test -n "$dir_added"; then |
| if $doit; then |
| echo "Creating $dir$ignore" |
| { |
| if test "$ignore" = .cvsignore; then |
| echo ".deps" |
| |
| echo ".dirstamp" |
| fi |
| echo "$dir_added" | sed -e '/^$/d' -e "s|^|$anchor|" | LC_ALL=C sort -u |
| } > "$destdir/$dir$ignore" |
| else |
| echo "Create $dir$ignore" |
| fi |
| fi |
| fi |
| } |
| func_done_dir () |
| { |
| dir="$1" |
| dir_added="$2" |
| dir_removed="$3" |
| if test -d "$destdir/CVS" || test -d "$destdir/${dir}CVS" || test -f "$destdir/${dir}.cvsignore"; then |
| func_update_ignorelist .cvsignore |
| fi |
| if test -d "$destdir/.git" || test -f "$destdir/.gitignore" || test -f "$destdir/${dir}.gitignore"; then |
| func_update_ignorelist .gitignore |
| fi |
| } |
| last_dir= |
| last_dir_added= |
| last_dir_removed= |
| while read line; do |
| |
| next_dir=`echo "$line" | sed -e 's,|.*,,'` |
| if test "$next_dir" = '.'; then |
| next_dir= |
| else |
| next_dir="$next_dir/" |
| fi |
| op=`echo "$line" | sed -e 's,^[^|]*|\([^|]*\)|.*$,\1,'` |
| file=`echo "$line" | sed -e 's,^[^|]*|[^|]*|,,'` |
| if test "$next_dir" != "$last_dir"; then |
| func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed" |
| last_dir="$next_dir" |
| last_dir_added= |
| last_dir_removed= |
| fi |
| case $op in |
| A) func_append last_dir_added "$file$nl";; |
| R) func_append last_dir_removed "$file$nl";; |
| esac |
| done |
| func_done_dir "$last_dir" "$last_dir_added" "$last_dir_removed" |
| exec 0<&5 5<&- |
| } |
| fi |
|
|
| echo "Finished." |
| echo |
| echo "You may need to add #include directives for the following .h files." |
| |
| |
| |
| |
| |
| echo "$specified_modules" > "$tmp"/modules1 |
| echo "$main_modules" > "$tmp"/modules2 |
| |
| |
| |
| for module in `LC_ALL=C $JOIN "$tmp"/modules1 "$tmp"/modules2`; do |
| include_directive=`func_get_include_directive "$module"` |
| case "$nl$include_directive" in |
| *"$nl#if"*) |
| echo "$include_directive" 1>&5 |
| ;; |
| *) |
| echo "$include_directive" | grep -v 'include "' 1>&6 |
| echo "$include_directive" | grep 'include "' 1>&7 |
| ;; |
| esac |
| done 5> "$tmp"/include-if 6> "$tmp"/include-angles 7> "$tmp"/include-quotes |
| ( |
| LC_ALL=C sort -u "$tmp"/include-angles |
| LC_ALL=C sort -u "$tmp"/include-quotes |
| cat "$tmp"/include-if |
| ) | sed -e '/^$/d' -e 's/^/ /' |
| rm -f "$tmp"/include-angles "$tmp"/include-quotes "$tmp"/include-if |
|
|
| for module in $main_modules; do |
| func_get_link_directive "$module" |
| done \ |
| | LC_ALL=C sort -u | sed -e '/^$/d' -e 's/^/ /' > "$tmp"/link |
| if test `wc -l < "$tmp"/link` != 0; then |
| echo |
| echo "You may need to use the following Makefile variables when linking." |
| echo "Use them in <program>_LDADD when linking a program, or" |
| echo "in <library>_a_LDFLAGS or <library>_la_LDFLAGS when linking a library." |
| cat "$tmp"/link |
| fi |
| rm -f "$tmp"/link |
|
|
| echo |
| echo "Don't forget to" |
| if test "$source_makefile_am" = Makefile.am; then |
| echo " - add \"$sourcebase/Makefile\" to AC_CONFIG_FILES in $configure_ac," |
| else |
| echo " - \"include $source_makefile_am\" from within \"$sourcebase/Makefile.am\"," |
| fi |
| if test -n "$pobase"; then |
| echo " - add \"$pobase/Makefile.in\" to AC_CONFIG_FILES in $configure_ac," |
| fi |
| if $gentests; then |
| if test "$tests_makefile_am" = Makefile.am; then |
| echo " - add \"$testsbase/Makefile\" to AC_CONFIG_FILES in $configure_ac," |
| else |
| echo " - \"include $tests_makefile_am\" from within \"$testsbase/Makefile.am\"," |
| fi |
| fi |
| edit=0 |
| while test $edit != $makefile_am_edits; do |
| edit=`expr $edit + 1` |
| eval dir=\"\$makefile_am_edit${edit}_dir\" |
| eval var=\"\$makefile_am_edit${edit}_var\" |
| eval val=\"\$makefile_am_edit${edit}_val\" |
| if test -n "$var"; then |
| if test "$var" = ACLOCAL_AMFLAGS; then |
| echo " - mention \"-I ${val}\" in ${var} in ${dir}Makefile.am" |
| echo " or add an AC_CONFIG_MACRO_DIRS([${val}]) invocation in $configure_ac," |
| else |
| echo " - mention \"${val}\" in ${var} in ${dir}Makefile.am," |
| fi |
| fi |
| done |
| if grep '^ *AC_PROG_CC_STDC' "$configure_ac" > /dev/null; then |
| echo " - replace AC_PROG_CC_STDC with AC_PROG_CC in $configure_ac," |
| position_early_after=AC_PROG_CC_STDC |
| else |
| if grep '^ *AC_PROG_CC_C99' "$configure_ac" > /dev/null; then |
| echo " - replace AC_PROG_CC_C99 with AC_PROG_CC in $configure_ac," |
| position_early_after=AC_PROG_CC_C99 |
| else |
| position_early_after=AC_PROG_CC |
| fi |
| fi |
| echo " - invoke ${macro_prefix}_EARLY in $configure_ac, right after $position_early_after," |
| echo " - invoke ${macro_prefix}_INIT in $configure_ac." |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| func_create_testdir () |
| { |
| testdir="$1" |
| modules="$2" |
| if test -z "$modules"; then |
| |
| |
| |
| |
| |
| |
| modules=`func_all_modules` |
| modules=`for m in $modules; do case $m in config-h | non-recursive-gnulib-prefix-hack | timevar | lib-ignore) ;; *) echo $m;; esac; done` |
| else |
| |
| modules=`for module in $modules; do func_verify_module; if test -n "$module"; then echo "$module"; fi; done` |
| fi |
| specified_modules="$modules" |
|
|
| |
| specified_modules=`for m in $specified_modules; do echo $m; done | LC_ALL=C sort -u` |
|
|
| |
| |
| if $inctests && $single_configure; then |
| avoidlist="$avoidlist havelib-tests" |
| fi |
|
|
| |
| |
| inc_all_direct_tests=true |
| inc_all_indirect_tests="$inc_all_tests" |
|
|
| |
| |
| saved_inctests="$inctests" |
| |
| |
| |
| inctests=false |
| for requested_module in $specified_modules; do |
| requested_license=`func_get_license "$requested_module"` |
| if test "$requested_license" != GPL; then |
| |
| |
| |
| |
| modules="$requested_module" |
| func_modules_transitive_closure |
| for module in $modules; do |
| license=`func_get_license "$module"` |
| case "$license" in |
| 'GPLv2+ build tool' | 'GPLed build tool') ;; |
| 'public domain' | 'unlimited' | 'unmodifiable license text') ;; |
| *) |
| case "$requested_license" in |
| GPLv3+ | GPL) |
| case "$license" in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+' | LGPLv3+ | LGPL | GPLv2+ | GPLv3+ | GPL) ;; |
| *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;; |
| esac |
| ;; |
| GPLv2+) |
| case "$license" in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+' | GPLv2+) ;; |
| *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;; |
| esac |
| ;; |
| LGPLv3+ | LGPL) |
| case "$license" in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+' | LGPLv3+ | LGPL) ;; |
| *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;; |
| esac |
| ;; |
| 'LGPLv3+ or GPLv2+') |
| case "$license" in |
| LGPLv2+ | 'LGPLv3+ or GPLv2+') ;; |
| *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;; |
| esac |
| ;; |
| LGPLv2+) |
| case "$license" in |
| LGPLv2+) ;; |
| *) func_warning "module $requested_module depends on a module with an incompatible license: $module" ;; |
| esac |
| ;; |
| esac |
| ;; |
| esac |
| done |
| fi |
| done |
| inctests="$saved_inctests" |
|
|
| |
| sourcebase=gllib |
| m4base=glm4 |
| pobase= |
| docbase=gldoc |
| testsbase=gltests |
| macro_prefix=gl |
| po_domain= |
| witness_c_macro= |
| vc_files= |
|
|
| |
| modules="$specified_modules" |
| func_modules_transitive_closure |
| if test $verbose -ge 0; then |
| func_show_module_list |
| fi |
| final_modules="$modules" |
|
|
| if $single_configure; then |
| |
| func_modules_transitive_closure_separately |
| fi |
|
|
| if $single_configure; then |
| |
| func_determine_use_libtests |
| fi |
|
|
| |
| if $single_configure; then |
| func_modules_add_dummy_separately |
| else |
| func_modules_add_dummy |
| fi |
|
|
| |
| |
| |
| |
|
|
| |
| if $single_configure; then |
| modules="$main_modules" |
| func_modules_notice |
| else |
| func_modules_notice |
| fi |
|
|
| |
| if $single_configure; then |
| func_modules_to_filelist_separately |
| else |
| main_modules="$modules" |
| testsrelated_modules=`for module in $modules; do |
| if \`func_repeat_module_in_tests\`; then |
| echo $module |
| fi |
| done` |
| saved_modules="$modules" |
| func_modules_to_filelist_separately |
| modules="$saved_modules" |
| fi |
| |
| |
| files="$files build-aux/config.guess" |
| files="$files build-aux/config.sub" |
| files=`for f in $files; do echo $f; done | LC_ALL=C sort -u` |
|
|
| rewritten='%REWRITTEN%' |
| sed_rewrite_files="\ |
| s,^build-aux/,$rewritten$auxdir/, |
| s,^doc/,$rewritten$docbase/, |
| s,^lib/,$rewritten$sourcebase/, |
| s,^m4/,$rewritten$m4base/, |
| s,^tests/,$rewritten$testsbase/, |
| s,^tests=lib/,$rewritten$testsbase/, |
| s,^top/,$rewritten, |
| s,^$rewritten,," |
|
|
| |
| for f in $files; do echo $f; done \ |
| | sed -e "$sed_rewrite_files" \ |
| | sed -n -e 's,^\(.*\)/[^/]*,\1,p' \ |
| | LC_ALL=C sort -u \ |
| > "$tmp"/dirs |
| { |
| |
| exec 5<&0 < "$tmp"/dirs |
| while read d; do |
| mkdir -p "$testdir/$d" |
| done |
| exec 0<&5 5<&- |
| } |
|
|
| |
| delimiter=' ' |
| for f in $files; do echo $f; done \ |
| | sed -e "s,^.*\$,&$delimiter&," -e "$sed_rewrite_files" \ |
| | LC_ALL=C sort \ |
| > "$tmp"/files |
| { |
| |
| exec 5<&0 < "$tmp"/files |
| while read g f; do |
| case "$f" in |
| tests=lib/*) f=`echo "$f" | sed -e 's,^tests=lib/,lib/,'` ;; |
| esac |
| func_lookup_file "$f" |
| if test -n "$lookedup_tmp"; then |
| cp -p "$lookedup_file" "$testdir/$g" |
| func_ensure_writable "$testdir/$g" |
| else |
| func_should_link |
| if test "$copyaction" = symlink; then |
| func_symlink "$lookedup_file" "$testdir/$g" |
| else |
| if test "$copyaction" = hardlink; then |
| func_hardlink "$lookedup_file" "$testdir/$g" |
| else |
| cp -p "$lookedup_file" "$testdir/$g" |
| func_ensure_writable "$testdir/$g" |
| fi |
| fi |
| fi |
| done |
| exec 0<&5 5<&- |
| } |
|
|
| |
| func_compute_include_guard_prefix |
|
|
| |
| for_test=true |
|
|
| |
| makefile_am_edits=0 |
|
|
| |
| mkdir -p "$testdir/$sourcebase" |
| destfile="$sourcebase/Makefile.am" |
| if $single_configure; then |
| modules="$main_modules" |
| fi |
| func_emit_lib_Makefile_am > "$testdir/$sourcebase/Makefile.am" |
|
|
| |
| mkdir -p "$testdir/$m4base" |
| (echo "## Process this file with automake to produce Makefile.in." |
| echo |
| echo "EXTRA_DIST =" |
| for f in $files; do |
| case "$f" in |
| m4/* ) |
| echo "EXTRA_DIST += "`echo "$f" | sed -e 's,^m4/,,'` ;; |
| esac |
| done |
| ) > "$testdir/$m4base/Makefile.am" |
|
|
| subdirs="$sourcebase $m4base" |
| subdirs_with_configure_ac="" |
|
|
| if false && test -f "$testdir"/$m4base/gettext.m4; then |
| |
| |
| mkdir -p "$testdir/po" |
| (echo "## Process this file with automake to produce Makefile.in." |
| ) > "$testdir/po/Makefile.am" |
| func_append subdirs " po" |
| fi |
|
|
| if $inctests; then |
| test -d "$testdir/$testsbase" || mkdir "$testdir/$testsbase" |
| if $single_configure; then |
| |
| destfile="$testsbase/Makefile.am" |
| modules="$testsrelated_modules" |
| func_emit_tests_Makefile_am "${macro_prefix}tests_WITNESS" > "$testdir/$testsbase/Makefile.am" |
| else |
| |
| saved_auxdir="$auxdir" |
| auxdir=`echo "$testsbase/" | sed -e 's%[^/][^/]*//*%../%g'`"$auxdir" |
| |
| use_libtests=false |
| destfile="$testsbase/Makefile.am" |
| func_emit_tests_Makefile_am "" > "$testdir/$testsbase/Makefile.am" |
| |
| (echo "# Process this file with autoconf to produce a configure script." |
| echo "AC_INIT([dummy], [0])" |
| echo "AC_CONFIG_AUX_DIR([$auxdir])" |
| echo "AM_INIT_AUTOMAKE" |
| echo |
| echo "AC_CONFIG_HEADERS([config.h])" |
| echo |
| echo "AC_PROG_CC" |
| echo "AC_PROG_INSTALL" |
| echo "AC_PROG_MAKE_SET" |
|
|
| func_emit_pre_early_macros false '' "$modules" |
|
|
| for module in $modules; do |
| func_verify_module |
| if test -n "$module"; then |
| case $module in |
| gnumakefile | maintainer-makefile) |
| |
| ;; |
| *) |
| func_get_autoconf_early_snippet "$module" |
| ;; |
| esac |
| fi |
| done \ |
| | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)])/\1/' |
| if test "$libtool" = true; then |
| echo "LT_INIT([win32-dll])" |
| echo "LT_LANG([C++])" |
| echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])" |
| echo "gl_cond_libtool=true" |
| else |
| echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])" |
| echo "gl_cond_libtool=false" |
| echo "gl_libdeps=" |
| echo "gl_ltlibdeps=" |
| fi |
| |
| |
| |
| |
| |
| |
| |
| echo "AC_DEFUN([gl_INIT], [" |
| sed_replace_build_aux=' |
| :a |
| /AC_CONFIG_FILES(.*:build-aux\/.*)/{ |
| s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)| |
| ba |
| }' |
| echo "gl_m4_base='../$m4base'" |
| func_emit_initmacro_start $macro_prefix true |
| |
| |
| |
| func_emit_shellvars_init true "../$sourcebase" |
| func_emit_autoconf_snippets "$modules" "$modules" func_verify_nontests_module false false false |
| func_emit_shellvars_init true '.' |
| func_emit_autoconf_snippets "$modules" "$modules" func_verify_tests_module false false false |
| func_emit_initmacro_end $macro_prefix true |
| |
| |
| if test "$libtool" != true; then |
| libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'` |
| echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\"" |
| echo " AC_SUBST([${libname_upper}_LIBDEPS])" |
| echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\"" |
| echo " AC_SUBST([${libname_upper}_LTLIBDEPS])" |
| fi |
| echo "])" |
| func_emit_initmacro_done $macro_prefix $sourcebase |
| echo |
| echo "gl_INIT" |
| echo |
| |
| |
| echo "AH_TOP([#include \"../config.h\"])" |
| echo |
| echo "AC_CONFIG_FILES([Makefile])" |
| echo "AC_OUTPUT" |
| ) > "$testdir/$testsbase/configure.ac" |
| auxdir="$saved_auxdir" |
| subdirs_with_configure_ac="$subdirs_with_configure_ac $testsbase" |
| fi |
| func_append subdirs " $testsbase" |
| fi |
|
|
| |
| (echo "## Process this file with automake to produce Makefile.in." |
| echo |
| echo "AUTOMAKE_OPTIONS = 1.14 foreign" |
| echo |
| echo "SUBDIRS = $subdirs" |
| echo |
| echo "ACLOCAL_AMFLAGS = -I $m4base" |
| ) > "$testdir/Makefile.am" |
|
|
| |
| (echo "# Process this file with autoconf to produce a configure script." |
| echo "AC_INIT([dummy], [0])" |
| if test "$auxdir" != "."; then |
| echo "AC_CONFIG_AUX_DIR([$auxdir])" |
| fi |
| echo "AM_INIT_AUTOMAKE" |
| echo |
| echo "AC_CONFIG_HEADERS([config.h])" |
| echo |
| echo "AC_PROG_CC" |
| echo "AC_PROG_INSTALL" |
| echo "AC_PROG_MAKE_SET" |
| echo |
| echo "# For autobuild." |
| echo "AC_CANONICAL_BUILD" |
| echo "AC_CANONICAL_HOST" |
| echo |
| echo "m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace" |
| echo "m4_pattern_allow([^gl_ES\$])dnl a valid locale name" |
| echo "m4_pattern_allow([^gl_LIBOBJS\$])dnl a variable" |
| echo "m4_pattern_allow([^gl_LTLIBOBJS\$])dnl a variable" |
|
|
| func_emit_pre_early_macros false '' "$final_modules" |
|
|
| for module in $final_modules; do |
| if $single_configure; then |
| func_verify_module |
| else |
| func_verify_nontests_module |
| fi |
| if test -n "$module"; then |
| func_get_autoconf_early_snippet "$module" |
| fi |
| done \ |
| | sed -e '/^$/d;' -e 's/AC_REQUIRE(\[\([^()]*\)])/\1/' |
| if test "$libtool" = true; then |
| echo "LT_INIT([win32-dll])" |
| echo "LT_LANG([C++])" |
| echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [true])" |
| echo "gl_cond_libtool=true" |
| else |
| echo "AM_CONDITIONAL([GL_COND_LIBTOOL], [false])" |
| echo "gl_cond_libtool=false" |
| echo "gl_libdeps=" |
| echo "gl_ltlibdeps=" |
| fi |
| |
| |
| |
| |
| |
| |
| |
| echo "AC_DEFUN([gl_INIT], [" |
| if test "$auxdir" != "build-aux"; then |
| sed_replace_build_aux=' |
| :a |
| /AC_CONFIG_FILES(.*:build-aux\/.*)/{ |
| s|AC_CONFIG_FILES(\(.*\):build-aux/\(.*\))|AC_CONFIG_FILES(\1:'"$auxdir"'/\2)| |
| ba |
| }' |
| else |
| sed_replace_build_aux="$sed_noop" |
| fi |
| echo "gl_m4_base='$m4base'" |
| func_emit_initmacro_start $macro_prefix false |
| func_emit_shellvars_init false "$sourcebase" |
| if $single_configure; then |
| func_emit_autoconf_snippets "$main_modules" "$main_modules" func_verify_module true false false |
| else |
| func_emit_autoconf_snippets "$modules" "$modules" func_verify_nontests_module true false false |
| fi |
| func_emit_initmacro_end $macro_prefix false |
| if $single_configure; then |
| echo " gltests_libdeps=" |
| echo " gltests_ltlibdeps=" |
| func_emit_initmacro_start ${macro_prefix}tests true |
| func_emit_shellvars_init true "$testsbase" |
| |
| echo " ${macro_prefix}tests_WITNESS=IN_GNULIB_TESTS" |
| echo " AC_SUBST([${macro_prefix}tests_WITNESS])" |
| echo " gl_module_indicator_condition=\$${macro_prefix}tests_WITNESS" |
| echo " m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [\$gl_module_indicator_condition])" |
| func_emit_autoconf_snippets "$testsrelated_modules" "$main_modules $testsrelated_modules" func_verify_module true false false |
| echo " m4_popdef([gl_MODULE_INDICATOR_CONDITION])" |
| func_emit_initmacro_end ${macro_prefix}tests true |
| fi |
| |
| |
| if test "$libtool" != true; then |
| libname_upper=`echo "$libname" | LC_ALL=C tr '[a-z]-' '[A-Z]_'` |
| echo " ${libname_upper}_LIBDEPS=\"\$gl_libdeps\"" |
| echo " AC_SUBST([${libname_upper}_LIBDEPS])" |
| echo " ${libname_upper}_LTLIBDEPS=\"\$gl_ltlibdeps\"" |
| echo " AC_SUBST([${libname_upper}_LTLIBDEPS])" |
| fi |
| if $single_configure; then |
| if $use_libtests; then |
| echo " LIBTESTS_LIBDEPS=\"\$gltests_libdeps\"" |
| echo " AC_SUBST([LIBTESTS_LIBDEPS])" |
| fi |
| fi |
| echo "])" |
| func_emit_initmacro_done $macro_prefix $sourcebase |
| if $single_configure; then |
| func_emit_initmacro_done ${macro_prefix}tests $testsbase |
| fi |
| echo |
| echo "gl_INIT" |
| echo |
| if test -n "$subdirs_with_configure_ac"; then |
| echo "AC_CONFIG_SUBDIRS(["`echo $subdirs_with_configure_ac`"])" |
| fi |
| makefiles="Makefile" |
| for d in $subdirs; do |
| |
| |
| case " $subdirs_with_configure_ac " in |
| *" $d "*) ;; |
| *) func_append makefiles " $d/Makefile" ;; |
| esac |
| done |
| echo "AC_CONFIG_FILES([$makefiles])" |
| echo "AC_OUTPUT" |
| ) > "$testdir/configure.ac" |
|
|
| |
| (cd "$testdir" |
| |
| |
| if test -f $m4base/gettext.m4; then |
| func_execute_command ${AUTOPOINT} --force || func_exit 1 |
| for f in $m4base/*.m4~; do |
| if test -f $f; then |
| mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1 |
| fi |
| done |
| fi |
| if test "$libtool" = true; then |
| func_execute_command ${LIBTOOLIZE} --copy || func_exit 1 |
| fi |
| func_execute_command ${ACLOCAL} -I $m4base || func_exit 1 |
| if ! test -d build-aux; then |
| func_execute_command mkdir build-aux || func_exit 1 |
| fi |
| func_execute_command ${AUTOCONF} || func_exit 1 |
| |
| func_execute_command ${AUTOHEADER} && |
| func_execute_command touch config.h.in || |
| func_exit 1 |
| func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 |
| rm -rf autom4te.cache |
| ) || func_exit 1 |
| if $inctests && ! $single_configure; then |
| |
| (cd "$testdir/$testsbase" || func_exit 1 |
| |
| |
| if test -f ../$m4base/gettext.m4; then |
| func_execute_command ${AUTOPOINT} --force || func_exit 1 |
| for f in ../$m4base/*.m4~; do |
| if test -f $f; then |
| mv -f $f `echo $f | sed -e 's,~$,,'` || func_exit 1 |
| fi |
| done |
| fi |
| func_execute_command ${ACLOCAL} -I ../$m4base || func_exit 1 |
| if ! test -d ../build-aux; then |
| func_execute_command mkdir ../build-aux |
| fi |
| func_execute_command ${AUTOCONF} || func_exit 1 |
| |
| func_execute_command ${AUTOHEADER} && |
| func_execute_command touch config.h.in || |
| func_exit 1 |
| func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 |
| rm -rf autom4te.cache |
| ) || func_exit 1 |
| fi |
| |
| |
| sed_remove_make_variables='s,[$]([A-Za-z0-9_]*),,g' |
| |
| cleaned_files=`combine_lines < "$testdir/$sourcebase/Makefile.am" \ |
| | sed -n -e 's,^CLEANFILES[ ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[ ]*+=\([^#]*\).*$,\1,p'` |
| cleaned_files=`for file in $cleaned_files; do echo " $file "; done` |
| |
| |
| built_sources=`combine_lines < "$testdir/$sourcebase/Makefile.am" \ |
| | sed -n -e 's,^BUILT_SOURCES[ ]*+=\([^#]*\).*$,\1,p' \ |
| | sed -e "$sed_remove_make_variables"` |
| distributed_built_sources=`for file in $built_sources; do |
| case "$cleaned_files" in |
| *" "$file" "*) ;; |
| *) echo $file ;; |
| esac; |
| done` |
| tests_distributed_built_sources= |
| if $inctests; then |
| |
| tests_cleaned_files=`combine_lines < "$testdir/$testsbase/Makefile.am" \ |
| | sed -n -e 's,^CLEANFILES[ ]*+=\([^#]*\).*$,\1,p' -e 's,^MOSTLYCLEANFILES[ ]*+=\([^#]*\).*$,\1,p'` |
| tests_cleaned_files=`for file in $tests_cleaned_files; do echo " $file "; done` |
| tests_built_sources=`combine_lines < "$testdir/$testsbase/Makefile.am" \ |
| | sed -n -e 's,^BUILT_SOURCES[ ]*+=\([^#]*\).*$,\1,p' \ |
| | sed -e "$sed_remove_make_variables"` |
| tests_distributed_built_sources=`for file in $tests_built_sources; do |
| case "$tests_cleaned_files" in |
| *" "$file" "*) ;; |
| *) echo $file ;; |
| esac; |
| done` |
| fi |
| if test -n "$distributed_built_sources" || test -n "$tests_distributed_built_sources"; then |
| (cd "$testdir" |
| ./configure || func_exit 1 |
| if test -n "$distributed_built_sources"; then |
| cd "$sourcebase" |
| echo 'built_sources: $(BUILT_SOURCES)' >> Makefile |
| $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \ |
| built_sources \ |
| || func_exit 1 |
| cd .. |
| fi |
| if test -n "$tests_distributed_built_sources"; then |
| cd "$testsbase" |
| echo 'built_sources: $(BUILT_SOURCES)' >> Makefile |
| $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \ |
| built_sources \ |
| || func_exit 1 |
| cd .. |
| fi |
| $MAKE AUTOCONF="${AUTOCONF}" AUTOHEADER="${AUTOHEADER}" ACLOCAL="${ACLOCAL}" AUTOMAKE="${AUTOMAKE}" AUTORECONF="${AUTORECONF}" AUTOPOINT="${AUTOPOINT}" LIBTOOLIZE="${LIBTOOLIZE}" \ |
| distclean \ |
| || func_exit 1 |
| ) || func_exit 1 |
| fi |
| (cd "$testdir" |
| if test -f build-aux/test-driver; then |
| echo "patching file build-aux/test-driver" |
| patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver.diff >/dev/null 2>&1 \ |
| || { rm -f build-aux/test-driver.orig build-aux/test-driver.rej |
| patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver-1.16.3.diff >/dev/null 2>&1 \ |
| || { rm -f build-aux/test-driver.orig build-aux/test-driver.rej |
| func_fatal_error "could not patch test-driver script" |
| } |
| } |
| rm -f build-aux/test-driver.orig |
| fi |
| ) || func_exit 1 |
| } |
|
|
| |
| |
| |
| |
| |
| func_create_megatestdir () |
| { |
| megatestdir="$1" |
| allmodules="$2" |
| if test -z "$allmodules"; then |
| allmodules=`func_all_modules` |
| fi |
|
|
| megasubdirs= |
| |
| for onemodule in $allmodules; do |
| func_create_testdir "$megatestdir/$onemodule" $onemodule |
| func_append megasubdirs "$onemodule " |
| done |
| |
| |
| allmodules=`for m in $allmodules; do if test $m != config-h; then echo $m; fi; done` |
| func_create_testdir "$megatestdir/ALL" "$allmodules" |
| func_append megasubdirs "ALL" |
|
|
| |
| cvsdate=`vc_witness="$gnulib_dir/.git/refs/heads/master"; \ |
| test -f "$vc_witness" || vc_witness="$gnulib_dir/ChangeLog" |
| sh "$gnulib_dir/build-aux/mdate-sh" "$vc_witness" \ |
| | sed -e 's,January,01,' -e 's,Jan,01,' \ |
| -e 's,February,02,' -e 's,Feb,02,' \ |
| -e 's,March,03,' -e 's,Mar,03,' \ |
| -e 's,April,04,' -e 's,Apr,04,' \ |
| -e 's,May,05,' \ |
| -e 's,June,06,' -e 's,Jun,06,' \ |
| -e 's,July,07,' -e 's,Jul,07,' \ |
| -e 's,August,08,' -e 's,Aug,08,' \ |
| -e 's,September,09,' -e 's,Sep,09,' \ |
| -e 's,October,10,' -e 's,Oct,10,' \ |
| -e 's,November,11,' -e 's,Nov,11,' \ |
| -e 's,December,12,' -e 's,Dec,12,' \ |
| -e 's,^,00,' -e 's,^[0-9]*\([0-9][0-9] \),\1,' \ |
| -e 's,^\([0-9]*\) \([0-9]*\) \([0-9]*\),\3\2\1,'` |
| (echo '#!/bin/sh' |
| echo "CVSDATE=$cvsdate" |
| echo ": \${MAKE=make}" |
| echo "test -d logs || mkdir logs" |
| echo "for module in $megasubdirs; do" |
| echo " echo \"Working on module \$module...\"" |
| echo " safemodule=\`echo \$module | sed -e 's|/|-|g'\`" |
| echo " (echo \"To: gnulib@autobuild.josefsson.org\"" |
| echo " echo" |
| echo " set -x" |
| echo " : autobuild project... \$module" |
| echo " : autobuild revision... cvs-\$CVSDATE-000000" |
| echo " : autobuild timestamp... \`date \"+%Y%m%d-%H%M%S\"\`" |
| echo " : autobuild hostname... \`hostname\`" |
| echo " cd \$module && ./configure \$CONFIGURE_OPTIONS && \$MAKE && \$MAKE check && \$MAKE distclean" |
| echo " echo rc=\$?" |
| echo " ) 2>&1 | { if test -n \"\$AUTOBUILD_SUBST\"; then sed -e \"\$AUTOBUILD_SUBST\"; else cat; fi; } > logs/\$safemodule" |
| echo "done" |
| ) > "$megatestdir/do-autobuild" |
| chmod a+x "$megatestdir/do-autobuild" |
|
|
| |
| (echo "## Process this file with automake to produce Makefile.in." |
| echo |
| echo "AUTOMAKE_OPTIONS = 1.14 foreign" |
| echo |
| echo "SUBDIRS = $megasubdirs" |
| echo |
| echo "EXTRA_DIST = do-autobuild" |
| ) > "$megatestdir/Makefile.am" |
|
|
| |
| (echo "# Process this file with autoconf to produce a configure script." |
| echo "AC_INIT([dummy], [0])" |
| if test "$auxdir" != "."; then |
| echo "AC_CONFIG_AUX_DIR([$auxdir])" |
| fi |
| echo "AM_INIT_AUTOMAKE" |
| echo |
| echo "AC_PROG_MAKE_SET" |
| echo |
| echo "AC_CONFIG_SUBDIRS([$megasubdirs])" |
| echo "AC_CONFIG_FILES([Makefile])" |
| echo "AC_OUTPUT" |
| ) > "$megatestdir/configure.ac" |
|
|
| |
| (cd "$megatestdir" |
| |
| |
| |
| func_execute_command ${ACLOCAL} || func_exit 1 |
| func_execute_command mkdir build-aux |
| func_execute_command ${AUTOCONF} || func_exit 1 |
| func_execute_command ${AUTOMAKE} --add-missing --copy || func_exit 1 |
| rm -rf autom4te.cache |
| if test -f build-aux/test-driver; then |
| echo "patching file build-aux/test-driver" |
| patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver.diff >/dev/null 2>&1 \ |
| || { rm -f build-aux/test-driver.orig build-aux/test-driver.rej |
| patch build-aux/test-driver < "$gnulib_dir"/build-aux/test-driver-1.16.3.diff >/dev/null 2>&1 \ |
| || { rm -f build-aux/test-driver.orig build-aux/test-driver.rej |
| func_fatal_error "could not patch test-driver script" |
| } |
| } |
| fi |
| ) || func_exit 1 |
| } |
|
|
| case $mode in |
| "" ) |
| func_fatal_error "no mode specified" ;; |
|
|
| list ) |
| func_all_modules |
| ;; |
|
|
| find ) |
| |
| |
| sed_literal_to_basic_regex='s/\\/\\\\/g |
| s/\[/\\[/g |
| s/\^/\\^/g |
| s/\([.*$]\)/[\1]/g' |
| |
| |
| func_prefixed_modules_in_dir () |
| { |
| (test -d "$1" && cd "$1" && find modules -type f -print | sed -e "s|^|$1/|") |
| } |
| for filename |
| do |
| if test -f "$gnulib_dir/$filename" \ |
| || func_lookup_local_file "$filename"; then |
| filename_anywhere_regex=`echo "$filename" | sed -e "$sed_literal_to_basic_regex"` |
| filename_line_regex='^'"$filename_anywhere_regex"'$' |
| module_candidates=` |
| { |
| (cd "$gnulib_dir" && find modules -type f -print | xargs -n 100 grep -l "$filename_line_regex" /dev/null | sed -e 's,^modules/,,') |
| func_path_foreach "$local_gnulib_path" func_prefixed_modules_in_dir %dir% | xargs -n 100 grep -l "$filename_anywhere_regex" /dev/null | sed -e 's,^.*/modules/,,' -e 's,\.diff$,,' |
| } \ |
| | func_sanitize_modulelist \ |
| | LC_ALL=C sort -u |
| ` |
| for module in $module_candidates; do |
| if func_get_filelist $module | grep "$filename_line_regex" > /dev/null; then |
| echo $module |
| fi |
| done |
| else |
| func_warning "file $filename does not exist" |
| fi |
| done |
| ;; |
|
|
| import | add-import | remove-import | update ) |
|
|
| |
| if test -z "$destdir"; then |
| destdir=. |
| fi |
| test -d "$destdir" \ |
| || func_fatal_error "destination directory does not exist: $destdir" |
|
|
| |
| if test -f "$destdir"/configure.ac; then |
| configure_ac="$destdir/configure.ac" |
| else |
| if test -f "$destdir"/configure.in; then |
| configure_ac="$destdir/configure.in" |
| else |
| func_fatal_error "cannot find $destdir/configure.ac - make sure you run gnulib-tool from within your package's directory" |
| fi |
| fi |
|
|
| |
| guessed_auxdir="." |
| guessed_libtool=false |
| guessed_m4dirs= |
| my_sed_traces=' |
| s,#.*$,, |
| s,^dnl .*$,, |
| s, dnl .*$,, |
| /AC_CONFIG_AUX_DIR/ { |
| s,^.*AC_CONFIG_AUX_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_auxdir="\1",p |
| } |
| /A[CM]_PROG_LIBTOOL/ { |
| s,^.*$,guessed_libtool=true,p |
| } |
| /AC_CONFIG_MACRO_DIR/ { |
| s,^.*AC_CONFIG_MACRO_DIR([[ ]*\([^]"$`\\)]*\).*$,guessed_m4dirs="${guessed_m4dirs} \1",p |
| } |
| /AC_CONFIG_MACRO_DIRS/ { |
| s,^.*AC_CONFIG_MACRO_DIRS([[ ]*\([^]"$`\\)]*\).*$,guessed_m4dirs="${guessed_m4dirs} \1",p |
| }' |
| eval `sed -n -e "$my_sed_traces" < "$configure_ac"` |
|
|
| if test -z "$auxdir"; then |
| auxdir="$guessed_auxdir" |
| fi |
|
|
| |
| if test "$mode" = import; then |
| |
| |
| |
| test -n "$supplied_libname" || supplied_libname=true |
| test -n "$sourcebase" || sourcebase="lib" |
| test -n "$m4base" || m4base="m4" |
| test -n "$docbase" || docbase="doc" |
| test -n "$testsbase" || testsbase="tests" |
| test -n "$macro_prefix" || macro_prefix="gl" |
| func_import "$*" |
| else |
| if test -n "$m4base"; then |
| |
| |
| if test ! -f "$destdir/$m4base"/gnulib-cache.m4; then |
| |
| test -n "$supplied_libname" || supplied_libname=true |
| test -n "$sourcebase" || sourcebase="lib" |
| test -n "$docbase" || docbase="doc" |
| test -n "$testsbase" || testsbase="tests" |
| test -n "$macro_prefix" || macro_prefix="gl" |
| fi |
| func_import "$*" |
| else |
| |
| |
| |
| |
| |
| m4dirs= |
| m4dirs_count=0 |
| if test -f "$destdir"/Makefile.am; then |
| aclocal_amflags=`sed -n -e 's/^ACLOCAL_AMFLAGS[ ]*=\(.*\)$/\1/p' "$destdir"/Makefile.am` |
| m4dir_is_next= |
| for arg in $aclocal_amflags; do |
| if test -n "$m4dir_is_next"; then |
| |
| case "$arg" in |
| /*) ;; |
| *) |
| if test -f "$destdir/$arg"/gnulib-cache.m4; then |
| func_append m4dirs " $arg" |
| m4dirs_count=`expr $m4dirs_count + 1` |
| fi |
| ;; |
| esac |
| m4dir_is_next= |
| else |
| if test "X$arg" = "X-I"; then |
| m4dir_is_next=yes |
| else |
| m4dir_is_next= |
| fi |
| fi |
| done |
| for arg in $guessed_m4dirs; do |
| |
| case "$arg" in |
| /*) ;; |
| *) |
| if test -f "$destdir/$arg"/gnulib-cache.m4; then |
| func_append m4dirs " $arg" |
| m4dirs_count=`expr $m4dirs_count + 1` |
| fi |
| ;; |
| esac |
| done |
| else |
| |
| if test -f "$destdir"/aclocal.m4; then |
| sedexpr1='s,^m4_include(\[\(.*\)])$,\1,p' |
| sedexpr2='s,^[^/]*$,.,' |
| sedexpr3='s,/[^/]*$,,' |
| m4dirs=`sed -n -e "$sedexpr1" aclocal.m4 | sed -e "$sedexpr2" -e "$sedexpr3" | LC_ALL=C sort -u` |
| m4dirs=`for arg in $m4dirs; do if test -f "$destdir/$arg"/gnulib-cache.m4; then echo $arg; fi; done` |
| m4dirs_count=`for arg in $m4dirs; do echo "$arg"; done | wc -l` |
| fi |
| fi |
| if test $m4dirs_count = 0; then |
| |
| |
| test -n "$supplied_libname" || supplied_libname=true |
| test -n "$sourcebase" || sourcebase="lib" |
| m4base="m4" |
| test -n "$docbase" || docbase="doc" |
| test -n "$testsbase" || testsbase="tests" |
| test -n "$macro_prefix" || macro_prefix="gl" |
| func_import "$*" |
| else |
| if test $m4dirs_count = 1; then |
| |
| |
| for m4base in $m4dirs; do |
| func_import "$*" |
| done |
| else |
| |
| if test $# = 0; then |
| |
| for m4base in $m4dirs; do |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| (func_import) || func_exit 1 |
| done |
| else |
| |
| func_fatal_error "Ambiguity: to which directory should the modules be added? Please specify at least --m4-base=..." |
| fi |
| fi |
| fi |
| fi |
| fi |
| ;; |
|
|
| create-testdir ) |
| if test -z "$destdir"; then |
| func_fatal_error "please specify --dir option" |
| fi |
| if test -d "$destdir"; then |
| func_fatal_error "not overwriting destination directory: $destdir" |
| fi |
| mkdir "$destdir" |
| test -d "$destdir" \ |
| || func_fatal_error "could not create destination directory" |
| test -n "$auxdir" || auxdir="build-aux" |
| func_create_testdir "$destdir" "$*" |
| ;; |
|
|
| create-megatestdir ) |
| if test -z "$destdir"; then |
| func_fatal_error "please specify --dir option" |
| fi |
| if test -d "$destdir"; then |
| func_fatal_error "not overwriting destination directory: $destdir" |
| fi |
| mkdir "$destdir" || func_fatal_error "could not create destination directory" |
| test -n "$auxdir" || auxdir="build-aux" |
| func_create_megatestdir "$destdir" "$*" |
| ;; |
|
|
| test ) |
| test -n "$destdir" || destdir=testdir$$ |
| mkdir "$destdir" || func_fatal_error "could not create destination directory" |
| test -n "$auxdir" || auxdir="build-aux" |
| func_create_testdir "$destdir" "$*" |
| cd "$destdir" |
| mkdir build |
| cd build |
| ../configure || func_exit 1 |
| $MAKE || func_exit 1 |
| $MAKE check || func_exit 1 |
| $MAKE distclean || func_exit 1 |
| remaining=`find . -type f -print` |
| if test -n "$remaining"; then |
| echo "Remaining files:" $remaining 1>&2 |
| echo "gnulib-tool: *** Stop." 1>&2 |
| func_exit 1 |
| fi |
| cd .. |
| cd .. |
| rm -rf "$destdir" |
| ;; |
|
|
| megatest ) |
| test -n "$destdir" || destdir=testdir$$ |
| mkdir "$destdir" || func_fatal_error "could not create destination directory" |
| test -n "$auxdir" || auxdir="build-aux" |
| func_create_megatestdir "$destdir" "$*" |
| cd "$destdir" |
| mkdir build |
| cd build |
| ../configure || func_exit 1 |
| $MAKE || func_exit 1 |
| $MAKE check || func_exit 1 |
| $MAKE distclean || func_exit 1 |
| remaining=`find . -type f -print` |
| if test -n "$remaining"; then |
| echo "Remaining files:" $remaining 1>&2 |
| echo "gnulib-tool: *** Stop." 1>&2 |
| func_exit 1 |
| fi |
| cd .. |
| cd .. |
| rm -rf "$destdir" |
| ;; |
|
|
| extract-description ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_description "$module" |
| fi |
| done |
| ;; |
|
|
| extract-comment ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_comment "$module" |
| fi |
| done |
| ;; |
|
|
| extract-status ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_status "$module" |
| fi |
| done |
| ;; |
|
|
| extract-notice ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_notice "$module" |
| fi |
| done |
| ;; |
|
|
| extract-applicability ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_applicability "$module" |
| fi |
| done |
| ;; |
|
|
| extract-filelist ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_filelist "$module" |
| fi |
| done |
| ;; |
|
|
| extract-dependencies ) |
| if test -n "$avoidlist"; then |
| func_fatal_error "cannot combine --avoid and --extract-dependencies" |
| fi |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_dependencies "$module" |
| fi |
| done |
| ;; |
|
|
| extract-recursive-dependencies ) |
| if test -n "$avoidlist"; then |
| func_fatal_error "cannot combine --avoid and --extract-recursive-dependencies" |
| fi |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_dependencies_recursively "$module" |
| fi |
| done |
| ;; |
|
|
| extract-autoconf-snippet ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_autoconf_snippet "$module" |
| fi |
| done |
| ;; |
|
|
| extract-automake-snippet ) |
| test -n "$auxdir" || auxdir="build-aux" |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_automake_snippet "$module" |
| fi |
| done |
| ;; |
|
|
| extract-include-directive ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_include_directive "$module" |
| fi |
| done |
| ;; |
|
|
| extract-link-directive ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_link_directive "$module" |
| fi |
| done |
| ;; |
|
|
| extract-recursive-link-directive ) |
| if test -n "$avoidlist"; then |
| func_fatal_error "cannot combine --avoid and --extract-recursive-link-directive" |
| fi |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_link_directive_recursively "$module" |
| fi |
| done |
| ;; |
|
|
| extract-license ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_license "$module" |
| fi |
| done |
| ;; |
|
|
| extract-maintainer ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_maintainer "$module" |
| fi |
| done |
| ;; |
|
|
| extract-tests-module ) |
| for module |
| do |
| func_verify_module |
| if test -n "$module"; then |
| func_get_tests_module "$module" |
| fi |
| done |
| ;; |
|
|
| copy-file ) |
| |
| if test $# -lt 1 || test $# -gt 2; then |
| func_fatal_error "invalid number of arguments for --$mode" |
| fi |
|
|
| |
| f="$1" |
| |
| func_lookup_file "$f" |
|
|
| |
| |
| dest="$2" |
| test -n "$dest" || dest='.' |
| test -n "$sourcebase" || sourcebase="lib" |
| test -n "$m4base" || m4base="m4" |
| test -n "$docbase" || docbase="doc" |
| test -n "$testsbase" || testsbase="tests" |
| test -n "$auxdir" || auxdir="build-aux" |
| rewritten='%REWRITTEN%' |
| sed_rewrite_files="\ |
| s,^build-aux/,$rewritten$auxdir/, |
| s,^doc/,$rewritten$docbase/, |
| s,^lib/,$rewritten$sourcebase/, |
| s,^m4/,$rewritten$m4base/, |
| s,^tests/,$rewritten$testsbase/, |
| s,^top/,$rewritten, |
| s,^$rewritten,," |
| if test -d "$dest"; then |
| destdir="$dest" |
| g=`echo "$f" | sed -e "$sed_rewrite_files"` |
| else |
| destdir=`dirname "$dest"` |
| g=`basename "$dest"` |
| fi |
|
|
| |
| d=`dirname "$destdir/$g"` |
| if $doit; then |
| if test -n "$d" && test ! -d "$d"; then |
| mkdir -p "$d" || func_fatal_error "failed" |
| fi |
| fi |
| |
| func_dest_tmpfilename "$g" |
| cp "$lookedup_file" "$tmpfile" || func_fatal_error "failed" |
| func_ensure_writable "$tmpfile" |
| already_present=true |
| if test -f "$destdir/$g"; then |
| |
| func_update_file |
| else |
| |
| |
| |
| |
| func_add_file |
| fi |
| rm -f "$tmpfile" |
| ;; |
|
|
| * ) |
| func_fatal_error "unknown operation mode --$mode" ;; |
| esac |
|
|
| if test "$copymode" = hardlink -o "$lcopymode" = hardlink; then |
| |
| |
| |
| |
| if test -d "$gnulib_dir"/.git \ |
| && (git --version) >/dev/null 2>/dev/null; then |
| (cd "$gnulib_dir" && git update-index --refresh >/dev/null) |
| fi |
| fi |
|
|
| rm -rf "$tmp" |
| |
| |
| |
| |
| |
| |
| trap '' EXIT |
| trap 'func_exit $?' HUP INT QUIT PIPE TERM |
|
|
| exit 0 |
|
|
| |
| |
| |
| |
|
|