diff options
author | joreland@mysql.com <> | 2005-01-07 11:47:01 +0100 |
---|---|---|
committer | joreland@mysql.com <> | 2005-01-07 11:47:01 +0100 |
commit | 782905349172cfacf6d02c02d0fdc66e30ffee02 (patch) | |
tree | 1680d708e5f1d1b39b5725c96900bc979ca09a98 /configure.in | |
parent | 746fd9fdacc52ccc297db7703ea9288b67138167 (diff) | |
download | mariadb-git-782905349172cfacf6d02c02d0fdc66e30ffee02.tar.gz |
bug#7690 - ndb startup with shm, use sigaction to escape SA_RESETHAND
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 47447913168..f2184ed7be5 100644 --- a/configure.in +++ b/configure.in @@ -1924,7 +1924,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 \ + shmget shmat shmdt shmctl sigaction \ sighold sigset sigthreadmask \ snprintf socket stpcpy strcasecmp strerror strnlen strpbrk strstr strtol \ strtoll strtoul strtoull tell tempnam thr_setconcurrency vidattr) @@ -3097,7 +3097,8 @@ ndb_transporter_opt_objs="" 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_shmctl" = "yes" && + test "$ac_cv_func_sigaction" = "yes" then AC_DEFINE([NDB_SHM_TRANSPORTER], [1], [Including Ndb Cluster DB shared memory transporter]) |