commit 2b151bbf8acfea1d7b684b25f4d82bfe3f7346ab
parent 0411d898fd2f5da4d8f33f91c3bf5e0ec1db68b5
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Sun, 24 Sep 2023 10:58:22 +0200
v0.20.0
Diffstat:
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -19,14 +19,14 @@
#
# Process this file with autoconf to produce a configure script.
#
-AC_PREREQ(2.61)
-AC_INIT([gnunet-fuse],[0.19.1],[bug-gnunet@gnu.org])
+AC_PREREQ([2.71])
+AC_INIT([gnunet-fuse],[0.20.0],[bug-gnunet@gnu.org])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(gnunet_fuse_config.h)
AH_TOP([#define _GNU_SOURCE 1])
-AC_ISC_POSIX
+AC_SEARCH_LIBS([strerror],[cposix])
AC_PROG_AWK
AC_PROG_CC
@@ -36,7 +36,15 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_CC
AM_PROG_CC_STDC
-AC_HEADER_STDC
+m4_warn([obsolete],
+[The preprocessor macro `STDC_HEADERS' is obsolete.
+ Except in unusual embedded environments, you can safely include all
+ ISO C90 headers unconditionally.])dnl
+# Autoupdate added the next two lines to ensure that your configure
+# script's behavior did not change. They are probably safe to remove.
+AC_CHECK_INCLUDES_DEFAULT
+AC_PROG_EGREP
+
AC_CANONICAL_HOST
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
@@ -186,10 +194,11 @@ AC_DEFINE_DIR([PACKAGE_DATA], [datarootdir], [The directory for installing read-
packagesrcdir=`cd $srcdir && pwd`
AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir])
-AC_OUTPUT([
+AC_CONFIG_FILES([
Makefile
po/Makefile.in
doc/Makefile
src/Makefile
src/fuse/Makefile
])
+AC_OUTPUT