diff options
author | markm <markm@FreeBSD.org> | 2001-08-03 16:03:26 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-08-03 16:03:26 +0000 |
commit | 18d8718070b989bd990856066b78524de0c517d7 (patch) | |
tree | 94de6e2eac1019debf4189b09078eb1d168b203e /kerberos5/lib | |
parent | 07a5285107df49947d1473ff86c0cddd6efceca2 (diff) | |
download | FreeBSD-src-18d8718070b989bd990856066b78524de0c517d7.zip FreeBSD-src-18d8718070b989bd990856066b78524de0c517d7.tar.gz |
Revamp and diff-reduce the various secure telnets. Make sure that
Kerberos5 has _a_ telnet (which is not currently K5 enabled).
Incorporate BDE's static linking fixes.
Diffstat (limited to 'kerberos5/lib')
-rw-r--r-- | kerberos5/lib/Makefile | 1 | ||||
-rw-r--r-- | kerberos5/lib/libtelnet/Makefile | 15 |
2 files changed, 9 insertions, 7 deletions
diff --git a/kerberos5/lib/Makefile b/kerberos5/lib/Makefile index c8bf769..c0d5cab 100644 --- a/kerberos5/lib/Makefile +++ b/kerberos5/lib/Makefile @@ -5,4 +5,5 @@ SUBDIR= libroken libvers libasn1 libhdb libkrb5 libkadm5clnt libkadm5srv libsl l (${MAKE_KERBEROS4} == "YES" || ${MAKE_KERBEROS4} == "yes") SUBDIR+=libkafs5 .endif +SUBDIR+=libtelnet .include <bsd.subdir.mk> diff --git a/kerberos5/lib/libtelnet/Makefile b/kerberos5/lib/libtelnet/Makefile index 35e936e..7ee29e6 100644 --- a/kerberos5/lib/libtelnet/Makefile +++ b/kerberos5/lib/libtelnet/Makefile @@ -6,19 +6,20 @@ INTERNALLIB= yes INTERNALSTATICLIB=yes NOPIC= yes -SRCS= genget.c getent.c misc.c encrypt.c auth.c kerberos.c \ - enc_des.c pk.c sra.c +SRCS= genget.c getent.c misc.c encrypt.c auth.c \ + enc_des.c sra.c pk.c +#SRCS+= kerberos5.c -CFLAGS+= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \ - -DKRB4 -DSRA -I${TELNETDIR} \ - -I${KRB4DIR}/lib/krb +CFLAGS= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \ + -DSRA -I${TELNETDIR} +#CFLAGS+= -DKRB5 -I${KRB5DIR}/lib/krb5 -INCS= ${TELNETDIR}/arpa/telnet.h +INCS= ${TELNETDIR}/arpa/telnet.h INCDIR= /usr/include/arpa # # Remove obsolete shared libraries, if any. We don't bother moving them -# to/usr/lib/compat, since they were only used by telnet, telnetd and +# to /usr/lib/compat, since they were only used by telnet, telnetd and # tn3270. # beforeinstall: |