aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index fbc447acb..c8f7209f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,6 +24,19 @@ AC_PREREQ(2.61)
24AC_INIT([gnunet], [0.11.2], [bug-gnunet@gnu.org]) 24AC_INIT([gnunet], [0.11.2], [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
28AC_ARG_WITH(nssdir,
29 [ --with-nssdir=DIR legacy switch, no longer supported, do not use],
30 [AC_MSG_RESULT([$with_nssdir])
31 case $with_nssdir in
32 no)
33 ;;
34 *)
35 AC_MSG_ERROR([--with-nssdir is no longer supported])
36 ;;
37 esac
38 ])
39
27AC_CANONICAL_TARGET 40AC_CANONICAL_TARGET
28AC_CANONICAL_HOST 41AC_CANONICAL_HOST
29AC_CANONICAL_SYSTEM 42AC_CANONICAL_SYSTEM