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

Do not link against -ljs when SEE is used and sm-scripting is disabled

This commit is contained in:
witekfl 2006-01-20 15:26:57 +01:00 committed by
parent 7fe214fbb2
commit 943cbd1bc6

View File

@ -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.