diff options
Diffstat (limited to 'src/lib/libcrypto/rc5')
-rw-r--r-- | src/lib/libcrypto/rc5/Makefile.ssl | 16 | ||||
-rw-r--r-- | src/lib/libcrypto/rc5/rc5.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/libcrypto/rc5/Makefile.ssl b/src/lib/libcrypto/rc5/Makefile.ssl index c8ee124776..25740ab961 100644 --- a/src/lib/libcrypto/rc5/Makefile.ssl +++ b/src/lib/libcrypto/rc5/Makefile.ssl | |||
@@ -12,7 +12,8 @@ INSTALL_PREFIX= | |||
12 | OPENSSLDIR= /usr/local/ssl | 12 | OPENSSLDIR= /usr/local/ssl |
13 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
14 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
17 | AR= ar r | 18 | AR= ar r |
18 | 19 | ||
@@ -44,8 +45,7 @@ all: lib | |||
44 | 45 | ||
45 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
46 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
47 | @echo You may get an error following this line. Please ignore. | 48 | $(RANLIB) $(LIB) || echo Never mind. |
48 | - $(RANLIB) $(LIB) | ||
49 | @touch lib | 49 | @touch lib |
50 | 50 | ||
51 | # elf | 51 | # elf |
@@ -106,8 +106,8 @@ clean: | |||
106 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
107 | 107 | ||
108 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | 108 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h |
109 | rc5_ecb.o: rc5_locl.h | 109 | rc5_ecb.o: rc5_ecb.c rc5_locl.h |
110 | rc5_enc.o: ../../include/openssl/rc5.h rc5_locl.h | 110 | rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h |
111 | rc5_skey.o: ../../include/openssl/rc5.h rc5_locl.h | 111 | rc5_skey.o: ../../include/openssl/rc5.h rc5_locl.h rc5_skey.c |
112 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h | 112 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c |
113 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h | 113 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c |
diff --git a/src/lib/libcrypto/rc5/rc5.h b/src/lib/libcrypto/rc5/rc5.h index fc4cea5e36..4adfd2db5a 100644 --- a/src/lib/libcrypto/rc5/rc5.h +++ b/src/lib/libcrypto/rc5/rc5.h | |||
@@ -63,7 +63,7 @@ | |||
63 | extern "C" { | 63 | extern "C" { |
64 | #endif | 64 | #endif |
65 | 65 | ||
66 | #ifdef NO_RC5 | 66 | #ifdef OPENSSL_NO_RC5 |
67 | #error RC5 is disabled. | 67 | #error RC5 is disabled. |
68 | #endif | 68 | #endif |
69 | 69 | ||