X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2FMakefile.am;h=dc124b14ac28b4f251cee882d121e8c420d4c824;hb=344c632c7a9f8047a412239dcd22ba1531bdfda5;hp=792dd784b80753df74e29ce6809af1923d515714;hpb=9a018c2e371eb1cef9708ac71653f2f2868895fa;p=tinc diff --git a/src/Makefile.am b/src/Makefile.am index 792dd784..dc124b14 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -111,6 +111,7 @@ tincd_SOURCES = \ tincd.c \ utils.c utils.h \ xalloc.h \ + xoshiro.c \ version.c version.h \ ed25519/ecdh.c \ ed25519/ecdsa.c \ @@ -140,6 +141,7 @@ tinc_SOURCES = \ ed25519/ecdh.c \ ed25519/ecdsa.c \ ed25519/ecdsagen.c \ + xoshiro.c \ $(ed25519_SOURCES) \ $(chacha_poly1305_SOURCES) @@ -148,6 +150,7 @@ sptps_test_SOURCES = \ sptps.c sptps.h \ sptps_test.c \ utils.c utils.h \ + xoshiro.c \ ed25519/ecdh.c \ ed25519/ecdsa.c \ $(ed25519_SOURCES) \ @@ -216,54 +219,60 @@ endif if OPENSSL tincd_SOURCES += \ - openssl/cipher.c \ + openssl/cipher.c openssl/cipher.h \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ openssl/prf.c \ - openssl/rsa.c + openssl/rsa.c \ + openssl/log.c openssl/log.h tinc_SOURCES += \ - openssl/cipher.c \ + openssl/cipher.c openssl/cipher.h \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ openssl/prf.c \ openssl/rsa.c \ - openssl/rsagen.c + openssl/rsagen.c \ + openssl/log.c openssl/log.h sptps_test_SOURCES += \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ - openssl/prf.c + openssl/prf.c \ + openssl/log.c openssl/log.h sptps_keypair_SOURCES += \ openssl/crypto.c sptps_speed_SOURCES += \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ - openssl/prf.c + openssl/prf.c \ + openssl/log.c openssl/log.h else if GCRYPT tincd_SOURCES += \ - gcrypt/cipher.c \ + gcrypt/cipher.c gcrypt/cipher.h \ gcrypt/crypto.c \ gcrypt/digest.c gcrypt/digest.h \ + gcrypt/pem.c gcrypt/pem.h \ gcrypt/prf.c \ - gcrypt/rsa.c + gcrypt/rsa.c gcrypt/rsa.h tinc_SOURCES += \ - gcrypt/cipher.c \ + gcrypt/cipher.c gcrypt/cipher.h \ gcrypt/crypto.c \ gcrypt/digest.c gcrypt/digest.h \ + gcrypt/pem.c gcrypt/pem.h \ gcrypt/prf.c \ - gcrypt/rsa.c \ + gcrypt/rsa.c gcrypt/rsa.h \ gcrypt/rsagen.c sptps_test_SOURCES += \ - gcrypt/cipher.c \ + gcrypt/cipher.c gcrypt/cipher.h \ gcrypt/crypto.c \ gcrypt/digest.c gcrypt/digest.h \ gcrypt/prf.c sptps_keypair_SOURCES += \ - openssl/crypto.c + gcrypt/crypto.c sptps_speed_SOURCES += \ - openssl/crypto.c \ - openssl/digest.c openssl/digest.h \ - openssl/prf.c + gcrypt/crypto.c \ + gcrypt/digest.c gcrypt/digest.h \ + gcrypt/prf.c else tincd_SOURCES += \ nolegacy/crypto.c \ @@ -282,6 +291,13 @@ sptps_speed_SOURCES += \ endif endif +if WITH_LEGACY_PROTOCOL +tinc_SOURCES += digest.c +tincd_SOURCES += digest.c cipher.c +sptps_test_SOURCES += digest.c +sptps_speed_SOURCES += digest.c +endif + if MINIUPNPC tincd_SOURCES += upnp.h upnp.c tincd_LDADD = $(MINIUPNPC_LIBS)