[BACK]Return to Makefile.inc CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Makefile.inc between version 1.4 and 1.5

version 1.4, 1999/09/29 00:09:50 version 1.5, 1999/09/29 18:16:18
Line 1 
Line 1 
 CFLAGS+=        -I${.OBJDIR} -I${.CURDIR}/.. -DKRB4 -I/usr/include/kerberosIV  CFLAGS+=        -I${.OBJDIR} -I${.CURDIR}/..
   
   .include <bsd.own.mk> # for KERBEROS and AFS
   
   .if (${KERBEROS} == "yes")
   CFLAGS+= -DKRB4 -I/usr/include/kerberosIV
   LDADD+=  -lkrb
   DPADD+=  ${LIBKRB}
   .endif
   
   .if (${AFS} == "yes")
   CFLAGS+= -DAFS
   LDADD+=  -lkafs
   DPADD+=  ${LIBKRBAFS}
   .endif
   
 USER_SHELLS = sh jsh ksh csh tcsh bash zsh ash  USER_SHELLS = sh jsh ksh csh tcsh bash zsh ash

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5