diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2005-09-11 04:02:38 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2005-09-11 04:02:38 +0000 |
commit | dba95a6c762b6e2dbe9ee490d803f4b02da5355f (patch) | |
tree | 7284559a69ef53749193dd4ee2afd067f4c532e4 /net/cvsync | |
parent | f16ca1e1d367946e3934c6ea195c37110b50f0a7 (diff) | |
download | ports-dba95a6c762b6e2dbe9ee490d803f4b02da5355f.tar.gz ports-dba95a6c762b6e2dbe9ee490d803f4b02da5355f.zip |
Fix build breakage on 7.x. pthread.h does not include sys/types.h now.
Notes
Notes:
svn path=/head/; revision=142416
Diffstat (limited to 'net/cvsync')
-rw-r--r-- | net/cvsync/files/patch-common_cvsync.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/cvsync/files/patch-common_cvsync.h b/net/cvsync/files/patch-common_cvsync.h new file mode 100644 index 000000000000..bf224b92c431 --- /dev/null +++ b/net/cvsync/files/patch-common_cvsync.h @@ -0,0 +1,11 @@ +--- common/cvsync.h.orig Mon Jun 7 14:33:25 2004 ++++ common/cvsync.h Sun Sep 11 03:34:22 2005 +@@ -30,6 +30,8 @@ + #ifndef __CVSYNC_H__ + #define __CVSYNC_H__ + ++#include <sys/types.h> ++ + #define CVSYNC_MAXCMDLEN 2048 + #define CVSYNC_MAXADDRLEN 128 + |