From: fanquake Date: Tue, 15 Jun 2021 05:41:05 +0000 (+0800) Subject: build: call AC_PREREQ() first & quote argument X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb59d84da2b4b177d456a881222695918353a5e8;p=libevent build: call AC_PREREQ() first & quote argument > This macro may be used before AC_INIT. Calling this first means establishing that the required version of autoconf is actually available, before bothering with AC_INIT(). See: https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.67/autoconf.html#Versioning. --- diff --git a/configure.ac b/configure.ac index f7b5b5b5..3a526e24 100644 --- a/configure.ac +++ b/configure.ac @@ -5,8 +5,8 @@ dnl See LICENSE for copying information. dnl dnl Original version Dug Song +AC_PREREQ([2.67]) AC_INIT(libevent,2.2.0-alpha-dev) -AC_PREREQ(2.67) AC_CONFIG_SRCDIR(event.c) AC_CONFIG_MACRO_DIR([m4])