diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/compat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/common/compat.c b/common/compat.c index 621f03a..8b14658 100644 --- a/common/compat.c +++ b/common/compat.c @@ -40,10 +40,6 @@ */ #define _XOPEN_SOURCE 700 -#if defined(HAVE_ISSETUGID) && defined(__FreeBSD__) -#define __BSD_VISIBLE 1 -#endif - #include "compat.h" #include "debug.h" @@ -819,7 +815,8 @@ getauxval (unsigned long type) extern int __libc_enable_secure; secure = __libc_enable_secure; -#elif defined(HAVE_ISSETUGID) && defined(HAVE_ISSETUGID_OPENBSD) +#elif defined(HAVE_ISSETUGID) && \ + !((defined __APPLE__ && defined __MACH__) || (defined __FREEBSD__)) secure = issetugid (); #elif defined(OS_UNIX) |