mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[configure.ac] --with-libcss to enable libcss support also without js
This commit is contained in:
parent
08cdc9b00f
commit
afd2456319
14
configure.ac
14
configure.ac
@ -905,8 +905,22 @@ fi
|
||||
# Check for libcss
|
||||
# ===================================================================
|
||||
|
||||
AC_ARG_WITH([libcss],
|
||||
[AS_HELP_STRING([--with-libcss],
|
||||
[compile with libcss])])
|
||||
|
||||
CONFIG_LIBCSS=
|
||||
|
||||
case "$with_libcss" in
|
||||
"" | no)
|
||||
;;
|
||||
yes)
|
||||
CONFIG_LIBDOM=yes
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
if test "x$CONFIG_LIBDOM" = xyes; then
|
||||
LIBCSS_CFLAGS="$($PKG_CONFIG $pkg_config_static --cflags libcss)"
|
||||
LIBCSS_LIBS="$($PKG_CONFIG $pkg_config_static --libs libcss)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user