aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 6dc914c12..39e7ffa7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1# This file is part of GNUnet. 1# This file is part of GNUnet.
2# (C) 2001--2019 GNUnet e.V. 2# (C) 2001--2020 GNUnet e.V.
3# 3#
4# GNUnet is free software: you can redistribute it and/or modify it 4# GNUnet is free software: you can redistribute it and/or modify it
5# under the terms of the GNU Affero General Public License as published 5# under the terms of the GNU Affero General Public License as published
@@ -21,7 +21,7 @@
21# 21#
22AC_PREREQ(2.61) 22AC_PREREQ(2.61)
23# Checks for programs. 23# Checks for programs.
24AC_INIT([gnunet], [0.12.2], [bug-gnunet@gnu.org]) 24AC_INIT([gnunet], [0.13.1], [bug-gnunet@gnu.org])
25AC_CONFIG_AUX_DIR([build-aux]) 25AC_CONFIG_AUX_DIR([build-aux])
26 26
27# check for legacy option that is no longer supported (#5627) and fail hard 27# check for legacy option that is no longer supported (#5627) and fail hard
@@ -1160,8 +1160,12 @@ AS_IF([test x_$withval = x_yes],
1160 my_with_libidn2=0]))], 1160 my_with_libidn2=0]))],
1161 [AS_IF([test x_$withval != x_no], 1161 [AS_IF([test x_$withval != x_no],
1162 [CFLAGS="$CFLAGS -I$withval/include" 1162 [CFLAGS="$CFLAGS -I$withval/include"
1163 LDFLAGS="$LDFLAGS -L$withval/lib"], 1163 LDFLAGS="$LDFLAGS -L$withval/lib"
1164 [my_with_libidn2=0])]) 1164 AC_CHECK_HEADERS([idn2/idn2.h],
1165 AC_MSG_NOTICE([Found idn2/idn2.h]),
1166 [AC_MSG_NOTICE([Failed to find idn2.h])
1167 my_with_libidn2=0])],
1168 [my_with_libidn2=0])])
1165 1169
1166AC_MSG_CHECKING([if libidn can be used]) 1170AC_MSG_CHECKING([if libidn can be used])
1167# Check for LIBIDNs 1171# Check for LIBIDNs