From owner-svn-ports-head@FreeBSD.ORG Thu Sep 6 02:07:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BB6A106566B; Thu, 6 Sep 2012 02:07:35 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 369858FC17; Thu, 6 Sep 2012 02:07:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8627ZH1040928; Thu, 6 Sep 2012 02:07:35 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8627Zv2040925; Thu, 6 Sep 2012 02:07:35 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201209060207.q8627Zv2040925@svn.freebsd.org> From: Ryan Steinmetz Date: Thu, 6 Sep 2012 02:07:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303731 - in head/security/suricata: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2012 02:07:35 -0000 Author: zi Date: Thu Sep 6 02:07:34 2012 New Revision: 303731 URL: http://svn.freebsd.org/changeset/ports/303731 Log: - Add in workaround for compatibility with libhtp >= 0.3 - Bump PORTREVISION Added: head/security/suricata/files/patch-src__suricata-common.h (contents, props changed) Modified: head/security/suricata/Makefile Modified: head/security/suricata/Makefile ============================================================================== --- head/security/suricata/Makefile Thu Sep 6 02:06:37 2012 (r303730) +++ head/security/suricata/Makefile Thu Sep 6 02:07:34 2012 (r303731) @@ -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/ Added: head/security/suricata/files/patch-src__suricata-common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/suricata/files/patch-src__suricata-common.h Thu Sep 6 02:07:34 2012 (r303731) @@ -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 + #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)