2011-04-23 10:30:28 +00:00
|
|
|
diff -up openssl-1.0.0d/engines/Makefile.mingw-sfx openssl-1.0.0d/engines/Makefile
|
|
|
|
--- openssl-1.0.0d/engines/Makefile.mingw-sfx 2011-04-23 13:04:15.452843560 +0300
|
|
|
|
+++ openssl-1.0.0d/engines/Makefile 2011-04-23 13:04:15.689846190 +0300
|
2010-06-19 19:50:13 +00:00
|
|
|
@@ -111,7 +111,10 @@ install:
|
2009-08-29 20:22:06 +00:00
|
|
|
for l in $(LIBNAMES); do \
|
|
|
|
( echo installing $$l; \
|
|
|
|
pfx=lib; \
|
|
|
|
- if [ "$(PLATFORM)" != "Cygwin" ]; then \
|
|
|
|
+ if [ "$(PLATFORM)" = "mingw" ]; then \
|
|
|
|
+ sfx=.dll; \
|
|
|
|
+ cp $$pfx$$l$$sfx $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines/$$pfx$$l$$sfx.new; \
|
|
|
|
+ elif [ "$(PLATFORM)" != "Cygwin" ]; then \
|
|
|
|
case "$(CFLAGS)" in \
|
|
|
|
*DSO_BEOS*) sfx=".so";; \
|
2011-04-23 10:30:28 +00:00
|
|
|
*DSO_DLFCN*) sfx=`expr "$(SHLIB_EXT)" : '.*\(\.[a-z][a-z]*\)' \| ".so"`;; \
|