From 283418cdf9425f5abc13e9097f1507e26f81d54e Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 2 Apr 2019 17:52:20 +0200 Subject: build: Build and install libtextstyle. * autogen.sh: Recurse into libtextstyle directory. * configure.ac: Likewise. * Makefile.am (SUBDIRS): Add libtextstyle. * DEPENDENCIES: Mention that libiconv and ncurses are also used by libtextstyle. * PACKAGING: Recommend to ship libtextstyle as a third binary package. * NEWS: Mention that libtextstyle is installed. --- autogen.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 4c04f7f32..1642793f5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -36,10 +36,11 @@ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH skip_gnulib=false +skip_gnulib_option= while :; do case "$1" in - --skip-gnulib) skip_gnulib=true; shift;; + --skip-gnulib) skip_gnulib=true; skip_gnulib_option='--skip-gnulib'; shift;; *) break ;; esac done @@ -412,6 +413,11 @@ aclocal -I m4 -I ../m4 -I gnulib-m4 \ || exit $? cd "$dir0" +echo "$0: generating files in libtextstyle..." +cd libtextstyle +./autogen.sh $skip_gnulib_option || exit $? +cd "$dir0" + echo "$0: generating configure in gettext-tools/examples..." cd gettext-tools/examples aclocal -I ../../gettext-runtime/m4 -I ../../m4 \ -- cgit v1.2.1