X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fidea%2Fideatest.c;fp=crypto%2Fidea%2Fideatest.c;h=64b9353e414f4557858f3aa4401b44995f1bc12c;hp=4593d9e694d811dfbcef4b700837467d86c100b3;hb=f5d7a031a3c3e7b1700a67d6dc19daf3718ce6ee;hpb=b64f825671861144e1c24f2a5498a95a083021cd diff --git a/crypto/idea/ideatest.c b/crypto/idea/ideatest.c index 4593d9e694..64b9353e41 100644 --- a/crypto/idea/ideatest.c +++ b/crypto/idea/ideatest.c @@ -59,6 +59,14 @@ #include #include #include + +#ifdef NO_IDEA +int main(int argc, char *argv[]) +{ + printf("No IDEA support\n"); + return(0); +} +#else #include unsigned char k[16]={ @@ -219,4 +227,4 @@ static char *pt(unsigned char *p) ret[16]='\0'; return(ret); } - +#endif