aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-08-08 19:12:26 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-08-08 19:12:26 +0000
commitdfbaf95618475640cfcd3c13e4b425538a807666 (patch)
tree584feac24e8b4a6cef729504a10d88f09efe1013
parent204cf1abb0fa5c5f31397a79eac3a8739f360d9e (diff)
downloadopenssl-dfbaf95618475640cfcd3c13e4b425538a807666.zip
openssl-dfbaf95618475640cfcd3c13e4b425538a807666.tar.gz
openssl-dfbaf95618475640cfcd3c13e4b425538a807666.tar.bz2
Install libRSAglue.a when OpenSSL is build with RSAref.
This should now finally make the RSAref users happy...
-rw-r--r--CHANGES3
-rw-r--r--rsaref/Makefile.ssl6
2 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f298e40..eaa2723 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,9 @@
_______________
Changes between 0.9.3a and 0.9.4 [xx Aug 1999]
+
+ *) Install libRSAglue.a when OpenSSL is build with RSAref.
+ [Ralf S. Engelschall]
*) A few more ``#ifndef NO_FP_API / #endif'' pairs for consistency.
[Andrija Antonijevic <TheAntony2@bigfoot.com>]
diff --git a/rsaref/Makefile.ssl b/rsaref/Makefile.ssl
index 4d19f84..165b2b8 100644
--- a/rsaref/Makefile.ssl
+++ b/rsaref/Makefile.ssl
@@ -52,6 +52,12 @@ links:
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
install:
+ -@if [ "x`echo x $(EX_LIBS) | grep RSAglue`" != x ]; then \
+ echo "installing libRSAglue.a"; \
+ cp $(LIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/libRSAglue.a; \
+ $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/libRSAglue.a; \
+ chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/libRSAglue.a; \
+ fi
# @for i in $(EXHEADER) ; \
# do \