diff options
author | unknown <tulin@build.mysql.com> | 2005-01-19 14:20:26 +0100 |
---|---|---|
committer | unknown <tulin@build.mysql.com> | 2005-01-19 14:20:26 +0100 |
commit | 54be11f9e9b81df373728ad5444a00b815a4a492 (patch) | |
tree | 526aebebe1b5845dd85b5acb95c2ae892d6818da | |
parent | 02c589ebdc8a01c65587efc55f31698d9227dd59 (diff) | |
download | mariadb-git-54be11f9e9b81df373728ad5444a00b815a4a492.tar.gz |
added configure option to set extra ndb cc-flags
-rw-r--r-- | config/ac-macros/ha_ndbcluster.m4 | 7 | ||||
-rw-r--r-- | configure.in | 1 |
2 files changed, 6 insertions, 2 deletions
diff --git a/config/ac-macros/ha_ndbcluster.m4 b/config/ac-macros/ha_ndbcluster.m4 index 433bba95e91..751a11d1895 100644 --- a/config/ac-macros/ha_ndbcluster.m4 +++ b/config/ac-macros/ha_ndbcluster.m4 @@ -61,7 +61,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=$withval], + [ndb_cxxflags_fix=]) + AC_MSG_CHECKING([for NDB Cluster options]) AC_MSG_RESULT([]) diff --git a/configure.in b/configure.in index ec1a4615fa8..e20edf97a72 100644 --- a/configure.in +++ b/configure.in @@ -361,7 +361,6 @@ AC_SUBST(INSTALL_SCRIPT) export CC CXX CFLAGS LD LDFLAGS AR -ndb_cxxflags_fix= if test "$GXX" = "yes" then # mysqld requires -fno-implicit-templates. |