diff options
author | tulin@build.mysql.com <> | 2005-01-19 10:07:14 +0100 |
---|---|---|
committer | tulin@build.mysql.com <> | 2005-01-19 10:07:14 +0100 |
commit | 0a2df1c50ab7ef3b42cea8449722d4173bc8ec8f (patch) | |
tree | f09725a80c3486ea2ae26751326aaf4a7498dc53 /configure.in | |
parent | 26c68fcd44f3001532e350b8398a78f00b24e1d6 (diff) | |
parent | cb995131fba471933159765e7d5c453dd63d1f04 (diff) | |
download | mariadb-git-0a2df1c50ab7ef3b42cea8449722d4173bc8ec8f.tar.gz |
Merge build.mysql.com:/users/tulin/mysql-5.0
into build.mysql.com:/users/tulin/mysql-5.1
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 b3e1e0ff15a..5bb04d904d0 100644 --- a/configure.in +++ b/configure.in @@ -1923,7 +1923,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) @@ -2710,7 +2710,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]) |