Skip to content

Commit

Permalink
Slightly clearer logic from commit cca1616
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyauble committed Apr 29, 2016
1 parent 3828f74 commit fe1c0d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion auxdir/x_ac_databases.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit fe1c0d3

Please sign in to comment.