summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2021-02-06 11:48:06 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2021-02-06 11:48:06 +0000
commit6ed9cb2f9e9b0f87f9d2823e0ed8c1911f43cd39 (patch)
tree1155b9ca2523124cdeac4d641700716179d9f047
parentf22a8280e641d3ae1797f52f88a5d94d5d7f0103 (diff)
downloadpcre2-6ed9cb2f9e9b0f87f9d2823e0ed8c1911f43cd39.tar.gz
Try reducing autoconf requirement to 2.60.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1298 6239d852-aaf2-0410-a92c-79f79f948069
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2865f9a..21d13b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,7 +29,8 @@ now the same as Perl.
to the lastest autoconf. Running autoupdate made some valid changes, some valid
suggestions, and also some invalid changes, which were fixed by hand. Autoconf
now runs clean and the resulting "configure" seems to work, so I hope nothing
-is broken.
+is broken. Later: the requirement for autoconf 2.70 broke some automatic test
+robots. It doesn't seem to be necessary: trying a reduction to 2.60.
Version 10.36 04-December-2020
diff --git a/configure.ac b/configure.ac
index 09356d7..1dd29fa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ m4_define(libpcre2_posix_version, [2:3:0])
# NOTE: The CMakeLists.txt file searches for the above variables in the first
# 50 lines of this file. Please update that if the variables above are moved.
-AC_PREREQ([2.70])
+AC_PREREQ([2.60])
AC_INIT([PCRE2],pcre2_major.pcre2_minor[]pcre2_prerelease,[],[pcre2])
AC_CONFIG_SRCDIR([src/pcre2.h.in])
AM_INIT_AUTOMAKE([dist-bzip2 dist-zip])