diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 1999-08-05 08:00:25 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 1999-08-05 08:00:25 +0000 |
commit | 6ea24563ed2a783f34c40e52abd2d489a6d1f133 (patch) | |
tree | 648ffb2479d37b8488155c3dd3d5c74818d18f16 /net/SSLtelnet/files/patch-aa | |
parent | Upgrade to v0.59r. mpg123 can now be built tuned for your specific x86 (diff) |
Fix build and run problems in conjunction with OpenSSL.
Natively SSLtelnet works with SSLeay, only.
PR: ports/12973
Submitted by: Issei Suzuki <issei@jp.FreeBSD.ORG> (maintainer)
Notes
Notes:
svn path=/head/; revision=20534
Diffstat (limited to '')
-rw-r--r-- | net/SSLtelnet/files/patch-aa | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/net/SSLtelnet/files/patch-aa b/net/SSLtelnet/files/patch-aa index c5ec8cdcad61..b93630d58cca 100644 --- a/net/SSLtelnet/files/patch-aa +++ b/net/SSLtelnet/files/patch-aa @@ -1,5 +1,5 @@ --- Makefile.orig Thu Sep 24 23:50:59 1998 -+++ Makefile Wed Mar 24 19:07:12 1999 ++++ Makefile Thu Aug 5 08:57:44 1999 @@ -47,7 +47,7 @@ # the location where SSLeay is installed ... @@ -26,7 +26,7 @@ #LDADD = -ltermcap $(sockslib) + +#BSD386 -+CC = gcc -DTERMCAP $(socksflags) ++CC += -DTERMCAP $(socksflags) +LDADD = -ltermcap $(sockslib) all: @@ -51,23 +51,14 @@ certificate: (\ -+ [ -f $(INSTALLTOP)/certs/telnetd.pem ] && exit; \ - cd $(INSTALLTOP)/certs; \ +- 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 ;\ +- chmod 600 $(INSTALLTOP)/certs/telnetd.pem; \ ++ [ -f $(INSTALLTOP)/openssl/certs/telnetd.pem ] && exit; \ ++ cd $(INSTALLTOP)/openssl/certs; \ + 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; \ ++ chmod 600 $(INSTALLTOP)/openssl/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 @@ - #SUBDIRS= gmp-1.2 kerberosIV/krb libbsd libdes/des libpk libtelnet libutil - SUBDIRS= gmp-1.3.2 libbsd libpk libtelnet libutil --SUBDIRS= libbsd libtelnet libutil -+SUBDIRS= libtelnet - - all: - @for i in $(SUBDIRS); \ |