diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-04-06 16:44:39 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-04-06 16:44:39 +0200 |
commit | 4ef2e18796a22b3959234756234ccf0ca4f338a1 (patch) | |
tree | b13a9e875c0d0187a56a40fae3df5f87f11cadab /configure.ac | |
parent | 6e209ab5050f8d285381c1be4117f918a496b8d0 (diff) |
address #5627
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
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) AC_INIT([gnunet], [0.11.2], [bug-gnunet@gnu.org]) AC_CONFIG_AUX_DIR([build-aux]) +# check for legacy option that is no longer supported (#5627) and fail hard +AC_ARG_WITH(nssdir, + [ --with-nssdir=DIR legacy switch, no longer supported, do not use], + [AC_MSG_RESULT([$with_nssdir]) + case $with_nssdir in + no) + ;; + *) + AC_MSG_ERROR([--with-nssdir is no longer supported]) + ;; + esac + ]) + AC_CANONICAL_TARGET AC_CANONICAL_HOST AC_CANONICAL_SYSTEM |