Fix for bsd

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14857 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-10-28 09:28:55 +00:00
parent e87ef00610
commit 8b3989d562
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2002-10-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSFileManager.m: include statvfs.h if available.
2002-10-26 Adam Fedor <fedor@gnu.org>
* Source/NSException.m: Document.

View file

@ -107,9 +107,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