aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2008-04-17 10:19:16 +0000
committerLutz Jänicke <jaenicke@openssl.org>2008-04-17 10:19:16 +0000
commit4c1a6e004a940a66c1d113ea3656a124e3dca1ea (patch)
tree83046c2cd8ef940d621c2be052fa822c31730ee0 /Makefile.org
parent6e6ada18c626baf0215accb3a377f3b1c0e862c1 (diff)
downloadopenssl-4c1a6e004a940a66c1d113ea3656a124e3dca1ea.tar.gz
Apply mingw patches as supplied by Roumen Petrov an Alon Bar-Lev
PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.org b/Makefile.org
index 249e573219..e5317ca4d8 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -534,6 +534,16 @@ install_sw:
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
fi ); \
+ if expr $(PLATFORM) : 'mingw' > /dev/null; then \
+ ( case $$i in \
+ *crypto*) i=libeay32.dll;; \
+ *ssl*) i=ssleay32.dll;; \
+ esac; \
+ echo installing $$i; \
+ cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
+ chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
+ mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
+ fi; \
fi; \
done; \
( here="`pwd`"; \