summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-06-15 13:41:05 +0800
committerfanquake <fanquake@gmail.com>2021-07-09 12:34:10 +0800
commiteb59d84da2b4b177d456a881222695918353a5e8 (patch)
tree2c1f63951cf43d35ad70f19cc596bc0c0c998aba /configure.ac
parentdfae9557fcd4b88982aae983e89b1f1de15c749b (diff)
downloadlibevent-eb59d84da2b4b177d456a881222695918353a5e8.tar.gz
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.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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 <dugsong@monkey.org>
+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])