summaryrefslogtreecommitdiff
path: root/src/mongo/installer/msi/wxs/FeatureFragment.wxs
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2014-09-05 18:27:10 -0400
committerJonathan Reams <jbreams@mongodb.com>2014-09-05 18:27:10 -0400
commit5e97d1e186374cc0d9fc9de605eec39796d885cf (patch)
treef0e9bd42fec57b8df8f3d2b4a40491788c253d53 /src/mongo/installer/msi/wxs/FeatureFragment.wxs
parent4e8a57ccaba7e2635e0b553a8d96566f5d0f18a6 (diff)
downloadmongo-5e97d1e186374cc0d9fc9de605eec39796d885cf.tar.gz
SERVER-14440 Bundle openssl with SSL targeted Windows MSI
Diffstat (limited to 'src/mongo/installer/msi/wxs/FeatureFragment.wxs')
-rw-r--r--src/mongo/installer/msi/wxs/FeatureFragment.wxs20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/mongo/installer/msi/wxs/FeatureFragment.wxs b/src/mongo/installer/msi/wxs/FeatureFragment.wxs
index a07b300dba9..93a0076c741 100644
--- a/src/mongo/installer/msi/wxs/FeatureFragment.wxs
+++ b/src/mongo/installer/msi/wxs/FeatureFragment.wxs
@@ -7,7 +7,7 @@
Description="!(wix.ProductName)"
Level="1"
ConfigurableDirectory="INSTALLLOCATION">
- <?if $(var.Edition) = Enterprise ?>
+ <?if $(var.Edition) = Enterprise or $(var.Edition) = SSL ?>
<MergeRef Id="m_vcredist"/>
<?endif?>
<ComponentGroupRef Id="cg_License" />
@@ -20,6 +20,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseServer" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
<Feature Id="Client"
Title ="Client"
@@ -29,6 +32,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseBase" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
<Feature Id="MonitoringTools"
Title ="Monitoring Tools"
@@ -39,6 +45,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseBase" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
<Feature Id="ImportExportTools"
Title ="Import/Export Tools"
@@ -51,6 +60,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseBase" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
<Feature Id="Router"
Title ="Router"
@@ -61,6 +73,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseBase" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
<Feature Id="MiscellaneousTools"
Title ="Miscellaneous Tools"
@@ -73,6 +88,9 @@
<?if $(var.Edition) = Enterprise ?>
<ComponentGroupRef Id="cg_EnterpriseBase" />
<?endif ?>
+ <?if $(var.Edition) = SSL ?>
+ <ComponentGroupRef Id="cg_SSLBase" />
+ <?endif ?>
</Feature>
</Feature>
</FeatureGroup>