summaryrefslogtreecommitdiff
path: root/net/flow-extract/files/patch-includes
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-08-28 11:15:22 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-08-28 11:15:22 +0000
commite972bdbe8784db29a8d725136fe30b563b2b40de (patch)
tree77617b8ce520489ce5dcc43e0e4b446d1935ceb3 /net/flow-extract/files/patch-includes
parentUpdate to 0.93.2: bug-fix release w/o features [1] (diff)
net/flow-extract: new port
This tool complements existing net/flow-tools port. PR: ports/50005 Submitted by: Marcin Cieslak <saper@system.pl>
Notes
Notes: svn path=/head/; revision=87886
Diffstat (limited to 'net/flow-extract/files/patch-includes')
-rw-r--r--net/flow-extract/files/patch-includes70
1 files changed, 70 insertions, 0 deletions
diff --git a/net/flow-extract/files/patch-includes b/net/flow-extract/files/patch-includes
new file mode 100644
index 000000000000..b5145272ce2b
--- /dev/null
+++ b/net/flow-extract/files/patch-includes
@@ -0,0 +1,70 @@
+--- extract.c.orig Mon Jun 17 16:59:16 2002
++++ extract.c Fri Mar 14 13:01:27 2003
+@@ -13,7 +13,6 @@
+ #include <sys/stat.h>
+ #include <netdb.h>
+ #include <errno.h>
+-#include <malloc.h>
+ #include <unistd.h>
+ #include <netinet/in.h>
+ #include <netinet/in_systm.h>
+@@ -22,7 +21,6 @@
+
+
+ #include <ftlib.h>
+-#include <fmt.h>
+ #include "extract.h"
+ #include "chario.h"
+ #include "parser.h"
+--- chario.c.orig Mon Jun 17 16:59:16 2002
++++ chario.c Fri Mar 14 13:01:27 2003
+@@ -11,7 +11,7 @@
+ #include <stdio.h>
+ #include <sys/stat.h>
+ #include <string.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include "stdunix.h"
+
+ #include "chario.h"
+--- grammar.y.orig Mon Jun 17 16:59:16 2002
++++ grammar.y Fri Mar 14 13:01:27 2003
+@@ -13,7 +13,7 @@
+ #include <netdb.h>
+ #include <sys/types.h>
+ #include <netinet/in.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include "lex.h"
+ #include "chario.h"
+ #include "parser.h"
+--- lex.c.orig Mon Jun 17 16:59:16 2002
++++ lex.c Fri Mar 14 13:01:27 2003
+@@ -9,15 +9,13 @@
+ */
+ #include <stdio.h>
+ #include <ctype.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include "y.tab.h"
+ #include "lex.h"
+ #include "chario.h"
+
+ #define TRUE 1
+ #define FALSE 0
+-
+-extern int atoi(char *);
+
+ static int buflen = 0;
+ static int bufptr = 0;
+--- builder.c.orig Fri Mar 14 13:03:45 2003
++++ builder.c Fri Mar 14 13:03:55 2003
+@@ -8,7 +8,7 @@
+
+ */
+ #include <stdio.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include "stdunix.h"
+
+ #include "parser.h"