summaryrefslogtreecommitdiff
path: root/sysutils/contool/files/patch-05
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-02 10:07:49 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-02 10:07:49 +0000
commit38a0a8023026a77ded1e6de618b567c7b58e79a4 (patch)
treeabf5fbbdc4b27a245ff76b9850f4eb6e73e4ba19 /sysutils/contool/files/patch-05
parent- Fix build with GCRYPT option by taking out -Werror (diff)
Remove non staged ports without pending PR from s*
Notes
Notes: svn path=/head/; revision=366980
Diffstat (limited to 'sysutils/contool/files/patch-05')
-rw-r--r--sysutils/contool/files/patch-0535
1 files changed, 0 insertions, 35 deletions
diff --git a/sysutils/contool/files/patch-05 b/sysutils/contool/files/patch-05
deleted file mode 100644
index 8fb073db8cd0..000000000000
--- a/sysutils/contool/files/patch-05
+++ /dev/null
@@ -1,35 +0,0 @@
---- filters.c.orig Thu Feb 24 09:55:37 1994
-+++ filters.c Sun Jan 5 13:51:25 1997
-@@ -25,12 +25,17 @@
-
- #include <stdio.h>
- #include <string.h>
-+#include <sys/param.h>
-
- #include <xview/xview.h>
- #include <xview/panel.h>
- #include <xview/notice.h>
- #include <xview/xv_xrect.h>
-
-+#if (defined(BSD) && (BSD >= 199306))
-+#include <regex.h>
-+#endif
-+
- #include "manifest.h"
- #include "contool.h"
- #include "contool_ui.h"
-@@ -122,8 +127,14 @@
-
- {
- cond_free(f->start);
-+#if (defined(BSD) && (BSD >= 199306))
-+ regfree(f->start_re);
-+#endif
- cond_free(f->start_re);
- cond_free(f->stop);
-+#if (defined(BSD) && (BSD >= 199306))
-+ regfree(f->stop_re);
-+#endif
- cond_free(f->stop_re);
- cond_free(f->command);
- cond_free(f->comment);