diff options
author | unknown <jimw@mysql.com> | 2005-09-07 20:23:07 +0200 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-09-07 20:23:07 +0200 |
commit | 3acde2e0070dcb01effeb11b3d1a64f595741140 (patch) | |
tree | 84dd19f0eff80d31b22b05c5f5eedb3a401ab811 /include/my_pthread.h | |
parent | 71ad2ea09185254a24d3e07c21b354adc7089f40 (diff) | |
download | mariadb-git-3acde2e0070dcb01effeb11b3d1a64f595741140.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.h | 5 |
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 |