diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-11-06 16:06:51 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-11-06 16:06:51 +0000 |
commit | 4b8a6703c580445fe1f1fee6b97afd31831657f9 (patch) | |
tree | bb9c06a7270862036798b04c1c0f00ac1ecb9a5f /openwrt/package/Makefile | |
parent | a4969bfceb2c83cd64f9c699adb5fcdfb747117d (diff) | |
download | mtk-20170518-4b8a6703c580445fe1f1fee6b97afd31831657f9.zip mtk-20170518-4b8a6703c580445fe1f1fee6b97afd31831657f9.tar.gz mtk-20170518-4b8a6703c580445fe1f1fee6b97afd31831657f9.tar.bz2 |
add snort-wireless package (thanks to Florian Fainelli)
SVN-Revision: 2354
Diffstat (limited to 'openwrt/package/Makefile')
-rw-r--r-- | openwrt/package/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index bf4e425..9b5fe61 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -176,6 +176,7 @@ package-$(BR2_COMPILE_SHFS) += shfs package-$(BR2_PACKAGE_SIPROXD) += siproxd package-$(BR2_PACKAGE_SIPSAK) += sipsak package-$(BR2_COMPILE_SNORT) += snort +package-$(BR2_COMPILE_SNORT_WIRELESS) += snort-wireless package-$(BR2_PACKAGE_SOCAT) += socat package-$(BR2_COMPILE_SPEEX) += speex package-$(BR2_COMPILE_SQLITE) += sqlite @@ -426,6 +427,17 @@ ifeq ($(BR2_PACKAGE_SNORT_ENABLE_INLINE),y) snort-compile: iptables-compile endif +snort-wireless-compile: libnet-compile libpcap-compile pcre-compile +ifeq ($(BR2_PACKAGE_SNORT_WIRELESS_WITH_MYSQL),y) +snort-wireless-compile: mysql-compile +endif +ifeq ($(BR2_PACKAGE_SNORT_WIRELESS_WITH_PGSQL),y) +snort-wireless-compile: postgresql-compile +endif +ifeq ($(BR2_PACKAGE_SNORT_WIRELESS_ENABLE_INLINE),y) +snort-wireless-compile: iptables-compile +endif + ulogd-compile: iptables-compile ifneq ($(BR2_PACKAGE_ULOGD_MOD_MYSQL),) ulogd-compile: mysql-compile |