From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id A95AB385022A; Fri, 24 Jun 2022 12:22:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A95AB385022A To: cygwin-apps-cvs@sourceware.org Subject: [setup - the official Cygwin setup program] branch master, updated. release_2.919-1-g894b9d59 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: dd645a18ed1cca21a6554b3fb955a9b21040d6ea X-Git-Newrev: 894b9d59cd991cd579cc20c6181f7842a50df9b5 Message-Id: <20220624122242.A95AB385022A@sourceware.org> Date: Fri, 24 Jun 2022 12:22:42 +0000 (GMT) From: Jon TURNEY X-BeenThere: cygwin-apps-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin-apps git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2022 12:22:42 -0000 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=894b9d59cd991cd579cc20c6181f7842a50df9b5 commit 894b9d59cd991cd579cc20c6181f7842a50df9b5 Author: Jon Turney 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], [cygwin-apps@cygwin.com]) -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, rbtcollins@hotmail.com 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)