diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-06 13:13:21 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-02-16 18:39:17 -0800 |
commit | 1f1ea56ca22a85164c4362650b004e202f4007fd (patch) | |
tree | 5c0df2b48caed62db1d19714936545168f2890f6 | |
parent | 6ce2c46869ced346839eb7e0c3f83170025495c6 (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.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 90e6ff6..31aacb2 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ dnl dnl Process this file with autoconf to create configure. # Initialize Autoconf -AC_PREREQ([2.60]) +AC_PREREQ([2.70]) AC_INIT([xkbcomp], [1.4.6], [https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/issues], [xkbcomp]) AC_CONFIG_SRCDIR([Makefile.am]) |