diff options
Diffstat (limited to 'src/lib/libcrypto/idea')
-rw-r--r-- | src/lib/libcrypto/idea/Makefile.ssl | 16 | ||||
-rw-r--r-- | src/lib/libcrypto/idea/idea.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/libcrypto/idea/Makefile.ssl b/src/lib/libcrypto/idea/Makefile.ssl index 30302e0b9f..217e6e0136 100644 --- a/src/lib/libcrypto/idea/Makefile.ssl +++ b/src/lib/libcrypto/idea/Makefile.ssl | |||
@@ -11,7 +11,8 @@ INSTALL_PREFIX= | |||
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -39,8 +40,7 @@ all: lib | |||
39 | 40 | ||
40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
42 | @echo You may get an error following this line. Please ignore. | 43 | $(RANLIB) $(LIB) || echo Never mind. |
43 | - $(RANLIB) $(LIB) | ||
44 | @touch lib | 44 | @touch lib |
45 | 45 | ||
46 | files: | 46 | files: |
@@ -80,12 +80,12 @@ clean: | |||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | 81 | ||
82 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 82 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
83 | i_cbc.o: idea_lcl.h | 83 | i_cbc.o: i_cbc.c idea_lcl.h |
84 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 84 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
85 | i_cfb64.o: idea_lcl.h | 85 | i_cfb64.o: i_cfb64.c idea_lcl.h |
86 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 86 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
87 | i_ecb.o: ../../include/openssl/opensslv.h idea_lcl.h | 87 | i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h |
88 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 88 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
89 | i_ofb64.o: idea_lcl.h | 89 | i_ofb64.o: i_ofb64.c idea_lcl.h |
90 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 90 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
91 | i_skey.o: idea_lcl.h | 91 | i_skey.o: i_skey.c idea_lcl.h |
diff --git a/src/lib/libcrypto/idea/idea.h b/src/lib/libcrypto/idea/idea.h index f14adf8398..67132414ee 100644 --- a/src/lib/libcrypto/idea/idea.h +++ b/src/lib/libcrypto/idea/idea.h | |||
@@ -59,7 +59,7 @@ | |||
59 | #ifndef HEADER_IDEA_H | 59 | #ifndef HEADER_IDEA_H |
60 | #define HEADER_IDEA_H | 60 | #define HEADER_IDEA_H |
61 | 61 | ||
62 | #ifdef NO_IDEA | 62 | #ifdef OPENSSL_NO_IDEA |
63 | #error IDEA is disabled. | 63 | #error IDEA is disabled. |
64 | #endif | 64 | #endif |
65 | 65 | ||