mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Do not link against -ljs when SEE is used and sm-scripting is disabled
This commit is contained in:
parent
7fe214fbb2
commit
943cbd1bc6
11
configure.in
11
configure.in
@ -583,10 +583,9 @@ if test -z "$disable_spidermonkey"; then
|
||||
fi
|
||||
|
||||
AC_MSG_RESULT($cf_result)
|
||||
EL_RESTORE_FLAGS
|
||||
|
||||
if test "$cf_result" != yes; then
|
||||
EL_RESTORE_FLAGS
|
||||
else
|
||||
if test "$cf_result" = yes; then
|
||||
EL_CONFIG(CONFIG_SPIDERMONKEY, [SpiderMonkey])
|
||||
|
||||
CFLAGS="$CFLAGS_X"
|
||||
@ -621,6 +620,12 @@ else
|
||||
CONFIG_SCRIPTING_SPIDERMONKEY=no
|
||||
fi
|
||||
|
||||
EL_CONFIG_DEPENDS(CONFIG_SPIDERMONKEY, [CONFIG_ECMASCRIPT_SMJS CONFIG_SCRIPTING_SPIDERMONKEY], [SpiderMonkey])
|
||||
if test "x$CONFIG_SPIDERMONKEY" = xyes; then
|
||||
LIBS="$SPIDERMONKEY_LIBS $LIBS_X"
|
||||
CFLAGS="$CFLAGS_X $SPIDERMONKEY_CFLAGS"
|
||||
CPPFLAGS="$CPPFLAGS_X $SPIDERMONKEY_CFLAGS"
|
||||
fi
|
||||
|
||||
dnl ===================================================================
|
||||
dnl Check for Guile, optional even if installed.
|
||||
|
Loading…
Reference in New Issue
Block a user