summaryrefslogtreecommitdiff
path: root/include/my_pthread.h
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2005-09-07 20:23:07 +0200
committerunknown <jimw@mysql.com>2005-09-07 20:23:07 +0200
commitd65a24bb7c07537298bd3520d7c9b0fc0f3035e6 (patch)
tree84dd19f0eff80d31b22b05c5f5eedb3a401ab811 /include/my_pthread.h
parent0f867ef74b77b225aed2773516b6e2cd808e61e2 (diff)
downloadmariadb-git-d65a24bb7c07537298bd3520d7c9b0fc0f3035e6.tar.gz
Port to SCO OpenServer 6. May require running ./configure with
--build=i686-unknown-sysv5SCO_SV6.0.0 include/my_pthread.h: Remove unnecessary define -- configure should define HAVE_NONPOSIX_SIGWAIT configure.in: Update checks for SCO threading libraries to handle OpenServer 6 Remove redundant OpenUNIX 8 checks Pass --build option through to bdb's configure
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r--include/my_pthread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index f8cd3e0de71..02f451cffd2 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -298,11 +298,6 @@ extern int my_pthread_create_detached;
int sigwait(sigset_t *set, int *sig);
#endif
-#if defined(HAVE_UNIXWARE7_POSIX)
-#undef HAVE_NONPOSIX_SIGWAIT
-#define HAVE_NONPOSIX_SIGWAIT /* sigwait takes only 1 argument */
-#endif
-
#ifndef HAVE_NONPOSIX_SIGWAIT
#define my_sigwait(A,B) sigwait((A),(B))
#else