diff options
author | dirk <dirk@FreeBSD.org> | 1999-03-26 16:44:57 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-03-26 16:44:57 +0800 |
commit | ca8e603baade9da49c406efe929bc106c2bfe4b4 (patch) | |
tree | a28fdf9b7faa7300611e02c2550051e9a3f511cd /net/SSLtelnet/files | |
parent | 6166c46f2a2745ae5203b33ac0f604a95d6e7c16 (diff) | |
download | freebsd-ports-gnome-ca8e603baade9da49c406efe929bc106c2bfe4b4.tar.gz freebsd-ports-gnome-ca8e603baade9da49c406efe929bc106c2bfe4b4.tar.zst freebsd-ports-gnome-ca8e603baade9da49c406efe929bc106c2bfe4b4.zip |
${PREFIX}/bin/ssleay -> ${PREFIX}/bin/openssl due to openssl upgrade.
Unfortunaly SSLtelnet doesn't work with openssl-0.9.2b at the moment.
We'll try to fix this as soon as possible.
OK'ed by: Issei Suzuki <issei@jp.freebsd.org> (maintainer)
Diffstat (limited to 'net/SSLtelnet/files')
-rw-r--r-- | net/SSLtelnet/files/patch-aa | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/net/SSLtelnet/files/patch-aa b/net/SSLtelnet/files/patch-aa index 4fbd79db18d4..c5ec8cdcad61 100644 --- a/net/SSLtelnet/files/patch-aa +++ b/net/SSLtelnet/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Aug 2 15:08:25 1997 -+++ Makefile Wed Sep 2 12:53:13 1998 +--- Makefile.orig Thu Sep 24 23:50:59 1998 ++++ Makefile Wed Mar 24 19:07:12 1999 @@ -47,7 +47,7 @@ # the location where SSLeay is installed ... @@ -47,14 +47,19 @@ @echo "*****************************************************" @echo "* Do not forget to make the certificate for telnetd *" @echo "* either manually or via \"make certificate\" *" -@@ -158,6 +161,7 @@ +@@ -158,9 +161,10 @@ certificate: (\ + [ -f $(INSTALLTOP)/certs/telnetd.pem ] && exit; \ cd $(INSTALLTOP)/certs; \ - ssleay req -new -x509 -nodes -days 365 -out telnetd.pem -keyout telnetd.pem; \ - ln -s telnetd.pem `ssleay x509 -noout -hash < telnetd.pem`.0 ;\ +- ssleay req -new -x509 -nodes -days 365 -out telnetd.pem -keyout telnetd.pem; \ +- ln -s telnetd.pem `ssleay x509 -noout -hash < telnetd.pem`.0 ;\ ++ openssl req -new -x509 -nodes -days 365 -out telnetd.pem -keyout telnetd.pem; \ ++ ln -s telnetd.pem `openssl x509 -noout -hash < telnetd.pem`.0 ;\ + chmod 600 $(INSTALLTOP)/certs/telnetd.pem; \ + ) + --- lib/Makefile.orig Wed Sep 2 13:11:39 1998 +++ lib/Makefile Wed Sep 2 13:11:49 1998 @@ -1,7 +1,7 @@ |