mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fix merge of BUG#11538 fix.
This commit is contained in:
parent
69b671055f
commit
9bd662624c
1 changed files with 13 additions and 4 deletions
|
|
@ -62,10 +62,19 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [
|
|||
[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_HELP_STRING([--with-ndb-ccflags=CFLAGS],
|
||||
[Extra CFLAGS for ndb compile]),
|
||||
[ndb_ccflags=${withval}],
|
||||
[ndb_ccflags=""])
|
||||
|
||||
case "$ndb_ccflags" in
|
||||
"yes")
|
||||
AC_MSG_RESULT([The --ndb-ccflags option requires a parameter (passed to CC for ndb compilation)])
|
||||
;;
|
||||
*)
|
||||
ndb_cxxflags_fix="$ndb_cxxflags_fix $ndb_ccflags"
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_MSG_CHECKING([for NDB Cluster options])
|
||||
AC_MSG_RESULT([])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue