disable system issetugid on OS X since it is not fork-safe

Noticed while testing similar code for AIX.
ok beck@
This commit is contained in:
Brent Cook
2015-02-16 22:22:29 -06:00
parent adc416e922
commit a859b93ff5
3 changed files with 24 additions and 0 deletions

View File

@@ -103,6 +103,9 @@ endif
if HOST_HPUX
libcompat_la_SOURCES += compat/issetugid_hpux.c
endif
if HOST_DARWIN
libcompat_la_SOURCES += compat/issetugid_osx.c
endif
if HOST_WIN
libcompat_la_SOURCES += compat/issetugid_win.c
endif