diff options
author | Ryan Steinmetz <zi@FreeBSD.org> | 2012-03-30 15:26:53 +0000 |
---|---|---|
committer | Ryan Steinmetz <zi@FreeBSD.org> | 2012-03-30 15:26:53 +0000 |
commit | 3c8b1c801554d21efb64e6522dd1490a4975c719 (patch) | |
tree | 43a3fc812eefabb2392d17e5e301e86103765fe8 /security/snort | |
parent | 51bd89445abf054700df773d28a11ba9a8fdf1f7 (diff) |
- Resolve IPV6 port logic issue when IPV6 support is disabled.
Reported by: Dean Freeman <wfreeman@sourcefire.com>
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=293997
Diffstat (limited to 'security/snort')
-rw-r--r-- | security/snort/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/snort/Makefile b/security/snort/Makefile index 6b7fe6cebda8..6e90fb6f5790 100644 --- a/security/snort/Makefile +++ b/security/snort/Makefile @@ -191,7 +191,7 @@ post-patch: @${REINPLACE_CMD} -e 's|libdir)/pkgconfig|prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in \ ${WRKSRC}/src/dynamic-preprocessors/libs/Makefile.in @${REINPLACE_CMD} -e 's|libnet-config|${LIBNET_CONFIG}|g' ${WRKSRC}/configure -.if !defined(WITH_IPV6) +.if defined(WITHOUT_IPV6) @${REINPLACE_CMD} -e 's|^ipvar |var |' ${WRKSRC}/etc/snort.conf @${REINPLACE_CMD} -e '/normalize_ip6/s/^preprocessor/#preprocessor/' ${WRKSRC}/etc/snort.conf @${REINPLACE_CMD} -e '/normalize_icmp6/s/^preprocessor/#preprocessor/' ${WRKSRC}/etc/snort.conf |