aboutsummaryrefslogtreecommitdiff
path: root/crypto/Makefile.am
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-02-16 22:22:29 -0600
committerBrent Cook <bcook@openbsd.org>2015-02-17 18:15:17 -0600
commita859b93ff583300349ee0b7fb8231cf6c387e269 (patch)
tree4ae03e67df0c83b43e645e0743de94b92478cf4c /crypto/Makefile.am
parentadc416e922f98b4b52093f26c91216e3b4106f3d (diff)
downloadportable-a859b93ff583300349ee0b7fb8231cf6c387e269.tar.gz
portable-a859b93ff583300349ee0b7fb8231cf6c387e269.tar.bz2
portable-a859b93ff583300349ee0b7fb8231cf6c387e269.zip
disable system issetugid on OS X since it is not fork-safe
Noticed while testing similar code for AIX. ok beck@
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r--crypto/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index c7d0639..5861a55 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -103,6 +103,9 @@ endif
103if HOST_HPUX 103if HOST_HPUX
104libcompat_la_SOURCES += compat/issetugid_hpux.c 104libcompat_la_SOURCES += compat/issetugid_hpux.c
105endif 105endif
106if HOST_DARWIN
107libcompat_la_SOURCES += compat/issetugid_osx.c
108endif
106if HOST_WIN 109if HOST_WIN
107libcompat_la_SOURCES += compat/issetugid_win.c 110libcompat_la_SOURCES += compat/issetugid_win.c
108endif 111endif