Navigation Menu

Skip to content

Commit

Permalink
support MariaDB-5.2.4.
Browse files Browse the repository at this point in the history
Reported by Kazuhiko. Thanks!!!
  • Loading branch information
kou committed Dec 31, 2010
1 parent ab3eb08 commit fcca691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -71,8 +71,8 @@ AC_DEFUN([CONFIG_OPTION_MYSQL],[
AC_MSG_ERROR([failed to run "$ac_mysql_config": $plugindir])
fi
MYSQL_INC="$MYSQL_INC $($ac_mysql_config --include)"
ac_mysql_major_version="`$ac_mysql_config --version | cut -b 1-3`"
if test "$ac_mysql_major_version" = "5.1"; then
ac_mysql_major_version="`$ac_mysql_config --version | cut -b 1,3`"
if test $ac_mysql_major_version -lt 55; then
MYSQL51="-DMYSQL51"
AC_SUBST(MYSQL51)
fi
Expand Down

0 comments on commit fcca691

Please sign in to comment.