File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
1
## NSIS
2
2
3
- Directory contains the files needed for the installer
3
+ Directory contains files needed for an installer.
4
4
5
5
## Build
6
6
7
- Directory contains the various build scripts
7
+ Directory contains various build scripts.
8
8
9
9
### Build depends:
10
10
11
11
* Microsoft SDK 7.1 for build PostgreSQL and Microsoft Visual Studio 2013-2015 for build PgAdmin
12
- * Active Perl
12
+ * Active Perl <= 5.12
13
13
* Python 2.7, 3.5
14
- * MSYS2
15
- * 7Zip
14
+ * msys2
15
+ * 7-Zip
16
16
* NSIS
17
17
18
18
## Patches
19
19
20
- Directory contains the patches needed to build PostgreSQL
20
+ Directory contains patches which are need to build PostgreSQL.
Original file line number Diff line number Diff line change @@ -79,9 +79,10 @@ rm -rf %BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql
79
79
MKDIR %BUILD_DIR% \distr_%ARCH% _%PGVER% \postgresql
80
80
CD %BUILD_DIR% \postgresql\*%PGVER% *\src\tools\msvc
81
81
82
- REM That's really makes no sence for me...
83
82
REM xcopy /Y %DEPENDENCIES_BIN_DIR%\libintl\lib\*.dll %BUILD_DIR%\postgresql\*%PGVER%*\ || GOTO :ERROR
84
83
REM xcopy /Y %DEPENDENCIES_BIN_DIR%\iconv\lib\*.dll %BUILD_DIR%\postgresql\*%PGVER%*\ || GOTO :ERROR
84
+ cp -va %DEPENDENCIES_BIN_DIR% \libintl\lib\*.dll %BUILD_DIR% \postgresql\postgresql-%PGVER% \ || GOTO :ERROR
85
+ cp -va %DEPENDENCIES_BIN_DIR% \iconv\lib\*.dll %BUILD_DIR% \postgresql\postgresql-%PGVER% \ || GOTO :ERROR
85
86
86
87
perl install.pl %BUILD_DIR% \distr_%ARCH% _%PGVER% \postgresql || GOTO :ERROR
87
88
cp -va %DEPENDENCIES_BIN_DIR% /libintl/lib/*.dll %BUILD_DIR% \distr_%ARCH% _%PGVER% \postgresql\bin || GOTO :ERROR
Original file line number Diff line number Diff line change 1
1
@ ECHO OFF
2
2
3
- REM What you need to build PostgreSQL and PgAdmin
4
- REM 1. Microsoft Windows SDK 7.1 and MSVC 2013-2013 for PgAdmin
3
+ REM What do you need to build PostgreSQL and PgAdmin
4
+ REM 1. Microsoft Windows SDK 7.1 and Visual Studio 2015 for PgAdmin
5
5
REM 2. Active Perl < = 5.14
6
6
REM 3. Python 2.7, 3.5
7
7
REM 4. MSYS2
@@ -45,7 +45,7 @@ REM Set ONE_C for 1C Patching
45
45
IF " %ONE_C% " == " " SET ONE_C = NO
46
46
47
47
REM Set build architecture: X86 or X64
48
- IF " %ARCH% " == " " SET ARCH = X64
48
+ IF " %ARCH% " == " " SET ARCH = X86
49
49
IF " %ARCH% " == " x86" SET ARCH = X86
50
50
IF " %ARCH% " == " x64" SET ARCH = X64
51
51
You can’t perform that action at this time.
0 commit comments