From 73b115d8895d92d83a3777bcebd30cdabf660fc1 Mon Sep 17 00:00:00 2001 From: Kalle Olavi Niemitalo Date: Sat, 28 Nov 2009 10:44:09 +0200 Subject: [PATCH] Bug 1088: Fix CONFIG_ECMASCRIPT_SMJS_HEARTBEAT Makefile.config.in ignored the value of CONFIG_ECMASCRIPT_SMJS_HEARTBEAT chosen by configure and instead used the value of CONFIG_ECMASCRIPT_SMJS for it too. This broke building on SpiderMonkey versions where JS_TriggerOperationCallback is not available. No NEWS entry because this bug was not in any ELinks release. --- Makefile.config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.config.in b/Makefile.config.in index b383e60c..a9f14963 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -117,7 +117,7 @@ CONFIG_DOM = @CONFIG_DOM@ CONFIG_ECMASCRIPT = @CONFIG_ECMASCRIPT@ CONFIG_ECMASCRIPT_SEE = @CONFIG_ECMASCRIPT_SEE@ CONFIG_ECMASCRIPT_SMJS = @CONFIG_ECMASCRIPT_SMJS@ -CONFIG_ECMASCRIPT_SMJS_HEARTBEAT = @CONFIG_ECMASCRIPT_SMJS@ +CONFIG_ECMASCRIPT_SMJS_HEARTBEAT = @CONFIG_ECMASCRIPT_SMJS_HEARTBEAT@ CONFIG_EXMODE = @CONFIG_EXMODE@ CONFIG_FASTMEM = @CONFIG_FASTMEM@ CONFIG_FINGER = @CONFIG_FINGER@