Here's a quick patch to get the autoconf build to work under

FreeBSD.  I think this is needed because the old build system
would define BSDI for FreeBSD systems, while autoconf doesn't.
Thanks to skinny <skinny@knowhere.net> for pointing this out.
This commit is contained in:
ramiro%netscape.com 1998-10-05 19:24:33 +00:00
parent 4a45eb1ad1
commit a79a72429f

View File

@ -75,7 +75,7 @@ extern "C" char * _XmStringGetTextConcat(XmString);
extern "C" int statfs(char *, struct statfs *);
#define STATFS statfs
#else
#if defined(BSDI) || defined(NETBSD) || defined(OPENBSD) || defined(RHAPSODY)
#if defined(BSDI) || defined(NETBSD) || defined(OPENBSD) || defined(RHAPSODY) || defined(FREEBSD)
#include <sys/mount.h> /* for statfs() */
#define STATFS statfs
#else