From bd0e7b9b32ad41a113640148f98e91cc4fd0ef97 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 14 Dec 2011 22:14:42 +0000 Subject: [PATCH] Obey the user's command to use a system liblinear. Do this even if a system copy doesn't appear to be installed. Now you get an error when that happens instead of Nmap silently using its own version. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 1a861d58e..8e4b2c70d 100644 --- a/configure.ac +++ b/configure.ac @@ -669,6 +669,7 @@ AC_HELP_STRING([--with-liblinear=included], [Use the liblinear version included *) CPPFLAGS="-I$with_liblinear/include $CPPFLAGS" LDFLAGS="-L$with_liblinear/lib $LDFLAGS" + have_liblinear=yes ;; esac] )