summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorAndre Fischer <af@apache.org>2011-12-16 12:59:55 +0000
committerAndre Fischer <af@apache.org>2011-12-16 12:59:55 +0000
commit1a85ae2b616d939c5beba46e550f7837fc693b2b (patch)
tree84da573ecba70ca173af47cd24b84e6fc88cad55 /postprocess
parent54de47df2adf9cac89cd315a2b340c858339c830 (diff)
118674: Made category B code optional and disabled by default.
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/packcomponents/makefile.mk8
1 files changed, 6 insertions, 2 deletions
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"