diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-27 03:14:46 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-27 03:14:46 +0200 |
commit | f5d7a031a3c3e7b1700a67d6dc19daf3718ce6ee (patch) | |
tree | f5db72824de4586c35cef513ed48aff0d4b69a6b /crypto/cast/casttest.c | |
parent | Add PKCS#12 documentation and new option in x509 to add certificate extensions. (diff) | |
download | openssl-f5d7a031a3c3e7b1700a67d6dc19daf3718ce6ee.tar.xz openssl-f5d7a031a3c3e7b1700a67d6dc19daf3718ce6ee.zip |
New Configure option no-<cipher> (rsa, idea, rc5, ...).
Diffstat (limited to 'crypto/cast/casttest.c')
-rw-r--r-- | crypto/cast/casttest.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/crypto/cast/casttest.c b/crypto/cast/casttest.c index a8a707c711..3244b119e9 100644 --- a/crypto/cast/casttest.c +++ b/crypto/cast/casttest.c @@ -59,6 +59,14 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> + +#ifdef NO_CAST +int main(int argc, char *argv[]) +{ + printf("No CAST support\n"); + return(0); +} +#else #include <openssl/cast.h> #define FULL_TEST @@ -219,4 +227,4 @@ int main(int argc, char *argv[]) exit(err); return(err); } - +#endif |