diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-10-26 01:24:26 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-10-26 01:24:26 +0000 |
commit | 5b93a61d5716926435387b7a999164145a717daf (patch) | |
tree | 4d5e6e168f1d773a8761bf1fca2a41fc8ee90c1e | |
parent | Fix build on -current (cope with removal of union wait) (diff) |
Add #includes needed to unbreak build on -current
Submitted by: mike
Notes
Notes:
svn path=/head/; revision=68844
-rw-r--r-- | lang/gnustep-base/files/patch-NSFileManager.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lang/gnustep-base/files/patch-NSFileManager.m b/lang/gnustep-base/files/patch-NSFileManager.m new file mode 100644 index 000000000000..aabedaad0db4 --- /dev/null +++ b/lang/gnustep-base/files/patch-NSFileManager.m @@ -0,0 +1,16 @@ +--- Source/NSFileManager.m.orig Fri Oct 25 11:32:59 2002 ++++ Source/NSFileManager.m Fri Oct 25 11:33:26 2002 +@@ -100,9 +100,10 @@ + + #ifdef HAVE_SYS_VFS_H + # include <sys/vfs.h> +-# ifdef HAVE_SYS_STATVFS_H +-# include <sys/statvfs.h> +-# endif ++#endif ++ ++#ifdef HAVE_SYS_STATVFS_H ++# include <sys/statvfs.h> + #endif + + #ifdef HAVE_SYS_STATFS_H |