From 1a85ae2b616d939c5beba46e550f7837fc693b2b Mon Sep 17 00:00:00 2001 From: Andre Fischer Date: Fri, 16 Dec 2011 12:59:55 +0000 Subject: 118674: Made category B code optional and disabled by default. --- postprocess/packcomponents/makefile.mk | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'postprocess') diff --git a/postprocess/packcomponents/makefile.mk b/postprocess/packcomponents/makefile.mk index 33badce878d3..e931d838bcdb 100644 --- a/postprocess/packcomponents/makefile.mk +++ b/postprocess/packcomponents/makefile.mk @@ -257,9 +257,7 @@ my_components += productregistration.jar my_components += \ LuceneHelpWrapper \ ScriptFramework \ - ScriptProviderForBeanShell \ ScriptProviderForJava \ - ScriptProviderForJavaScript \ XMergeBridge \ XSLTValidate \ agenda \ @@ -272,6 +270,12 @@ my_components += \ report \ table \ web +.IF "$(ENABLE_BEANSHELL)" == "YES" +my_components += ScriptProviderForBeanShell +.END +.IF "$(ENABLE_JAVASCRIPT)" == "YES" +my_components += ScriptProviderForJavaScript +.END .END .IF "$(WITH_BINFILTER)" != "NO" -- cgit