[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.46 and 1.47

version 1.46, 2014/04/29 18:01:49 version 1.47, 2015/03/03 21:21:13
Line 39 
Line 39 
   
 WARNINGS=yes  WARNINGS=yes
   
   SSH1?=          yes
 OPENSSL?=       yes  OPENSSL?=       yes
   
 .if (${OPENSSL:L} == "yes")  .if (${OPENSSL:L} == "yes")
 CFLAGS+=        -DWITH_OPENSSL -DWITH_SSH1  CFLAGS+=        -DWITH_OPENSSL
   .else
   # SSH v.1 requires OpenSSL.
   SSH1=           no
   .endif
   
   .if (${SSH1:L} == "yes")
   CFLAGS+=        -DWITH_SSH1
 .endif  .endif
   
 CFLAGS+=        -DENABLE_PKCS11  CFLAGS+=        -DENABLE_PKCS11

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47