Reputation: 1657
I downloaded the source code from "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/".
Configure went well but when i build I end up with following errors:
digestmd5.c:852: error: 'des_context_t' has no member named 'keysched'
digestmd5.c:853: error: 'des_context_t' has no member named 'keysched2'
digestmd5.c:854: error: 'des_context_t' has no member named 'ivec'
digestmd5.c:855: error: 'DES_DECRYPT' undeclared (first use in this function)
....
Upvotes: 1
Views: 889
Reputation: 1657
Well i guess configuration issues. I configured it with following settings and it worked.
./configure --prefix= (PATH) --exec-prefix=(PATH) --with-dblib=no --without-des --with-openssl=(PATH)
Upvotes: 4