Hey there guys, I wanted to test out UFTP on my local network to see if I could improve my file transfer speeds. However I'm getting the following error when I try to build it:
Undefined symbols for architecture x86_64:
"_EVP_aes_128_ccm", referenced from:
_crypto_init in encrypt_openssl.o
"_EVP_aes_256_ccm", referenced from:
_crypto_init in encrypt_openssl.o
ld: symbol(s) not found for architecture x86_64
I'm not too familiar with digging into the internals of C/Makefiles so I'm not sure what to do. I have an up to date version of openssl. Could anyone here help me out?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It might have to do with the way OpenSSL was built on your system. I don't have an OSX machine handy to test this myself, but if you don't need encryption you can disable encryption support by running make as "make NO_ENCRYPTION=1 clean all"
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hey there guys, I wanted to test out UFTP on my local network to see if I could improve my file transfer speeds. However I'm getting the following error when I try to build it:
Undefined symbols for architecture x86_64:
"_EVP_aes_128_ccm", referenced from:
_crypto_init in encrypt_openssl.o
"_EVP_aes_256_ccm", referenced from:
_crypto_init in encrypt_openssl.o
ld: symbol(s) not found for architecture x86_64
I'm not too familiar with digging into the internals of C/Makefiles so I'm not sure what to do. I have an up to date version of openssl. Could anyone here help me out?
It might have to do with the way OpenSSL was built on your system. I don't have an OSX machine handy to test this myself, but if you don't need encryption you can disable encryption support by running make as "make NO_ENCRYPTION=1 clean all"