mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
- 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)
17 lines
493 B
C
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;
|