New Configure option no-<cipher> (rsa, idea, rc5, ...).
[openssl.git] / crypto / rc2 / rc2test.c
index e6b355f434de8c979e5725ed4643c1e2db76ec04..6a5defa6ea8a549f8147b59b59e9d6e49e2343e9 100644 (file)
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
+
+#ifdef NO_RC2
+int main(int argc, char *argv[])
+{
+    printf("No RC2 support\n");
+    return(0);
+}
+#else
 #include <openssl/rc2.h>
 
 unsigned char RC2key[4][16]={
@@ -258,3 +266,4 @@ static char *pt(unsigned char *p)
        }
        
 #endif
+#endif