aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-09-24 10:58:22 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-09-24 10:58:22 +0200
commit2b151bbf8acfea1d7b684b25f4d82bfe3f7346ab (patch)
tree92bfe02064f7671672ecaf32a5d5f307a1b97d89 /configure.ac
parent0411d898fd2f5da4d8f33f91c3bf5e0ec1db68b5 (diff)
downloadgnunet-fuse-2b151bbf8acfea1d7b684b25f4d82bfe3f7346ab.tar.gz
gnunet-fuse-2b151bbf8acfea1d7b684b25f4d82bfe3f7346ab.zip
v0.20.0v0.20.0
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac19
1 files changed, 14 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index eaa2d6d..8219e7c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,14 +19,14 @@
19# 19#
20# Process this file with autoconf to produce a configure script. 20# Process this file with autoconf to produce a configure script.
21# 21#
22AC_PREREQ(2.61) 22AC_PREREQ([2.71])
23AC_INIT([gnunet-fuse],[0.19.1],[bug-gnunet@gnu.org]) 23AC_INIT([gnunet-fuse],[0.20.0],[bug-gnunet@gnu.org])
24AM_INIT_AUTOMAKE 24AM_INIT_AUTOMAKE
25AM_CONFIG_HEADER(gnunet_fuse_config.h) 25AM_CONFIG_HEADER(gnunet_fuse_config.h)
26 26
27AH_TOP([#define _GNU_SOURCE 1]) 27AH_TOP([#define _GNU_SOURCE 1])
28 28
29AC_ISC_POSIX 29AC_SEARCH_LIBS([strerror],[cposix])
30AC_PROG_AWK 30AC_PROG_AWK
31AC_PROG_CC 31AC_PROG_CC
32 32
@@ -36,7 +36,15 @@ AC_PROG_LN_S
36AC_PROG_MAKE_SET 36AC_PROG_MAKE_SET
37AC_PROG_CC 37AC_PROG_CC
38AM_PROG_CC_STDC 38AM_PROG_CC_STDC
39AC_HEADER_STDC 39m4_warn([obsolete],
40[The preprocessor macro `STDC_HEADERS' is obsolete.
41 Except in unusual embedded environments, you can safely include all
42 ISO C90 headers unconditionally.])dnl
43# Autoupdate added the next two lines to ensure that your configure
44# script's behavior did not change. They are probably safe to remove.
45AC_CHECK_INCLUDES_DEFAULT
46AC_PROG_EGREP
47
40AC_CANONICAL_HOST 48AC_CANONICAL_HOST
41AC_SYS_LARGEFILE 49AC_SYS_LARGEFILE
42AC_FUNC_FSEEKO 50AC_FUNC_FSEEKO
@@ -186,10 +194,11 @@ AC_DEFINE_DIR([PACKAGE_DATA], [datarootdir], [The directory for installing read-
186packagesrcdir=`cd $srcdir && pwd` 194packagesrcdir=`cd $srcdir && pwd`
187AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir]) 195AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir])
188 196
189AC_OUTPUT([ 197AC_CONFIG_FILES([
190Makefile 198Makefile
191po/Makefile.in 199po/Makefile.in
192doc/Makefile 200doc/Makefile
193src/Makefile 201src/Makefile
194src/fuse/Makefile 202src/fuse/Makefile
195]) 203])
204AC_OUTPUT