Tweak the OpenSSL build instructions.

This commit is contained in:
Dave Page 2020-07-13 13:36:56 +01:00
parent d3eaac8609
commit 9113932066

View File

@ -52,11 +52,17 @@ copy C:\build64\zlib\lib\zlib.lib C:\build64\zlib\lib\zdll.lib
wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz
tar -zxvf openssl-1.1.1g.tar.gz tar -zxvf openssl-1.1.1g.tar.gz
cd openssl-1.1.1g cd openssl-1.1.1g
perl Configure VC-WIN64A no-asm --prefix=C:\build64\openssl --openssldir=C:\build64\openssl\ssl no-ssl2 no-ssl3 no-comp perl Configure VC-WIN64A no-asm --prefix=C:\build64\openssl no-ssl2 no-ssl3 no-comp
nmake nmake
nmake test nmake test
nmake install nmake install
Note that if you are not working in an administrative account, you may need to
create and give your regular account appropriate permissions to write/modify
files in C:\Program Files\Common Files\SSL. This is the default directory used
for the OPENSSLDIR, and should not be changed to a directory that un-privileged
users could potentially write to.
4) Download the PostgreSQL source code, unpack and build it: 4) Download the PostgreSQL source code, unpack and build it:
wget https://ftp.postgresql.org/pub/source/v12.3/postgresql-12.3.tar.bz2 wget https://ftp.postgresql.org/pub/source/v12.3/postgresql-12.3.tar.bz2