[setup - the official Cygwin setup program] branch master, updated. release_2.919-1-g894b9d59
Jon TURNEY via Cygwin-apps-cvs <[email protected]> Fri, 24 Jun 2022 12:22:42 +0000 (GMT)
| Newsgroups | gmane.os.cygwin.cvs.apps |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=894b9d59cd991cd579cc20c6181f7842a50df9b5 commit 894b9d59cd991cd579cc20c6181f7842a50df9b5 Author: Jon Turney <[email protected]> Date: Fri Jun 24 13:20:32 2022 +0100 Lower autoconf requirement to 2.69 We don't actually use LIBLEX, so the change in AC_PROG_LEX() behaviour in autoconf 2.70 isn't particularly relevant, and this let's us still build using the x86 w/ SJLJ exceptions toolchain in Fedora 31. Diff: --- configure.ac | 2 +- libgetopt++/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 32df4f25..453d2736 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_INIT([setup], [0], [[email protected]]) -AC_PREREQ(2.70) +AC_PREREQ(2.69) AC_CONFIG_AUX_DIR([cfgaux]) AM_INIT_AUTOMAKE([1.12 subdir-objects foreign no-define -Wall -Wno-portability]) dnl AM_CONFIG_HEADER(include/autoconf.h) diff --git a/libgetopt++/configure.ac b/libgetopt++/configure.ac index b79691dc..b1d60c4a 100644 --- a/libgetopt++/configure.ac +++ b/libgetopt++/configure.ac @@ -5,7 +5,7 @@ dnl Robert Collins, [email protected] dnl dnl AC_INIT(src/GetOption.cc, 0.0.2-DEVEL) -AC_PREREQ(2.70) +AC_PREREQ(2.69) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE AC_CONFIG_HEADERS(include/autoconf.h)