summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2017-05-09 23:09:22 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2017-05-09 23:09:22 +0100
commitc113b768e24439447e0306011ca2743606f227f9 (patch)
tree9db459c88a69cdc37849f403196b30a428120309
parenteb01b89e3e2cd6f74053b825cd1a31e07a60dd36 (diff)
downloadtoolchains-c113b768e24439447e0306011ca2743606f227f9.tar.gz
toolchains-c113b768e24439447e0306011ca2743606f227f9.tar.bz2
Set an OpenSSL environment path
OpenSSL sometimes tries to read a config file which by default is in /opt. On AmigaOS this causes a request for volume opt: The way NetSurf uses curl/openssl doesn't appear to trigger this, but adding the option as a precaution as I've seen the problem with this OpenSSL build when used in other software.
-rw-r--r--sdk/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/sdk/Makefile b/sdk/Makefile
index 47efd13..629ddc8 100644
--- a/sdk/Makefile
+++ b/sdk/Makefile
@@ -114,6 +114,7 @@ ifeq ($(TARGET),ppc-amigaos)
SDK_ITEMS := $(addprefix $(BUILDSTEPS)/, libiconv.d libtre.d libpbl.d $(COMMON_SDK_ITEMS) libjpeg-turbo.d)
EXTRAARGS_LIBCARES := --disable-shared
EXTRAARGS_LIBCURL := --disable-ntlm-wb --without-random --enable-threaded-resolver LIBS=-lpthread
+ EXTRAARGS_OPENSSL := --openssldir="/env/openssl"
endif
ifeq ($(TARGET),i686-w64-mingw32)