summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-06 13:13:21 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-16 18:46:45 -0800
commitd106d10ec08bd5618dc088282f2b42a3c39ed380 (patch)
tree7866cd5b09ff8c69189d6259186653cf5fb442f9
parent7e8120c0574ab1910f63474ff6be8de0ddc4ccac (diff)
configure: raise minimum autoconf requirement to 2.70
Needed for builds on NetBSD to work correctly, since it depends on AC_USE_SYSTEM_EXTENSIONS defining _OPENBSD_SOURCE to expose the prototype for reallocarray() in the system headers. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f17143f..4e8bbf5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@
#
# Initialize Autoconf
-AC_PREREQ([2.60])
+AC_PREREQ([2.70])
AC_INIT([libFS], [1.0.9],
[https://gitlab.freedesktop.org/xorg/lib/libfs/-/issues], [libFS])
AC_CONFIG_SRCDIR([Makefile.am])