Skip to content

Commit 26158e2

Browse files
Merge 6ea696d into 826cfc7
2 parents 826cfc7 + 6ea696d commit 26158e2

File tree

5 files changed

+23
-14
lines changed

5 files changed

+23
-14
lines changed

build.win64x64/pharo.cog.spur/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ include ../common/Makefile
1717
#
1818
include ../third-party/Makefile.pkgconfig
1919
include ../third-party/Makefile.freetype2
20-
include ../third-party/Makefile.openssl
20+
include ../third-party/Makefile.openssl.win64
2121
include ../third-party/Makefile.libssh2
2222
include ../third-party/Makefile.libgit2
2323
include ../third-party/Makefile.libsdl2

build.win64x64/pharo.stack.spur/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ include ../common/Makefile
1717
#
1818
include ../third-party/Makefile.pkgconfig
1919
include ../third-party/Makefile.freetype2
20-
include ../third-party/Makefile.openssl
20+
include ../third-party/Makefile.openssl.win64
2121
include ../third-party/Makefile.libssh2
2222
include ../third-party/Makefile.libgit2
2323
include ../third-party/Makefile.libsdl2

build.win64x64/third-party/Makefile.openssl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ $(OPENSSLARCHIVE):
2222
$(THIRDPARTYLIBDIR)/$(OPENSSLLIBNAME): $(OPENSSLARCHIVE)
2323
@echo "ESTEBAN: ENTER"
2424
tar x -f $(OPENSSLARCHIVE) -C $(THIRDPARTYDIR)
25-
sed -i 's/symlink/copy/g' $(OPENSSLDIR)/util/mklink.pl
26-
sed -i 's/ln -s/cp/g' $(OPENSSLDIR)/util/point.sh
2725
cd $(OPENSSLDIR) \
2826
&& CC=x86_64-w64-mingw32-gcc \
2927
AR=x86_64-w64-mingw32-ar \
@@ -33,7 +31,7 @@ $(THIRDPARTYLIBDIR)/$(OPENSSLLIBNAME): $(OPENSSLARCHIVE)
3331
DLLTOOL='$(DLLTOOL)' \
3432
DLLWRAP='$(DLLWRAP)' \
3533
./Configure mingw64 --prefix='$(THIRDPARTYOUTDIR)' shared $(THIRDPARTY_CFLAGS) \
36-
&& make build_libs build_apps build_tools \
34+
&& make \
3735
&& make install_sw
3836

3937
# Assuming building ssleay32.dll will also build libeay32.dll

third-party/openssl.spec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
openssl_spec_download_url:=https://www.openssl.org/source/openssl-1.0.2q.tar.gz
2-
openssl_spec_archive_name:=openssl-1.0.2q.tar.gz
3-
openssl_spec_unpack_dir_name:=openssl-1.0.2q
4-
openssl_spec_product1_name_macOS:=libssl.1.0.0.dylib
5-
openssl_spec_product2_name_macOS:=libcrypto.1.0.0.dylib
6-
openssl_spec_product1_name_linux:=libssl.so.1.0.0
7-
openssl_spec_product2_name_linux:=libcrypto.so.1.0.0
8-
openssl_spec_product1_name_windows:=ssleay32.dll
9-
openssl_spec_product2_name_windows:=libeay32.dll
1+
openssl_spec_download_url:=https://www.openssl.org/source/openssl-1.1.1f.tar.gz
2+
openssl_spec_archive_name:=openssl-1.1.1f.tar.gz
3+
openssl_spec_unpack_dir_name:=openssl-1.1.1f
4+
openssl_spec_product1_name_macOS:=libssl.1.1.dylib
5+
openssl_spec_product2_name_macOS:=libcrypto.1.1.dylib
6+
openssl_spec_product1_name_linux:=libssl.so.1.1
7+
openssl_spec_product2_name_linux:=libcrypto.so.1.1
8+
openssl_spec_product1_name_windows:=libssl-1_1.dll
9+
openssl_spec_product2_name_windows:=libcrypto-1_1.dll
1010
openssl_spec_symlinks_macOS:=libssl*.dylib libcrypto*.dylib
1111
openssl_spec_symlinks_linux:=libssl.so* libcrypto.so*

third-party/openssl.spec.win64

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
openssl_spec_download_url:=https://www.openssl.org/source/openssl-1.1.1f.tar.gz
2+
openssl_spec_archive_name:=openssl-1.1.1f.tar.gz
3+
openssl_spec_unpack_dir_name:=openssl-1.1.1f
4+
openssl_spec_product1_name_macOS:=libssl.1.1.dylib
5+
openssl_spec_product2_name_macOS:=libcrypto.1.1.dylib
6+
openssl_spec_product1_name_linux:=libssl.so.1.1
7+
openssl_spec_product2_name_linux:=libcrypto.so.1.1
8+
openssl_spec_product1_name_windows:=libssl-1_1-x64.dll
9+
openssl_spec_product2_name_windows:=libcrypto-1_1-x64.dll
10+
openssl_spec_symlinks_macOS:=libssl*.dylib libcrypto*.dylib
11+
openssl_spec_symlinks_linux:=libssl.so* libcrypto.so*

0 commit comments

Comments
 (0)