diff options
| -rw-r--r-- | ext/xslt/config.m4 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4 index 2768ebd941..f420ce5b2e 100644 --- a/ext/xslt/config.m4 +++ b/ext/xslt/config.m4 @@ -81,8 +81,12 @@ if test "$PHP_XSLT" != "no"; then fi AC_DEFINE(HAVE_SABLOT_BACKEND, 1, [ ]) - AC_CHECK_LIB(sablot, SablotSetEncoding, AC_DEFINE(HAVE_SABLOT_SET_ENCODING, 1, [ ])) - + if test "$found_expat" = "yes"; then + old_LIBS=$LIBS + LIBS="$LIBS -lexpat" + AC_CHECK_LIB(sablot, SablotSetEncoding, AC_DEFINE(HAVE_SABLOT_SET_ENCODING, 1, [ ])) + LIBS=$old_LIBS + fi fi PHP_ADD_INCLUDE($XSLT_DIR/include) |
