OpenBSD compatibiliy patch from issue 461.
Thanks ! git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1886 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
@@ -23,11 +23,16 @@
|
||||
#if(!defined(__WIN32__))&&(!defined(__amigaos4__))&&(!defined(__AROS__))&&(!defined(__MORPHOS__))&&(!defined(__amigaos__))
|
||||
|
||||
// We don't use autoconf and all that in grafx2, so let's do the config here ...
|
||||
#if defined(__macosx__) || defined(__FreeBSD__) // MacOS X is POSIX compliant
|
||||
#if defined(__macosx__) || defined(__FreeBSD__) || defined(__OpenBSD__) // MacOS X is POSIX compliant
|
||||
#define MOUNTED_GETMNTINFO
|
||||
#if defined(__macosx__)
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#if defined(__OpenBSD__)
|
||||
#define HAVE_STRUCT_STATFS_F_FSTYPENAME 1
|
||||
#include <sys/param.h> /* types.h needs this */
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#elif defined(__NetBSD__)
|
||||
#define MOUNTED_GETMNTINFO2
|
||||
#elif defined(__BEOS__) || defined(__HAIKU__)
|
||||
@@ -463,7 +468,7 @@ read_file_system_list (BROKEN bool need_fs_type)
|
||||
me = malloc (sizeof *me);
|
||||
me->me_devname = strdup (fsp->f_mntfromname);
|
||||
me->me_mountdir = strdup (fsp->f_mntonname);
|
||||
#if defined(__macosx__)
|
||||
#if defined(__macosx__) || defined(__OpenBSD__)
|
||||
me->me_type = fsp->f_fstypename;
|
||||
#else
|
||||
me->me_type = fsp->fs_typename;
|
||||
|
||||
Reference in New Issue
Block a user