|
@@ -0,0 +1,33 @@
|
|
|
|
+From 4e8b006cdd30e43f3ab11296710170488fd5b5de Mon Sep 17 00:00:00 2001
|
|
|
|
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
|
|
+Date: Sun, 6 Oct 2019 09:53:23 +0200
|
|
|
|
+Subject: [PATCH] configure.ac: fix --disable-geoip
|
|
|
|
+
|
|
|
|
+$enableval should be used to know if the user has passed --enable-geoip
|
|
|
|
+or --disable-geoip
|
|
|
|
+
|
|
|
|
+Fixes:
|
|
|
|
+ - http://autobuild.buildroot.org/results/a7a34f760ae5fe0922fdb720b8234dbcd85ed222
|
|
|
|
+
|
|
|
|
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
|
|
+Upstream status: https://github.com/OISF/suricata/pull/4278
|
|
|
|
+---
|
|
|
|
+ configure.ac | 2 +-
|
|
|
|
+ 1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
+
|
|
|
|
+diff --git a/configure.ac b/configure.ac
|
|
|
|
+index 3df576d54..fa671024d 100644
|
|
|
|
+--- a/configure.ac
|
|
|
|
++++ b/configure.ac
|
|
|
|
+@@ -2143,7 +2143,7 @@
|
|
|
|
+ # libmaxminddb
|
|
|
|
+ AC_ARG_ENABLE(geoip,
|
|
|
|
+ AS_HELP_STRING([--enable-geoip],[Enable GeoIP support]),
|
|
|
|
+- [ enable_geoip="yes"],
|
|
|
|
++ [ enable_geoip="$enableval"],
|
|
|
|
+ [ enable_geoip="no"])
|
|
|
|
+ AC_ARG_ENABLE(libgeoip,
|
|
|
|
+ AS_HELP_STRING([--disable-libgeoip], [Disable libgeoip support]),
|
|
|
|
+--
|
|
|
|
+2.23.0
|
|
|
|
+
|