diff options
author | unknown <konstantin@mysql.com> | 2004-07-28 09:34:06 -0700 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-07-28 09:34:06 -0700 |
commit | 9aa6d52a9459e2fcfe2f0176717d841247425895 (patch) | |
tree | cb58e1d3ab4faf14a557960ab77131e873ee298e /acinclude.m4 | |
parent | 52d3dbd0914198ded0c8aa242e13c8bbff196917 (diff) | |
download | mariadb-git-9aa6d52a9459e2fcfe2f0176717d841247425895.tar.gz |
Fixing MYSQL_CHEKC_ZLIB_DIR to take into account user settings (in case there
are such)
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 4109ff39fdc..d2bbec82b75 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -183,8 +183,8 @@ dnl Auxiliary macro to check for zlib at given path AC_DEFUN([MYSQL_CHECK_ZLIB_DIR], [ save_INCLUDES="$INCLUDES" save_LIBS="$LIBS" -INCLUDES="$ZLIB_INCLUDES" -LIBS="$ZLIB_LIBS" +INCLUDES="$INCLUDES $ZLIB_INCLUDES" +LIBS="$LIBS $ZLIB_LIBS" AC_CACHE_VAL([mysql_cv_compress], [AC_TRY_LINK([#include <zlib.h>], [int link_test() { return compress(0, (unsigned long*) 0, "", 0); }], |