aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac5
-rw-r--r--crypto/Makefile.am3
-rw-r--r--crypto/compat/issetugid_osx.c16
3 files changed, 24 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 46e9a40..391b232 100644
--- a/configure.ac
+++ b/configure.ac
@@ -226,6 +226,11 @@ AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF],
226 -a "x$HOST_OS" != xnetbsd \ 226 -a "x$HOST_OS" != xnetbsd \
227 -a "x$ac_cv_func_arc4random_buf" = xyes]) 227 -a "x$ac_cv_func_arc4random_buf" = xyes])
228 228
229# overrides for issetugid implementations with known issues
230AM_CONDITIONAL([HAVE_ISSETUGID],
231 [test "x$HOST_OS" != xdarwin
232 -a "x$ac_cv_func_issetugid" = xyes])
233
229AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [ 234AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [
230 AC_LINK_IFELSE([AC_LANG_PROGRAM([[ 235 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
231#include <stdarg.h> 236#include <stdarg.h>
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
diff --git a/crypto/compat/issetugid_osx.c b/crypto/compat/issetugid_osx.c
new file mode 100644
index 0000000..ad6cb58
--- /dev/null
+++ b/crypto/compat/issetugid_osx.c
@@ -0,0 +1,16 @@
1/*
2 * issetugid implementation for OS X
3 * Public domain
4 */
5
6#include <unistd.h>
7
8/*
9 * OS X has issetugid, but it is not fork-safe as of version 10.10.
10 * See this Solaris report for test code that fails similarly:
11 * http://mcarpenter.org/blog/2013/01/15/solaris-issetugid%282%29-bug
12 */
13int issetugid(void)
14{
15 return 1;
16}