Skip to content

Commit eb44dfb

Browse files
committed
Misc
1 parent afae356 commit eb44dfb

File tree

3 files changed

+28
-25
lines changed

3 files changed

+28
-25
lines changed

builds/install/arch-specific/win32/i18n_readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentatation i18n should be available separately. I18n is a
99
good thing, but bloating the installer with large amounts of translated
1010
documentation is not desirable.
1111

12-
The current version of InnoSetup used by Firebird - 5.5.8 - provides
12+
The current version of InnoSetup used by Firebird - 6.2.1 - provides
1313
generic support for the following languages:
1414

1515
BrazilianPortuguese, Catalan, Corsican, Czech, Danish, Dutch, Finnish, French,

builds/win32/msvc15/VCCRT_Shared_Body.wxi

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
1-
<?xml version="1.0" encoding="utf-8"?><Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
23

34
<Product Id="$(var.PRODUCT_ID)"
5+
46
Name="MSI to redistribute MS Visual Studio Runtime libraries for $(var.CPUArch)"
5-
Language="1033"
6-
Version="$(var.MS_CRT_VER)"
7-
Manufacturer="$(var.MANUFACTURER)"
8-
UpgradeCode="$(var.UPGRADE_CODE)"
9-
>
7+
Language = "1033"
8+
Version = "$(var.MS_CRT_VER)"
9+
Manufacturer = "$(var.MANUFACTURER)"
10+
UpgradeCode = "$(var.UPGRADE_CODE)"
11+
>
1012

1113
<!-- NOTE - InstallerVersion is hard-coded to 405 - this indicates Windows
1214
Installer 4.5 is the minimum required version. Of course there is no
1315
product called Windows Installer on your computer. It is actually msiexec -->
14-
<Package Id="$(var.PACKAGE_ID)"
15-
Description="$(var.DESCRIPTION)"
16-
Comments="$(var.COMMENTS)"
17-
Manufacturer="$(var.MANUFACTURER)"
18-
InstallerVersion="405"
19-
Compressed="yes"
20-
Platform="$(var.CPUArch)"
21-
/>
22-
23-
<Media Id="1" Cabinet="VCCRT.cab" EmbedCab="yes"
24-
/>
25-
26-
<Directory Id="TARGETDIR" Name="SourceDir">
27-
<Merge Id="CRT" Language="0" SourceFile="$(var.MSMDIR)\$(var.MSM)" DiskId="1" />
16+
<Package Id = "$(var.PACKAGE_ID)"
17+
Description = "$(var.DESCRIPTION)"
18+
Comments = "$(var.COMMENTS)"
19+
Manufacturer = "$(var.MANUFACTURER)"
20+
InstallerVersion = "405"
21+
Compressed = "yes"
22+
Platform = "$(var.CPUArch)"
23+
/>
24+
25+
<Media Id = "1" Cabinet="VCCRT.cab" EmbedCab = "yes"
26+
/>
27+
28+
<Directory Id = "TARGETDIR" Name = "SourceDir">
29+
<Merge Id="CRT" Language = "0" SourceFile = "$(var.MSMDIR)\$(var.MSM)" DiskId = "1" />
2830
</Directory>
2931

30-
<Feature Id="CRT_WinSXS" Title="CRT WinSXS" Level="1">
31-
<MergeRef Id="CRT" />
32+
<Feature Id="CRT_WinSXS" Title = "CRT WinSXS" Level = "1">
33+
<MergeRef Id = "CRT" />
3234
</Feature>
3335

3436
<InstallExecuteSequence>

builds/win32/run_all.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ set FBBUILD_BUILDTYPE=release
99
set FBBUILD_INCLUDE_PDB=
1010
set FBBUILD_MAKE_KITS_ONLY=
1111
set FBBUILD_BUILD_ONLY=0
12+
set FBBUILD_KITS=ISX ZIP
1213
set FBBUILD_TEST_ONLY=
1314
set FB2_SNAPSHOT=
1415

@@ -61,13 +62,13 @@ if "%FBBUILD_BUILD_ONLY%"=="1" goto :END
6162
:MAKE_KITS
6263
:: Package everything up
6364
pushd ..\install\arch-specific\win32
64-
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE%
65+
call BuildExecutableInstall %FBBUILD_KITS% %FBBUILD_BUILDTYPE%
6566
if "%ERRLEV%"=="1" (
6667
@echo Oops - some sort of error during packaging & popd & goto :END
6768
)
6869
if defined FBBUILD_INCLUDE_PDB (
6970
set /A FBBUILD_PACKAGE_NUMBER-=1
70-
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE% PDB
71+
call BuildExecutableInstall %FBBUILD_KITS% %FBBUILD_BUILDTYPE% PDB
7172
)
7273
popd
7374

0 commit comments

Comments
 (0)