svn commit: r323043 - stable/10/lib/libtelnet

Cy Schubert cy at FreeBSD.org
Thu Aug 31 00:56:11 UTC 2017


Author: cy
Date: Thu Aug 31 00:56:10 2017
New Revision: 323043
URL: https://svnweb.freebsd.org/changeset/base/323043

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

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

Modified: stable/10/lib/libtelnet/Makefile
==============================================================================
--- stable/10/lib/libtelnet/Makefile	Wed Aug 30 23:49:14 2017	(r323042)
+++ stable/10/lib/libtelnet/Makefile	Thu Aug 31 00:56:10 2017	(r323043)
@@ -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
 .endif
 


More information about the svn-src-stable-10 mailing list