2013-05-16 21:56:04 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
2012-01-06 19:36:54 +01:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2012-01-06 19:36:54 +01:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2012-01-06 19:36:54 +01:00
|
|
|
*
|
2013-05-16 21:56:04 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2012-01-06 19:36:54 +01:00
|
|
|
|
|
|
|
#include "macros.inc"
|
|
|
|
|
2012-07-24 17:06:21 +02:00
|
|
|
#if defined(WITH_VC100_REDIST)
|
|
|
|
|
2012-07-18 21:52:10 +02:00
|
|
|
MergeModule gid_MergeModule_Microsoft_VC100_CRT_x86
|
|
|
|
Feature = gm_Root;
|
|
|
|
Name = "Microsoft_VC100_CRT_x86.msm";
|
|
|
|
RootDir = "TARGETDIR";
|
|
|
|
ComponentCondition = "VC_REDIST=1";
|
|
|
|
End
|
|
|
|
|
2012-07-24 17:06:21 +02:00
|
|
|
#endif
|
|
|
|
|
2012-08-31 13:24:00 -04:00
|
|
|
#if defined(WITH_VC110_REDIST)
|
|
|
|
|
|
|
|
MergeModule gid_MergeModule_Microsoft_VC110_CRT_x86
|
2012-01-06 19:36:54 +01:00
|
|
|
Feature = gm_Root;
|
2012-08-31 13:24:00 -04:00
|
|
|
Name = "Microsoft_VC110_CRT_x86.msm";
|
2012-01-06 19:36:54 +01:00
|
|
|
RootDir = "TARGETDIR";
|
2012-05-14 22:08:38 +02:00
|
|
|
ComponentCondition = "VC_REDIST=1";
|
2012-01-06 19:36:54 +01:00
|
|
|
End
|
|
|
|
|
2012-08-31 13:24:00 -04:00
|
|
|
#endif
|
|
|
|
|
2014-11-14 14:11:13 +01:00
|
|
|
#if defined(WITH_VC120_REDIST)
|
|
|
|
|
2015-02-18 00:15:13 +01:00
|
|
|
#if defined WINDOWS_X64
|
|
|
|
MergeModule gid_MergeModule_Microsoft_VC120_CRT_x64
|
|
|
|
#else
|
2014-11-14 14:11:13 +01:00
|
|
|
MergeModule gid_MergeModule_Microsoft_VC120_CRT_x86
|
2015-02-18 00:15:13 +01:00
|
|
|
#endif
|
2014-11-14 14:11:13 +01:00
|
|
|
Feature = gm_Root;
|
2015-02-18 00:15:13 +01:00
|
|
|
#if defined WINDOWS_X64
|
|
|
|
Name = "Microsoft_VC120_CRT_x64.msm";
|
|
|
|
#else
|
2014-11-14 14:11:13 +01:00
|
|
|
Name = "Microsoft_VC120_CRT_x86.msm";
|
2015-02-18 00:15:13 +01:00
|
|
|
#endif
|
2014-11-14 14:11:13 +01:00
|
|
|
RootDir = "TARGETDIR";
|
|
|
|
ComponentCondition = "VC_REDIST=1";
|
|
|
|
End
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|