Skip to content
Snippets Groups Projects
Commit fe1c0d34 authored by Danny Auble's avatar Danny Auble
Browse files

Slightly clearer logic from commit cca1616b

parent 3828f749
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ AC_DEFUN([X_AC_DATABASES],
if test $mysql_config_major_version -ge 6 ||
test $mysql_config_minor_version -gt 7 ||
(test $mysql_config_minor_version -eq 7 &&
test $mysql_config_micro_version -gt 3); then
test $mysql_config_micro_version -ge 4); then
AC_DEFINE(NO_ALTER_IGNORE_MYSQL, 1, [Define to 1 if we can't use the alter ignore when messing with a database table])
fi
# mysql_config puts -I on the front of the dir. We don't
......
......@@ -23246,7 +23246,7 @@ $as_echo "$as_me: WARNING: *** mysql-$mysql_config_major_version.$mysql_config_m
if test $mysql_config_major_version -ge 6 ||
test $mysql_config_minor_version -gt 7 ||
(test $mysql_config_minor_version -eq 7 &&
test $mysql_config_micro_version -gt 3); then
test $mysql_config_micro_version -ge 4); then
 
$as_echo "#define NO_ALTER_IGNORE_MYSQL 1" >>confdefs.h
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment