From f5d7a031a3c3e7b1700a67d6dc19daf3718ce6ee Mon Sep 17 00:00:00 2001 From: Ulf Möller Date: Tue, 27 Apr 1999 01:14:46 +0000 Subject: New Configure option no- (rsa, idea, rc5, ...). --- crypto/rc4/rc4test.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'crypto/rc4/rc4test.c') diff --git a/crypto/rc4/rc4test.c b/crypto/rc4/rc4test.c index 1410b72951..5abf8cff30 100644 --- a/crypto/rc4/rc4test.c +++ b/crypto/rc4/rc4test.c @@ -59,6 +59,14 @@ #include #include #include + +#ifdef NO_RC4 +int main(int argc, char *argv[]) +{ + printf("No RC4 support\n"); + return(0); +} +#else #include unsigned char keys[7][30]={ @@ -190,4 +198,4 @@ int main(int argc, char *argv[]) exit(err); return(0); } - +#endif -- cgit v1.2.3