The 'no-rijndael' option must define OPENSSL_NO_AES because that is
authorBodo Möller <bodo@openssl.org>
Sat, 22 Sep 2001 01:40:47 +0000 (01:40 +0000)
committerBodo Möller <bodo@openssl.org>
Sat, 22 Sep 2001 01:40:47 +0000 (01:40 +0000)
what we look for in crypto/evp.

Configure

index 7cca064f3f2db330e1cc05fe18fe5a2faf463d3e..e4c23bd699427510242f882c06200d9915a62a70 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -638,6 +638,12 @@ PROCESS_ARGS:
                        $flags .= "-DOPENSSL_NO_$algo ";
                        $depflags .= "-DOPENSSL_NO_$algo ";
                        $openssl_algorithm_defines .= "#define OPENSSL_NO_$algo\n";
+                       if ($algo eq "RIJNDAEL")
+                               {
+                               $flags .= "-DOPENSSL_NO_AES ";
+                               $depflags .= "-DOPENSSL_NO_AES ";
+                               $openssl_algorithm_defines .= "#define OPENSSL_NO_AES\n";
+                               }
                        if ($algo eq "DES")
                                {
                                push @skip, "mdc2";