[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.88 and 1.89

version 1.88, 2023/01/15 23:05:32 version 1.89, 2024/01/11 01:45:36
Line 34 
Line 34 
   
 OPENSSL?=       yes  OPENSSL?=       yes
 ZLIB?=          yes  ZLIB?=          yes
   DSAKEY?=        yes
   
 .if (${OPENSSL:L} == "yes")  .if (${OPENSSL:L} == "yes")
 CFLAGS+=        -DWITH_OPENSSL  CFLAGS+=        -DWITH_OPENSSL
Line 43 
Line 44 
 CFLAGS+=        -DWITH_ZLIB  CFLAGS+=        -DWITH_ZLIB
 .endif  .endif
   
   .if (${DSAKEY:L} == "yes")
   CFLAGS+=        -DWITH_DSA
   .endif
   
 CFLAGS+=        -DENABLE_PKCS11  CFLAGS+=        -DENABLE_PKCS11
 .ifndef NOPIC  .ifndef NOPIC
 CFLAGS+=        -DHAVE_DLOPEN  CFLAGS+=        -DHAVE_DLOPEN
Line 78 
Line 83 
 SRCS_KEY+=      chacha.c  SRCS_KEY+=      chacha.c
 SRCS_KEY+=      poly1305.c  SRCS_KEY+=      poly1305.c
 .if (${OPENSSL:L} == "yes")  .if (${OPENSSL:L} == "yes")
 SRCS_KEY+=      ssh-dss.c  
 SRCS_KEY+=      ssh-ecdsa.c  SRCS_KEY+=      ssh-ecdsa.c
 SRCS_KEY+=      ssh-ecdsa-sk.c  SRCS_KEY+=      ssh-ecdsa-sk.c
 SRCS_KEY+=      ssh-rsa.c  SRCS_KEY+=      ssh-rsa.c
   .if (${DSAKEY:L} == "yes")
   SRCS_KEY+=      ssh-dss.c
   .endif
 SRCS_KEY+=      sshbuf-getput-crypto.c  SRCS_KEY+=      sshbuf-getput-crypto.c
 SRCS_KEY+=      digest-openssl.c  SRCS_KEY+=      digest-openssl.c
 SRCS_KEY+=      cipher-chachapoly-libcrypto.c  SRCS_KEY+=      cipher-chachapoly-libcrypto.c

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89