diff options
author | zi <zi@FreeBSD.org> | 2012-09-06 10:07:34 +0800 |
---|---|---|
committer | zi <zi@FreeBSD.org> | 2012-09-06 10:07:34 +0800 |
commit | 49189f59f2a973600d4f65d5ca3429d74cd8c93e (patch) | |
tree | e2fa147770961691755c7d92bb332d8daa88f3ae /security/suricata | |
parent | f37e9712cdcee4940dc60a5af00febfdd39f748b (diff) | |
download | freebsd-ports-gnome-49189f59f2a973600d4f65d5ca3429d74cd8c93e.tar.gz freebsd-ports-gnome-49189f59f2a973600d4f65d5ca3429d74cd8c93e.tar.zst freebsd-ports-gnome-49189f59f2a973600d4f65d5ca3429d74cd8c93e.zip |
- Add in workaround for compatibility with libhtp >= 0.3
- Bump PORTREVISION
Diffstat (limited to 'security/suricata')
-rw-r--r-- | security/suricata/Makefile | 1 | ||||
-rw-r--r-- | security/suricata/files/patch-src__suricata-common.h | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/security/suricata/Makefile b/security/suricata/Makefile index fe296bafc997..334d728f7900 100644 --- a/security/suricata/Makefile +++ b/security/suricata/Makefile @@ -7,6 +7,7 @@ PORTNAME= suricata PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.openinfosecfoundation.org/download/ \ http://mirrors.rit.edu/zi/ diff --git a/security/suricata/files/patch-src__suricata-common.h b/security/suricata/files/patch-src__suricata-common.h new file mode 100644 index 000000000000..5c294da203fe --- /dev/null +++ b/security/suricata/files/patch-src__suricata-common.h @@ -0,0 +1,11 @@ +--- ./src/suricata-common.h.orig 2012-09-05 21:43:08.000000000 -0400 ++++ ./src/suricata-common.h 2012-09-05 21:46:28.000000000 -0400 +@@ -131,6 +131,8 @@ + #include <assert.h> + #define BUG_ON(x) assert(!(x)) + ++#define table_getc(x, y) table_get_c(x, y) ++ + /* we need this to stringify the defines which are supplied at compiletime see: + http://gcc.gnu.org/onlinedocs/gcc-3.4.1/cpp/Stringification.html#Stringification */ + #define xstr(s) str(s) |