1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[configure.ac] Check for libcss

Weakly implemented.
This commit is contained in:
Witold Filipczyk 2023-02-01 18:10:59 +01:00
parent b2ffe855e0
commit aacd905a22

View File

@ -873,6 +873,18 @@ if test "x$CONFIG_QUICKJS" = xyes; then
AC_SUBST(CONFIG_QUICKJS)
AC_SUBST(CONFIG_XML)
fi
# ===================================================================
# Check for libcss
# ===================================================================
if test "x$CONFIG_XML" = xyes; then
LIBCSS_CFLAGS=`$PKG_CONFIG $pkg_config_static --cflags libcss`
LIBCSS_LIBS=`$PKG_CONFIG $pkg_config_static --libs libcss`
LIBS="$LIBS $LIBCSS_LIBS"
CFLAGS="$CFLAGS $LIBCSS_CFLAGS"
fi
# ===================================================================
# Check for Guile, optional even if installed.
# ===================================================================