When incoking "./config no-idea" and compiling, I get this:

  gcc -DMONOLITH -I.. -I../include  -fPIC -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_KRB5 
-DOPENSSL_NO_IDEA -DOPENSSL_NO_THREAD -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 
-m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM -c version.c
  In file included from version.c:121:
  ../include/openssl/idea.h:63: #error IDEA is disabled.
  *** Error code 1
  Stop in .../openssl-0.9.7-dev/apps.
  *** Error code 1
  Stop in .../openssl-0.9.7-dev.

This patch fixes that:

--snip--
Index: apps/version.c
===================================================================
RCS file: /home/cvs/OpenSSL/openssl/apps/version.c,v
retrieving revision 1.12
diff -u -r1.12 version.c
--- apps/version.c      2001/10/24 21:20:18     1.12
+++ apps/version.c      2001/11/14 08:31:24
@@ -118,7 +118,9 @@
 #include <openssl/md2.h>
 #include <openssl/rc4.h>
 #include <openssl/des_old.h>
+#ifndef OPENSSL_NO_IDEA
 #include <openssl/idea.h>
+#endif
 #include <openssl/blowfish.h>
 
 #undef PROG
--snip--

Cheers,

   Martin
-- 
<[EMAIL PROTECTED]>         |     Fujitsu Siemens
Fon: +49-89-636-46021, FAX: +49-89-636-47655 | 81730  Munich,  Germany
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to