Merge pull request #452 from libexpat/issue-452-fix-autotools-macro-regression

configure.ac: Fix use of M4 macro "expat_version"
This commit is contained in:
Sebastian Pipping 2021-03-23 00:49:17 +01:00 committed by GitHub
commit f840ff1a2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ jobs:
./buildconf.sh
./configure
make dist
tar xf expat-*.tar.gz
pushd expat-*/
tar xf expat-*.*.*.tar.gz
pushd expat-*.*.*/
mkdir build_autotools
pushd build_autotools

View File

@ -30,7 +30,7 @@ Release x.x.xx xxx xxxxxxx xx xxxx
so that users with "find_package(expat [..] CONFIG [..])"
are served on distributions that are *not* using the CMake
build system inside for libexpat packaging
#450 Autotools: Resolve use of obsolete macro AC_CONFIG_HEADER
#450 #452 Autotools: Resolve use of obsolete macro AC_CONFIG_HEADER
Version info bumped from 7:12:6 to 8:0:7
due to addition of error code XML_ERROR_NO_BUFFER
(see https://verbump.de/ for what these numbers do)

View File

@ -27,7 +27,7 @@ m4_define([expat_version],
m4_ifdef([__gnu__],
[esyscmd(conftools/get-version.sh lib/expat.h)],
[2.2.x]))
AC_INIT([expat],[expat_version],[expat-bugs@libexpat.org])
AC_INIT([expat], expat_version, [expat-bugs@libexpat.org])
m4_undefine([expat_version])
AC_CONFIG_SRCDIR([Makefile.in])