summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-24 20:46:37 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-26 00:09:04 +1100
commit6c8c9a615b6d31db8a87bc25033f053d5b0a831e (patch)
treec691db023c86aa29fa369207a9a543b0be96344f
parenta9004425a032d7a7141a5437cfabfd02431e2a74 (diff)
downloadopenssh-git-6c8c9a615b6d31db8a87bc25033f053d5b0a831e.tar.gz
Check for raise and supply if needed.
-rw-r--r--configure.ac1
-rw-r--r--openbsd-compat/bsd-misc.c8
-rw-r--r--openbsd-compat/bsd-misc.h4
3 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index e23540e6..7342dcb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1744,6 +1744,7 @@ AC_CHECK_FUNCS([ \
poll \
prctl \
pstat \
+ raise \
readpassphrase \
reallocarray \
recvmsg \
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 3e8f74b7..af58f3bd 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -290,3 +290,11 @@ bzero(void *b, size_t n)
(void)memset(b, 0, n);
}
#endif
+
+#ifndef HAVE_RAISE
+int
+raise(int sig)
+{
+ kill(getpid(), sig);
+}
+#endif
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index bf5fad18..3cb912d2 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -137,4 +137,8 @@ long long llabs(long long);
void bzero(void *, size_t);
#endif
+#ifndef HAVE_RAISE
+int raise(int);
+#endif
+
#endif /* _BSD_MISC_H */