]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
build: Update package version handling after gnulib changed.
authorBruno Haible <bruno@clisp.org>
Sat, 25 Jan 2025 05:49:42 +0000 (06:49 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 25 Jan 2025 05:49:42 +0000 (06:49 +0100)
* configure.ac: Invoke AC_INIT with arguments. Invoke gl_INIT_PACKAGE_VERSION
instead of gl_INIT_PACKAGE.
* gettext-runtime/configure.ac: Likewise.
* gettext-runtime/intl/configure.ac: Likewise.
* gettext-tools/configure.ac: Likewise.
* gettext-tools/examples/configure.ac: Likewise.
* libtextstyle/configure.ac: Likewise.

configure.ac
gettext-runtime/configure.ac
gettext-runtime/intl/configure.ac
gettext-tools/configure.ac
gettext-tools/examples/configure.ac
libtextstyle/configure.ac

index c2754bb5a4aee495fea7fe4ddb9e1441af5e1494..2daad61b3e48e9b983075fa7b6931aed073e1249 100644 (file)
@@ -17,14 +17,13 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
-PACKAGE_BUGREPORT='bug-gettext@gnu.org'
+AC_INIT([gettext], [dummy], [bug-gettext@gnu.org])
 AC_CONFIG_SRCDIR([gettext-tools/src/msgfmt.c])
 AC_CONFIG_AUX_DIR([build-aux])
 VERSION_NUMBER=`cd $srcdir \
                 && build-aux/git-version-gen .tarball-version \
                    | sed -e 's/dirty$/modified/'`
-gl_INIT_PACKAGE([gettext], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([1.13 silent-rules parallel-tests tar-ustar])
 
 dnl Override automake's tar command used for creating distributions:
index bb3c02866755df57844a0600761d4f7dc538c02f..19af0de1b1157d873f60a8ffe5430785d374ed62 100644 (file)
@@ -17,14 +17,13 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
-PACKAGE_BUGREPORT='bug-gettext@gnu.org'
+AC_INIT([gettext-runtime], [dummy], [bug-gettext@gnu.org])
 AC_CONFIG_SRCDIR([intl/dcigettext.c])
 AC_CONFIG_AUX_DIR([../build-aux])
 VERSION_NUMBER=`cd $srcdir/.. \
                 && build-aux/git-version-gen .tarball-version \
                    | sed -e 's/dirty$/modified/'`
-gl_INIT_PACKAGE([gettext-runtime], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([1.11.1 silent-rules parallel-tests])
 AC_CONFIG_HEADERS([config.h])
 
index e7edb39e11eb677bf0efe5b196ad6a44f892a386..8f1fa8def0b959f124c8e610cca242108338a084 100644 (file)
@@ -17,14 +17,13 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
-PACKAGE_BUGREPORT='bug-gettext@gnu.org'
+AC_INIT([libintl], [dummy], [bug-gettext@gnu.org])
 AC_CONFIG_SRCDIR([dcigettext.c])
 AC_CONFIG_AUX_DIR([../../build-aux])
 VERSION_NUMBER=`cd $srcdir/../.. \
                 && build-aux/git-version-gen .tarball-version \
                    | sed -e 's/dirty$/modified/'`
-gl_INIT_PACKAGE([libintl], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([silent-rules])
 AC_CONFIG_HEADERS([config.h])
 
index 62c4a0e9d2e29b049eac88648e6665a7ed821f32..7cb645f2fde451c13529bc16a803704126e1e7b5 100644 (file)
@@ -17,14 +17,13 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
-PACKAGE_BUGREPORT='bug-gettext@gnu.org'
+AC_INIT([gettext-tools], [dummy], [bug-gettext@gnu.org])
 AC_CONFIG_SRCDIR([src/msgfmt.c])
 AC_CONFIG_AUX_DIR([../build-aux])
 VERSION_NUMBER=`cd $srcdir/.. \
                 && build-aux/git-version-gen .tarball-version \
                    | sed -e 's/dirty$/modified/'`
-gl_INIT_PACKAGE([gettext-tools], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([1.11.1 silent-rules parallel-tests])
 AC_CONFIG_HEADERS([config.h])
 
index 30857f9373fb0b8659a37ce0f65fa3d8c073ff08..278376363a1c1ca6be7f1ddfe3533f819bac7d39 100644 (file)
@@ -17,14 +17,13 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
-PACKAGE_BUGREPORT='bug-gettext@gnu.org'
+AC_INIT([gettext], [dummy], [bug-gettext@gnu.org])
 AC_CONFIG_SRCDIR([installpaths.in])
 AC_CONFIG_AUX_DIR([../../build-aux])
 VERSION_NUMBER=`cd $srcdir/../.. \
                 && build-aux/git-version-gen .tarball-version \
                    | sed -e 's/dirty$/modified/'`
-gl_INIT_PACKAGE([gettext], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([silent-rules])
 
 dnl Installation directories.
index 651357bb393caec673d71c5f301128844afbb48f..7cff7a670333c26d2d5d54b5496f82e75b85d9e4 100644 (file)
@@ -1,5 +1,5 @@
 dnl Configuration for the toplevel directory of GNU libtextstyle
-dnl Copyright (C) 2009-2023 Free Software Foundation, Inc.
+dnl Copyright (C) 2009-2025 Free Software Foundation, Inc.
 dnl
 dnl This program is free software: you can redistribute it and/or modify
 dnl it under the terms of the GNU General Public License as published by
@@ -17,11 +17,11 @@ dnl along with this program.  If not, see <https://www.gnu.org/licenses/>.
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.64])
-AC_INIT
+AC_INIT([libtextstyle], [dummy])
 AC_CONFIG_SRCDIR([version.sh])
 AC_CONFIG_AUX_DIR([build-aux])
 . $srcdir/version.sh
-gl_INIT_PACKAGE([libtextstyle], [$VERSION_NUMBER])
+gl_INIT_PACKAGE_VERSION([$VERSION_NUMBER])
 AM_INIT_AUTOMAKE([1.13 silent-rules])
 AC_CONFIG_HEADERS([config.h])