aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-07-09 15:05:04 +0200
committerjospaeth <spaethj@in.tum.de>2020-07-09 15:05:04 +0200
commit8e22ed9734ca214dae90a0a2f9bf0f2e1f5499bb (patch)
treeea0c677ec27b8ade75be4b21bce389c45fa939d4 /configure.ac
parentf2b37a1dbbaccfc06172b703b0d46321caeecb0b (diff)
parent5a0df5e18a6c9b058f10b0b8eaf459959e15ce54 (diff)
downloadgnunet-8e22ed9734ca214dae90a0a2f9bf0f2e1f5499bb.tar.gz
gnunet-8e22ed9734ca214dae90a0a2f9bf0f2e1f5499bb.zip
Merge branch 'master' into spaeth/escrow_plugins
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 aef598453..d9e75153b 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.0], [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
@@ -1188,8 +1188,12 @@ AS_IF([test x_$withval = x_yes],
1188 my_with_libidn2=0]))], 1188 my_with_libidn2=0]))],
1189 [AS_IF([test x_$withval != x_no], 1189 [AS_IF([test x_$withval != x_no],
1190 [CFLAGS="$CFLAGS -I$withval/include" 1190 [CFLAGS="$CFLAGS -I$withval/include"
1191 LDFLAGS="$LDFLAGS -L$withval/lib"], 1191 LDFLAGS="$LDFLAGS -L$withval/lib"
1192 [my_with_libidn2=0])]) 1192 AC_CHECK_HEADERS([idn2/idn2.h],
1193 AC_MSG_NOTICE([Found idn2/idn2.h]),
1194 [AC_MSG_NOTICE([Failed to find idn2.h])
1195 my_with_libidn2=0])],
1196 [my_with_libidn2=0])])
1193 1197
1194AC_MSG_CHECKING([if libidn can be used]) 1198AC_MSG_CHECKING([if libidn can be used])
1195# Check for LIBIDNs 1199# Check for LIBIDNs