diff options
author | Alexander Nozdrin <alik@sun.com> | 2009-10-19 17:28:31 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2009-10-19 17:28:31 +0400 |
commit | b930b18ec3463e47736647c26af0eea07c242a63 (patch) | |
tree | e10df06a55f0a2e5791792f832e0cab38bf70b99 /configure.in | |
parent | 4ed388a5b4c569de6827f1d589aefdc1772ac546 (diff) | |
parent | ee56b111a0769b07e2987d138c676beadb3c574e (diff) | |
download | mariadb-git-b930b18ec3463e47736647c26af0eea07c242a63.tar.gz |
Merge from mysql-5.1.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 86e30597a92..db21d0a33a5 100644 --- a/configure.in +++ b/configure.in @@ -2835,7 +2835,7 @@ server_scripts= dnl This probably should be cleaned up more - for now the threaded dnl client is just using plain-old libs. -sql_client_dirs="strings regex mysys dbug libmysql" +sql_client_dirs="strings mysys dbug extra regex libmysql" AM_CONDITIONAL(THREAD_SAFE_CLIENT, test "$THREAD_SAFE_CLIENT" != "no") @@ -2901,9 +2901,10 @@ AC_SUBST(mysql_plugin_defs) # Now that sql_client_dirs and sql_server_dirs are stable, determine the union. -# Start with the (longer) server list, add each client item not yet present. -sql_union_dirs=" $sql_server_dirs " -for DIR in $sql_client_dirs +# We support client-only builds by "--without-server", but not vice versa, +# so we start with the client list, then add each server item not yet present. +sql_union_dirs=" $sql_client_dirs " +for DIR in $sql_server_dirs do if echo " $sql_union_dirs " | grep " $DIR " >/dev/null then |