diff options
author | joreland@mysql.com <> | 2005-01-19 07:34:57 +0100 |
---|---|---|
committer | joreland@mysql.com <> | 2005-01-19 07:34:57 +0100 |
commit | 18bd4a2513777999870ed38325bf09139295aff2 (patch) | |
tree | dc47234a96dff449dbaa9b7cb44976c9d564da35 /configure.in | |
parent | f8a0287fac0da6632cf8ebe8c6e5a8e9340169b8 (diff) | |
parent | b0b8f9115abbbbaf376cc3214f453640ced45fbf (diff) | |
download | mariadb-git-18bd4a2513777999870ed38325bf09139295aff2.tar.gz |
Merge mysql.com:/home/jonas/src/mysql-4.1
into mysql.com:/home/jonas/src/mysql-5.0
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 5366254fc4c..ec1a4615fa8 100644 --- a/configure.in +++ b/configure.in @@ -1922,7 +1922,7 @@ AC_CHECK_FUNCS(alarm bcmp bfill bmove bzero chsize cuserid fchmod fcntl \ pthread_key_delete pthread_rwlock_rdlock pthread_setprio \ pthread_setprio_np pthread_setschedparam pthread_sigmask readlink \ realpath rename rint rwlock_init setupterm \ - shmget shmat shmdt shmctl sigaction \ + shmget shmat shmdt shmctl sigaction sigemptyset sigaddset \ sighold sigset sigthreadmask \ snprintf socket stpcpy strcasecmp strerror strnlen strpbrk strstr strtol \ strtoll strtoul strtoull tell tempnam thr_setconcurrency vidattr) @@ -2709,7 +2709,10 @@ if test "$ac_cv_func_shmget" = "yes" && test "$ac_cv_func_shmat" = "yes" && test "$ac_cv_func_shmdt" = "yes" && test "$ac_cv_func_shmctl" = "yes" && - test "$ac_cv_func_sigaction" = "yes" + test "$ac_cv_func_sigaction" = "yes" && + test "$ac_cv_func_sigemptyset" = "yes" && + test "$ac_cv_func_sigaddset" = "yes" && + test "$ac_cv_func_pthread_sigmask" = "yes" then AC_DEFINE([NDB_SHM_TRANSPORTER], [1], [Including Ndb Cluster DB shared memory transporter]) |