diff options
author | asami <asami@FreeBSD.org> | 1997-04-23 18:37:55 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-04-23 18:37:55 +0800 |
commit | b62e7ea27193c0fea7c4f9eb25de8a7e43881b65 (patch) | |
tree | f9d9b8a009e86a5896f423d9c2a589ad3238f6f0 /archivers/bzip | |
parent | 3d5cb0f887cce4774ab83ff45bdc2dec8525d8ab (diff) | |
download | freebsd-ports-gnome-b62e7ea27193c0fea7c4f9eb25de8a7e43881b65.tar.gz freebsd-ports-gnome-b62e7ea27193c0fea7c4f9eb25de8a7e43881b65.tar.zst freebsd-ports-gnome-b62e7ea27193c0fea7c4f9eb25de8a7e43881b65.zip |
#include <sys/types.h> in front of <utime.h>.
Diffstat (limited to 'archivers/bzip')
-rw-r--r-- | archivers/bzip/files/patch-ac | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/archivers/bzip/files/patch-ac b/archivers/bzip/files/patch-ac index b56d85c0af6b..ca210ce4094f 100644 --- a/archivers/bzip/files/patch-ac +++ b/archivers/bzip/files/patch-ac @@ -1,6 +1,14 @@ --- bzip.c.orig Sat Sep 28 03:32:05 1996 +++ bzip.c Sat Sep 28 03:37:53 1996 -@@ -3132,11 +3132,6 @@ +@@ -114,6 +114,7 @@ + --*/ + + #if BZ_UNIX_32 ++ #include <sys/types.h> + #include <utime.h> + #include <unistd.h> + #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) /* stdlib already included above */ +@@ -3132,11 +3133,6 @@ signal (SIGBUS, mySIGSEGVorSIGBUScatcher); #endif @@ -12,7 +20,7 @@ #if DEBUG if ( ! (argc > 1 && strcmp ( "-Q", argv[1] ) == 0) ) fprintf ( stderr, "BZIP: *** compiled with debugging ON ***\n" ); -@@ -3206,6 +3201,12 @@ +@@ -3206,6 +3202,12 @@ exit ( 1 ); break; } |