diff options
author | unknown <tulin@mysql.com> | 2005-02-02 10:50:33 +0100 |
---|---|---|
committer | unknown <tulin@mysql.com> | 2005-02-02 10:50:33 +0100 |
commit | e7ff7469897e1022c55c68117e3a49625be9d1ab (patch) | |
tree | 8f0abbe9571ecc5712ac5c9432cde9ed72ae4c12 /acinclude.m4 | |
parent | cf660b001ef6ba154b1d8d15b534a253dcfc14e0 (diff) | |
download | mariadb-git-e7ff7469897e1022c55c68117e3a49625be9d1ab.tar.gz |
backported configure flag from 5.0
workaround for HPUX signal.h error, missing extern "C"
moved my_thread_end to NdbThreadExit
more checks for shared memory transporter signum setup
acinclude.m4:
backported configure flag from 5.0
include/my_global.h:
workaround for HPUX signal.h error, missing extern "C"
ndb/src/common/portlib/NdbThread.c:
moved my_thread_end to NdbThreadExit
ndb/src/mgmsrv/ConfigInfo.cpp:
more checks for shared memory transporter signum setup
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 4f2ad8daf91..d7e22332655 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1624,7 +1624,12 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [ --without-ndb-debug Disable special ndb debug features], [ndb_debug="$withval"], [ndb_debug="default"]) - + AC_ARG_WITH([ndb-ccflags], + [ + --with-ndb-ccflags Extra CC options for ndb compile], + [ndb_cxxflags_fix="$ndb_cxxflags_fix $withval"], + [ndb_cxxflags_fix=$ndb_cxxflags_fix]) + AC_MSG_CHECKING([for NDB Cluster options]) AC_MSG_RESULT([]) |