mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/suricata: fix build without geoip
Fixes: - http://autobuild.buildroot.org/results/a7a34f760ae5fe0922fdb720b8234dbcd85ed222 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
2de1289282
commit
9bab165ccb
33
package/suricata/0002-configure.ac-fix-disable-geoip.patch
Normal file
33
package/suricata/0002-configure.ac-fix-disable-geoip.patch
Normal file
@ -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
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user