mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

When start snort, it shows error and quit: | --== Initializing Snort ==-- | Initializing Output Plugins! | ERROR: Can't find pcap DAQ! | Fatal Error, Quitting.. Fix by enable static daq for snort and enable static build for daq. snort calls command daq-modules-config which is from daq-native to get required daq static libraries and library path. Add package daq-native and add patch for snort to filter library path out to avoid host contamination issue. Add daq-native's dependency libnet-native too. And daq-native also depends on libpcap-native from layer oe-core. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
36 lines
1.2 KiB
BlitzBasic
36 lines
1.2 KiB
BlitzBasic
SUMMARY = "The dump DAQ test the various inline mode features "
|
|
HOMEPAGE = "http://www.snort.org"
|
|
SECTION = "libs"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f9ce51a65dd738dc1ae631d8b21c40e0"
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
DEPENDS = "libpcap libpcre libdnet"
|
|
|
|
SRC_URI = "http://fossies.org/linux/misc/daq-${PV}.tar.gz \
|
|
file://disable-run-test-program-while-cross-compiling.patch \
|
|
file://0001-correct-the-location-of-unistd.h.patch \
|
|
"
|
|
|
|
# these 2 create undeclared dependency on libdnet and libnetfilter-queue from meta-networking
|
|
# this error from test-dependencies script:
|
|
# daq/daq/latest lost dependency on libdnet libmnl libnetfilter-queue libnfnetlink
|
|
#
|
|
# never look to /usr/local lib while cross compiling
|
|
|
|
EXTRA_OECONF = "--disable-nfq-module --disable-ipq-module --includedir=${includedir} \
|
|
--with-libpcap-includes=${STAGING_INCDIR} --with-dnet-includes=${STAGING_LIBDIR}"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
|
|
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
|
|
|
SRC_URI[md5sum] = "2cd6da422a72c129c685fc4bb848c24c"
|
|
SRC_URI[sha256sum] = "b40e1d1273e08aaeaa86e69d4f28d535b7e53bdb3898adf539266b63137be7cb"
|
|
|
|
inherit autotools
|
|
|
|
DISABLE_STATIC = ""
|
|
|
|
BBCLASSEXTEND = "native"
|