diff options
author | kris <kris@FreeBSD.org> | 2000-01-20 07:29:01 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-01-20 07:29:01 +0000 |
commit | 6dea110be6b504383e7271cd0173acd492dea9e8 (patch) | |
tree | daddd66dd6e0eb3910ff2bf245104d6cc753f31b /secure/usr.bin/openssl/Makefile | |
parent | 720968f83dee419ea20626d8e3d727689b586821 (diff) | |
download | FreeBSD-src-6dea110be6b504383e7271cd0173acd492dea9e8.zip FreeBSD-src-6dea110be6b504383e7271cd0173acd492dea9e8.tar.gz |
Don't search for libraries in ${LOCALBASE}. This should fix the problems
people were seeing with conflicts with the openssl port.
Diffstat (limited to 'secure/usr.bin/openssl/Makefile')
-rw-r--r-- | secure/usr.bin/openssl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile index e9e4d1f..6f47de5 100644 --- a/secure/usr.bin/openssl/Makefile +++ b/secure/usr.bin/openssl/Makefile @@ -17,7 +17,7 @@ LOCALBASE?= /usr/local CFLAGS+= -DNO_RSA -DNO_SSL2 .else CFLAGS+= -DRSAref -LDADD+= -L${LOCALBASE}/lib -lrsaref +LDADD+= -lRSAglue ${LOCALBASE}/lib/librsaref.a .endif SRCS= apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c dgst.c dh.c \ |