diff options
author | monty@hundin.mysql.fi <> | 2002-04-02 19:10:55 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-04-02 19:10:55 +0300 |
commit | 2e2b146ba5a825e84bc4efba020d1b25e5cb08cb (patch) | |
tree | b5c1768687952aa7b1d6b2f083bc36126903986b /configure.in | |
parent | d80ebc17d6e89cac37bedb198b073dddade9c61b (diff) | |
download | mariadb-git-2e2b146ba5a825e84bc4efba020d1b25e5cb08cb.tar.gz |
Fix for HAVE_QUERY_CACHE
Remove not used flag CLIENT_CHANGE_USER
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 17edcabbaf0..a0e6b819367 100644 --- a/configure.in +++ b/configure.in @@ -1827,15 +1827,14 @@ AC_ARG_WITH(embedded-server, ) AC_ARG_WITH(query_cache, - [ --without-query-cache Don't build query cache in embedded server.], - [with_embedded_server=$withval], - [with_embedded_server=yes] + [ --without-query-cache Don not build query cache in embedded server.], + [with_query_cache=$withval], + [with_query_cache=yes] ) -if test "$with_embedded_server" = "yes" +if test "$with_query_cache" = "yes" then - CFLAGS="$CFLAGS -DHAVE_QUERY_CACHE" - CXXFLAGS="$CXXFLAGS -DHAVE_QUERY_CACHE" + AC_DEFINE(HAVE_QUERY_CACHE) fi AC_ARG_WITH(extra-tools, |