diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2003-02-18 20:00:13 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-02-18 20:00:13 +0000 |
commit | a4dcbd0a56bf9819d87690a0fbba3d016ac4306e (patch) | |
tree | 845a506aa43cd77d1047e4625abb9c030c00870a /net | |
parent | - added USE_PERL5 to fix recent bento problem (diff) |
Samba 2.2.7 still thinks 5-CURRENT is a sysV box because we have
sys/statvfs.h. So we hit Samba harder over the head to realize BSD ain't
SYSV.
Approved by: dwcjr
Notes
Notes:
svn path=/head/; revision=75817
Diffstat (limited to 'net')
-rw-r--r-- | net/samba/files/patch-sysv | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/samba/files/patch-sysv b/net/samba/files/patch-sysv new file mode 100644 index 000000000000..e1193c79ef75 --- /dev/null +++ b/net/samba/files/patch-sysv @@ -0,0 +1,7 @@ +--- source/include/includes.h.orig Wed Dec 11 06:55:42 2002 ++++ source/include/includes.h Sun Feb 16 16:44:53 2003 +@@ -757,3 +757,3 @@ + /* this guess needs to be improved (tridge) */ +-#if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV) ++#if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV) && !defined(__FreeBSD__) + #define SYSV 1 |