Skip to content

Commit 62d5a68

Browse files
committed
misc
1 parent 759c8d7 commit 62d5a68

File tree

2 files changed

+28
-27
lines changed

2 files changed

+28
-27
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/run_all.bat

Lines changed: 27 additions & 26 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

@@ -57,13 +58,13 @@ if "%FBBUILD_BUILD_ONLY%"=="1" goto :END
5758
:MAKE_KITS
5859
:: Package everything up
5960
pushd ..\install\arch-specific\win32
60-
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE%
61+
call BuildExecutableInstall %FBBUILD_KITS% %FBBUILD_BUILDTYPE%
6162
if "%ERRLEV%"=="1" (
6263
@echo Oops - some sort of error during packaging & popd & goto :END
6364
)
6465
if defined FBBUILD_INCLUDE_PDB (
6566
set /A FBBUILD_PACKAGE_NUMBER-=1
66-
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE% PDB
67+
call BuildExecutableInstall %FBBUILD_KITS% %FBBUILD_BUILDTYPE% PDB
6768
)
6869
popd
6970

@@ -118,31 +119,31 @@ goto :END
118119
::===============================
119120
:: Set up the compiler environment
120121

121-
if DEFINED VS170COMNTOOLS (
122-
@devenv /? >nul 2>nul
123-
@if errorlevel 9009 (call "%VS170COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS170COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
122+
@if DEFINED VS170COMNTOOLS (
123+
devenv /? >nul 2>nul
124+
if errorlevel 9009 (call "%VS170COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS170COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
124125
) else (
125-
if DEFINED VS160COMNTOOLS (
126-
@devenv /? >nul 2>nul
127-
@if errorlevel 9009 (call "%VS160COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS160COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
128-
) else (
129-
if DEFINED VS150COMNTOOLS (
130-
@devenv /? >nul 2>nul
131-
@if errorlevel 9009 (call "%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
132-
) else (
133-
if DEFINED VS140COMNTOOLS (
134-
@devenv /? >nul 2>nul
135-
@if errorlevel 9009 (call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
136-
) else (
137-
if DEFINED VS120COMNTOOLS (
138-
@devenv /? >nul 2>nul
139-
@if errorlevel 9009 (call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
140-
) else (
141-
@goto :HELP
142-
)
143-
)
144-
)
145-
)
126+
if DEFINED VS160COMNTOOLS (
127+
devenv /? >nul 2>nul
128+
if errorlevel 9009 (call "%VS160COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS160COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
129+
) else (
130+
if DEFINED VS150COMNTOOLS (
131+
devenv /? >nul 2>nul
132+
if errorlevel 9009 (call "%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
133+
) else (
134+
if DEFINED VS140COMNTOOLS (
135+
devenv /? >nul 2>nul
136+
if errorlevel 9009 (call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
137+
) else (
138+
if DEFINED VS120COMNTOOLS (
139+
devenv /? >nul 2>nul
140+
if errorlevel 9009 (call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE%) else ( echo The file: & @echo "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PROCESSOR_ARCHITECTURE% & echo has already been executed.)
141+
) else (
142+
goto :HELP
143+
)
144+
)
145+
)
146+
)
146147
)
147148
goto :END
148149
::---------

0 commit comments

Comments
 (0)