8000 Fixed checks for lzf when headers are inside include/liblzf (ubuntu 20.04) by iliaal · Pull Request #1778 · phpredis/phpredis · GitHub
[go: up one dir, main page]

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
10 changes: 9 additions & 1 deletion config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,16 @@ if test "$PHP_REDIS" != "no"; then
if test -r $i/include/lzf.h; then
AC_MSG_RESULT(found in $i)
LIBLZF_DIR=$i
LIBLZF_INCLUDE_DIR=$i/include
break
fi
if test -r $i/include/liblzf/lzf.h; then
AC_MSG_RESULT(found in $i)
LIBLZF_DIR=$i
LIBLZF_INCLUDE_DIR=$i/include/liblzf
PHP_ADD_INCLUDE($LIBLZF_INCLUDE_DIR)
break
fi
done
if test -z "$LIBLZF_DIR"; then
AC_MSG_RESULT([not found])
Expand All @@ -183,7 +191,7 @@ if test "$PHP_REDIS" != "no"; then
], [
AC_MSG_ERROR([could not find usable liblzf])
], [
-L$LIBLZF_DIR/$PHP_LIBDIR
-L$LIBLZF_DIR/$PHP_LIBDIR -I$LIBLZF_INCLUDE_DIR
])
PHP_SUBST(REDIS_SHARED_LIBADD)
else
Expand Down
0