Skip to content
Snippets Groups Projects
Commit 7e36703d authored by Roland Fehrenbacher's avatar Roland Fehrenbacher Committed by Morris Jette
Browse files

[PATCH] QL - x_ac_databases.m4: Make mariadb_config an alternative to mysql_config

On some distributions (notably Ubuntu xenial), the mariadb client
dev package doesn't include a compatibility link for mysql_config.
This patch makes configure look for mariadb_config as an alternative
and allows building the mysql plugins against mariadb client libs.
parent c260eabf
No related branches found
No related tags found
No related merge requests found
...@@ -22,9 +22,9 @@ AC_DEFUN([X_AC_DATABASES], ...@@ -22,9 +22,9 @@ AC_DEFUN([X_AC_DATABASES],
[_x_ac_mysql_bin="$withval"]) [_x_ac_mysql_bin="$withval"])
if test x$_x_ac_mysql_bin = xno; then if test x$_x_ac_mysql_bin = xno; then
AC_PATH_PROG(HAVEMYSQLCONFIG, mysql_config, no) AC_PATH_PROGS(HAVEMYSQLCONFIG, [mysql_config mariadb_config], no)
else else
AC_PATH_PROG(HAVEMYSQLCONFIG, mysql_config, no, $_x_ac_mysql_bin) AC_PATH_PROGS(HAVEMYSQLCONFIG, [mysql_config mariadb_config], no, $_x_ac_mysql_bin)
fi fi
if test x$HAVEMYSQLCONFIG = xno; then if test x$HAVEMYSQLCONFIG = xno; then
......
...@@ -21788,8 +21788,10 @@ fi ...@@ -21788,8 +21788,10 @@ fi
   
   
if test x$_x_ac_mysql_bin = xno; then if test x$_x_ac_mysql_bin = xno; then
# Extract the first word of "mysql_config", so it can be a program name with args. for ac_prog in mysql_config mariadb_config
set dummy mysql_config; ac_word=$2 do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; } $as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_HAVEMYSQLCONFIG+:} false; then : if ${ac_cv_path_HAVEMYSQLCONFIG+:} false; then :
...@@ -21815,7 +21817,6 @@ done ...@@ -21815,7 +21817,6 @@ done
done done
IFS=$as_save_IFS IFS=$as_save_IFS
   
test -z "$ac_cv_path_HAVEMYSQLCONFIG" && ac_cv_path_HAVEMYSQLCONFIG="no"
;; ;;
esac esac
fi fi
...@@ -21829,9 +21830,15 @@ $as_echo "no" >&6; } ...@@ -21829,9 +21830,15 @@ $as_echo "no" >&6; }
fi fi
   
   
test -n "$HAVEMYSQLCONFIG" && break
done
test -n "$HAVEMYSQLCONFIG" || HAVEMYSQLCONFIG="no"
else else
# Extract the first word of "mysql_config", so it can be a program name with args. for ac_prog in mysql_config mariadb_config
set dummy mysql_config; ac_word=$2 do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; } $as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_HAVEMYSQLCONFIG+:} false; then : if ${ac_cv_path_HAVEMYSQLCONFIG+:} false; then :
...@@ -21857,7 +21864,6 @@ done ...@@ -21857,7 +21864,6 @@ done
done done
IFS=$as_save_IFS IFS=$as_save_IFS
   
test -z "$ac_cv_path_HAVEMYSQLCONFIG" && ac_cv_path_HAVEMYSQLCONFIG="no"
;; ;;
esac esac
fi fi
...@@ -21871,6 +21877,10 @@ $as_echo "no" >&6; } ...@@ -21871,6 +21877,10 @@ $as_echo "no" >&6; }
fi fi
   
   
test -n "$HAVEMYSQLCONFIG" && break
done
test -n "$HAVEMYSQLCONFIG" || HAVEMYSQLCONFIG="no"
fi fi
   
if test x$HAVEMYSQLCONFIG = xno; then if test x$HAVEMYSQLCONFIG = xno; then
......
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