Kaydet (Commit) 94730f35 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

ENABLE_MARIADBC Harmonize ENABLE_* variable to TRUE/<nothing>

Change-Id: Icd6f385a8c9fcb67d2e448580e66ab97f63a99a6
üst 1bdc9d43
......@@ -8035,21 +8035,21 @@ AC_SUBST(PYTHON_VERSION_MINOR)
AC_MSG_CHECKING([whether to build the MariaDB/MySQL Connector extension])
if test "x$enable_ext_mariadb_connector" = "xyes" -a "x$enable_extension_integration" != "xno"; then
AC_MSG_RESULT([yes])
ENABLE_MARIADBC=YES
ENABLE_MARIADBC=TRUE
MARIADBC_MAJOR=1
MARIADBC_MINOR=0
MARIADBC_MICRO=2
BUILD_TYPE="$BUILD_TYPE MARIADBC"
else
AC_MSG_RESULT([no])
ENABLE_MARIADBC=NO
ENABLE_MARIADBC=
fi
AC_SUBST(ENABLE_MARIADBC)
AC_SUBST(MARIADBC_MAJOR)
AC_SUBST(MARIADBC_MINOR)
AC_SUBST(MARIADBC_MICRO)
if test "$ENABLE_MARIADBC" = "YES"; then
if test "$ENABLE_MARIADBC" = "TRUE"; then
SCPDEFS="$SCPDEFS -DWITH_EXTENSION_MARIADBC"
......
......@@ -9,7 +9,7 @@
$(eval $(call gb_Module_Module,mysqlc))
ifeq ($(ENABLE_MARIADBC),YES)
ifeq ($(ENABLE_MARIADBC),TRUE)
$(eval $(call gb_Module_add_targets,mysqlc,\
Configuration_mysql \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment