svn commit: r323030 - stable/11/lib/libtelnet

Cy Schubert cy at FreeBSD.org
Wed Aug 30 19:38:45 UTC 2017


Author: cy
Date: Wed Aug 30 19:38:43 2017
New Revision: 323030
URL: https://svnweb.freebsd.org/changeset/base/323030

Log:
  MFC r321806:
  
  Remove redundant include directories which expand to a noop,
  "-I/lib/krb5 -I -I".
  
  Reviewed by:	ngie@, markm@
  Differential Revision:	D11769

Modified:
  stable/11/lib/libtelnet/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libtelnet/Makefile
==============================================================================
--- stable/11/lib/libtelnet/Makefile	Wed Aug 30 19:21:11 2017	(r323029)
+++ stable/11/lib/libtelnet/Makefile	Wed Aug 30 19:38:43 2017	(r323030)
@@ -23,8 +23,7 @@ CFLAGS+=	-DENCRYPTION -DAUTHENTICATION -DSRA
 
 .if ${MK_KERBEROS_SUPPORT} != "no"
 SRCS+=		kerberos5.c
-CFLAGS+=	-DKRB5 -I${KRB5DIR}/lib/krb5 -I${KRB5OBJDIR} -I${ASN1OBJDIR}
-CFLAGS+=	-DFORWARD -Dnet_write=telnet_net_write
+CFLAGS+=	-DKRB5 -DFORWARD -Dnet_write=telnet_net_write
 .endif
 
 .include <bsd.lib.mk>


More information about the svn-src-all mailing list