ports/sysutils/radmind/files/patch-transcript.h
Thomas Zander 79c08ab7c5 - Update to new revision 2014052201
- Stagify
- Add LICENSE*
- Remove IGNORE_TIMESTAMPS option
- Handle file ownerships via pkg-plist macros
- Silence superfluous warnings
- Handle stripping of installed binaries
- Pet portlint

PR:		190120
Submitted by:	mikeg@bsd-box.net (maintainer)
Reviewed by:	riggs
Approved by:	mentors (implicit), maintainer (timeout)
2014-07-12 09:31:02 +00:00

17 lines
493 B
C

--- ./transcript.h.orig 2010-12-13 04:42:49.000000000 +0100
+++ ./transcript.h 2014-06-29 12:15:04.249543651 +0200
@@ -39,6 +39,14 @@
extern FILE *outtran;
extern char *path_prefix;
+
+#define T_SKIP_POSITIVE (1 << 1)
+#define T_SKIP_NEGATIVE (1 << 2)
+#define T_SKIP_SPECIAL (1 << 3)
+#define T_SKIP_EXCLUDES (1 << 4)
+#define T_SKIP_ALL (T_SKIP_POSITIVE | T_SKIP_NEGATIVE | \
+ T_SKIP_SPECIAL | T_SKIP_EXCLUDES)
+
struct pathinfo {
char pi_type;
int pi_minus;