From: Paul Eggert Date: Fri, 15 Dec 2006 08:18:02 +0000 (+0000) Subject: * NEWS, configure.ac (AC_INIT): X-Git-Tag: v1.3.12~30 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=41fc79610a8147f707293ebbba11f176f8019b80;p=debian%2Fgzip * NEWS, configure.ac (AC_INIT): Version 1.3.9 released. * bootstrap (gnulib_tool_options_extras): New var. (gnulib_tool_options): Use it. * bootstrap.conf (gnulib_tool_options_extras): Avoid getline and rpmatch. gzip doesn't need them, since it doesn't ENABLE_NLS. --- diff --git a/ChangeLog b/ChangeLog index ac0bde5..737befd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-12-15 Paul Eggert + + * NEWS, configure.ac (AC_INIT): + Version 1.3.9 released. + + * bootstrap (gnulib_tool_options_extras): New var. + (gnulib_tool_options): Use it. + * bootstrap.conf (gnulib_tool_options_extras): Avoid getline and + rpmatch. gzip doesn't need them, since it doesn't ENABLE_NLS. + 2006-12-13 Bruno Haible * configure.ac: Use $CPPFLAGS everywhere $CPP is used, and use diff --git a/NEWS b/NEWS index d315a1f..881c9d6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Gzip 1.3.9 (2006-12-15) + +* No major changes; only porting fixes. + Major changes in Gzip 1.3.8 (2006-12-08) * Fix some gzip problems: diff --git a/bootstrap b/bootstrap index 7b6b019..ab31ae7 100755 --- a/bootstrap +++ b/bootstrap @@ -97,6 +97,9 @@ gnulib_extra_files=' doc/INSTALL ' +# Additional gnulib-tool options to use. Use "\newline" to break lines. +gnulib_tool_option_extras= + # Other locale categories that need message catalogs. EXTRA_LOCALE_CATEGORIES= @@ -425,6 +428,7 @@ gnulib_tool_options="\ --source-base $bt/lib/\ --tests-base $bt/tests\ --local-dir gl\ +$gnulib_tool_option_extras\ " echo "$0: $gnulib_tool $gnulib_tool_options --import ..." $gnulib_tool $gnulib_tool_options --import $gnulib_modules && diff --git a/bootstrap.conf b/bootstrap.conf index 39420d1..7229807 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -34,5 +34,12 @@ gnulib_modules=' yesno ' +# Additional gnulib-tool options to use. Use "\newline" to break lines. +# We don't need the getline and rpmatch, since yesno doesn't do i18n. +gnulib_tool_option_extras="\ + --avoid getline\ + --avoid rpmatch\ +" + # Create build-aux, since 'bootstrap' won't do that for us. mkdir -p build-aux diff --git a/configure.ac b/configure.ac index d07f375..48e8728 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ # 02111-1307, USA. AC_PREREQ([2.60]) -AC_INIT([gzip], [1.3.8], [bug-gzip@gnu.org]) +AC_INIT([gzip], [1.3.9], [bug-gzip@gnu.org]) AC_CONFIG_SRCDIR(gzip.c) AC_CONFIG_AUX_DIR(build-aux) AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])