diff options
Diffstat (limited to '')
95 files changed, 12462 insertions, 3511 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl index efdbba38ac..dd755f49fb 100644 --- a/src/lib/libcrypto/Makefile.ssl +++ b/src/lib/libcrypto/Makefile.ssl | |||
| @@ -5,157 +5,210 @@ | |||
| 5 | DIR= crypto | 5 | DIR= crypto |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDE= -I. -I../include | 8 | INCLUDE= -I. -I$(TOP) -I../include |
| 9 | INCLUDES= -I.. -I../../include | 9 | INCLUDES= -I.. -I../.. -I../../include |
| 10 | CFLAG= -g | 10 | CFLAG= -g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP= /usr/local/ssl | 13 | INSTALLTOP= /usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | RM= /bin/rm -f | 18 | RM= rm -f |
| 16 | AR= ar r | 19 | AR= ar r |
| 17 | 20 | ||
| 18 | MAKE= make -f Makefile.ssl | ||
| 19 | MAKEDEPEND= makedepend -f Makefile.ssl | ||
| 20 | MAKEFILE= Makefile.ssl | ||
| 21 | |||
| 22 | PEX_LIBS= | 21 | PEX_LIBS= |
| 23 | EX_LIBS= | 22 | EX_LIBS= |
| 24 | 23 | ||
| 25 | CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS=" \"$(CC) $(CFLAG)\" " | 24 | CFLAGS= $(INCLUDE) $(CFLAG) |
| 26 | 25 | ||
| 27 | ERR=crypto | ||
| 28 | ERRC=cpt_err | ||
| 29 | 26 | ||
| 30 | LIBS= | 27 | LIBS= |
| 31 | 28 | ||
| 32 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ | 29 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ |
| 33 | des rc2 rc4 rc5 idea bf cast \ | 30 | des rc2 rc4 rc5 idea bf cast \ |
| 34 | bn rsa dsa dh \ | 31 | bn ec rsa dsa dh dso engine aes \ |
| 35 | buffer bio stack lhash rand err objects \ | 32 | buffer bio stack lhash rand err objects \ |
| 36 | evp pem x509 \ | 33 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 |
| 37 | asn1 conf txt_db pkcs7 | ||
| 38 | 34 | ||
| 39 | GENERAL=Makefile README | 35 | GENERAL=Makefile README crypto-lib.com install.com |
| 40 | 36 | ||
| 41 | LIB= $(TOP)/libcrypto.a | 37 | LIB= $(TOP)/libcrypto.a |
| 42 | LIBSRC= cryptlib.c mem.c cversion.c ex_data.c $(ERRC).c | 38 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
| 43 | LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o $(ERRC).o | 39 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c |
| 40 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o | ||
| 44 | 41 | ||
| 45 | SRC= $(LIBSRC) | 42 | SRC= $(LIBSRC) |
| 46 | 43 | ||
| 47 | EXHEADER= crypto.h cryptall.h | 44 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \ |
| 48 | HEADER= cryptlib.h date.h $(EXHEADER) | 45 | ossl_typ.h |
| 46 | HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER) | ||
| 49 | 47 | ||
| 50 | ALL= $(GENERAL) $(SRC) $(HEADER) | 48 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 51 | 49 | ||
| 52 | top: | 50 | top: |
| 53 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | 51 | @(cd ..; $(MAKE) DIRS=$(DIR) all) |
| 54 | 52 | ||
| 55 | all: date.h lib subdirs | 53 | all: buildinf.h lib subdirs shared |
| 54 | |||
| 55 | buildinf.h: ../Makefile.ssl | ||
| 56 | ( echo "#ifndef MK1MF_BUILD"; \ | ||
| 57 | echo ' /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */'; \ | ||
| 58 | echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \ | ||
| 59 | echo ' #define PLATFORM "$(PLATFORM)"'; \ | ||
| 60 | echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \ | ||
| 61 | echo '#endif' ) >buildinf.h | ||
| 56 | 62 | ||
| 57 | date.h: ../Makefile.ssl ../VERSION | 63 | testapps: |
| 58 | echo "#define DATE \"`date`\"" >date.h | 64 | if echo ${SDIRS} | fgrep ' des '; \ |
| 65 | then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi | ||
| 66 | cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps | ||
| 59 | 67 | ||
| 60 | subdirs: | 68 | subdirs: |
| 61 | @for i in $(SDIRS) ;\ | 69 | @for i in $(SDIRS) ;\ |
| 62 | do \ | 70 | do \ |
| 63 | (cd $$i; echo "making all in $$i..."; \ | 71 | (cd $$i && echo "making all in crypto/$$i..." && \ |
| 64 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' all ); \ | 72 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ |
| 65 | done; | 73 | done; |
| 66 | 74 | ||
| 67 | files: | 75 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | @for i in $(SDIRS) ;\ | 77 | @for i in $(SDIRS) ;\ |
| 70 | do \ | 78 | do \ |
| 71 | (cd $$i; echo "making 'files' in $$i..."; \ | 79 | (cd $$i && echo "making 'files' in crypto/$$i..." && \ |
| 72 | $(MAKE) files ); \ | 80 | $(MAKE) PERL='${PERL}' files ); \ |
| 73 | done; | 81 | done; |
| 74 | 82 | ||
| 75 | links: | 83 | links: |
| 76 | /bin/rm -f Makefile | 84 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 85 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../include $(HEADER) ; | 86 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../test $(TEST) ; | 87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
| 80 | $(TOP)/util/mklink.sh ../apps $(APPS) ; | 88 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 81 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 89 | @for i in $(SDIRS); do \ |
| 82 | @for i in $(SDIRS) ;\ | 90 | (cd $$i && echo "making links in crypto/$$i..." && \ |
| 83 | do \ | 91 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ |
| 84 | (cd $$i; echo "making links in $$i..."; \ | ||
| 85 | $(MAKE) links ); \ | ||
| 86 | done; | 92 | done; |
| 87 | 93 | ||
| 88 | lib: $(LIBOBJ) | 94 | lib: $(LIBOBJ) |
| 89 | $(AR) $(LIB) $(LIBOBJ) | 95 | $(AR) $(LIB) $(LIBOBJ) |
| 90 | sh $(TOP)/util/ranlib.sh $(LIB) | 96 | $(RANLIB) $(LIB) || echo Never mind. |
| 91 | @touch lib | 97 | @touch lib |
| 92 | 98 | ||
| 99 | shared: | ||
| 100 | if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 101 | (cd ..; make $(SHARED_LIB)); \ | ||
| 102 | fi | ||
| 103 | |||
| 93 | libs: | 104 | libs: |
| 94 | @for i in $(SDIRS) ;\ | 105 | @for i in $(SDIRS) ;\ |
| 95 | do \ | 106 | do \ |
| 96 | (cd $$i; echo "making libs in $$i..."; \ | 107 | (cd $$i && echo "making libs in crypto/$$i..." && \ |
| 97 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ | 108 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ |
| 98 | done; | 109 | done; |
| 99 | 110 | ||
| 100 | tests: | 111 | tests: |
| 101 | @for i in $(SDIRS) ;\ | 112 | @for i in $(SDIRS) ;\ |
| 102 | do \ | 113 | do \ |
| 103 | (cd $$i; echo "making tests in $$i..."; \ | 114 | (cd $$i && echo "making tests in crypto/$$i..." && \ |
| 104 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ | 115 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ |
| 105 | done; | 116 | done; |
| 106 | 117 | ||
| 107 | install: | 118 | install: |
| 108 | @for i in $(EXHEADER) ;\ | 119 | @for i in $(EXHEADER) ;\ |
| 109 | do \ | 120 | do \ |
| 110 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 111 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 112 | done; | 123 | done; |
| 113 | @for i in $(SDIRS) ;\ | 124 | @for i in $(SDIRS) ;\ |
| 114 | do \ | 125 | do \ |
| 115 | (cd $$i; echo "making install in $$i..."; \ | 126 | (cd $$i && echo "making install in crypto/$$i..." && \ |
| 116 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ | 127 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ |
| 117 | done; | 128 | done; |
| 118 | 129 | ||
| 119 | lint: | 130 | lint: |
| 120 | @for i in $(SDIRS) ;\ | 131 | @for i in $(SDIRS) ;\ |
| 121 | do \ | 132 | do \ |
| 122 | (cd $$i; echo "making lint in $$i..."; \ | 133 | (cd $$i && echo "making lint in crypto/$$i..." && \ |
| 123 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ | 134 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ |
| 124 | done; | 135 | done; |
| 125 | 136 | ||
| 126 | depend: | 137 | depend: |
| 127 | $(MAKEDEPEND) $(INCLUDE) $(PROGS) $(LIBSRC) | 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
| 139 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | ||
| 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | ||
| 128 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
| 129 | do \ | 142 | do \ |
| 130 | (cd $$i; echo "making depend in $$i..."; \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
| 131 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' MAKEDEPEND='${MAKEDEPEND}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ |
| 132 | done; | 145 | done; |
| 133 | 146 | ||
| 134 | clean: | 147 | clean: |
| 135 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 148 | rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 136 | @for i in $(SDIRS) ;\ | 149 | @for i in $(SDIRS) ;\ |
| 137 | do \ | 150 | do \ |
| 138 | (cd $$i; echo "making clean in $$i..."; \ | 151 | (cd $$i && echo "making clean in crypto/$$i..." && \ |
| 139 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ | 152 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ |
| 140 | done; | 153 | done; |
| 141 | 154 | ||
| 142 | dclean: | 155 | dclean: |
| 143 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 156 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 144 | mv -f Makefile.new $(MAKEFILE) | 157 | mv -f Makefile.new $(MAKEFILE) |
| 145 | @for i in $(SDIRS) ;\ | 158 | @for i in $(SDIRS) ;\ |
| 146 | do \ | 159 | do \ |
| 147 | (cd $$i; echo "making dclean in $$i..."; \ | 160 | (cd $$i && echo "making dclean in crypto/$$i..." && \ |
| 148 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ | 161 | $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ |
| 149 | done; | ||
| 150 | |||
| 151 | errors: | ||
| 152 | perl ./err/err_code.pl -conf err/ssleay.ec *.c */*.c ../ssl/*.c ../rsaref/*.c | ||
| 153 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 154 | perl err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 155 | @for i in $(SDIRS) ;\ | ||
| 156 | do \ | ||
| 157 | (cd $$i; echo "making errors in $$i..."; \ | ||
| 158 | $(MAKE) errors ); \ | ||
| 159 | done; | 162 | done; |
| 160 | 163 | ||
| 161 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 164 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 165 | |||
| 166 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 167 | cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 168 | cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 169 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | ||
| 170 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c | ||
| 171 | cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 172 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 173 | cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 174 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 175 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 176 | cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h | ||
| 177 | cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 178 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 179 | cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | ||
| 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c | ||
| 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 187 | ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 188 | ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 189 | ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c | ||
| 190 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 191 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 192 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 193 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 194 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 195 | mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c | ||
| 196 | mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 197 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 198 | mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 199 | mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 200 | mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 201 | mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c | ||
| 202 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c | ||
| 203 | o_time.o: o_time.h | ||
| 204 | tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 205 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 206 | tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 207 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 208 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 209 | tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h | ||
| 210 | tmdiff.o: tmdiff.c | ||
| 211 | uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 212 | uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 213 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 214 | uid.o: ../include/openssl/symhacks.h uid.c | ||
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl index 30751bd156..09d4cb4896 100644 --- a/src/lib/libcrypto/asn1/Makefile.ssl +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
| @@ -5,57 +5,52 @@ | |||
| 5 | DIR= asn1 | 5 | DIR= asn1 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=asn1 | ||
| 19 | ERRC=asn1_err | ||
| 20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ | 26 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ |
| 26 | a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | 27 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ |
| 27 | a_sign.c a_digest.c a_verify.c \ | 28 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ |
| 28 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ | 29 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ |
| 29 | x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ | 30 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ |
| 30 | d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \ | ||
| 31 | d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \ | ||
| 32 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | 31 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ |
| 33 | t_req.c t_x509.c t_pkey.c \ | 32 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ |
| 34 | p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ | 33 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ |
| 35 | p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ | 34 | f_int.c f_string.c n_pkey.c \ |
| 36 | f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ | 35 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ |
| 37 | a_hdr.c x_pkey.c a_bool.c x_exten.c \ | 36 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ |
| 38 | asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ | 37 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
| 39 | evp_asn1.c | 38 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
| 40 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ | 39 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
| 41 | a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | 40 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ |
| 42 | a_sign.o a_digest.o a_verify.o \ | 41 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ |
| 43 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ | 42 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ |
| 44 | x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \ | ||
| 45 | d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \ | ||
| 46 | d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \ | ||
| 47 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | 43 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ |
| 48 | t_req.o t_x509.o t_pkey.o \ | 44 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ |
| 49 | p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ | 45 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
| 50 | p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ | 46 | f_int.o f_string.o n_pkey.o \ |
| 51 | f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ | 47 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ |
| 52 | a_hdr.o x_pkey.o a_bool.o x_exten.o \ | 48 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ |
| 53 | asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ | 49 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o |
| 54 | evp_asn1.o | ||
| 55 | 50 | ||
| 56 | SRC= $(LIBSRC) | 51 | SRC= $(LIBSRC) |
| 57 | 52 | ||
| 58 | EXHEADER= asn1.h asn1_mac.h | 53 | EXHEADER= asn1.h asn1_mac.h asn1t.h |
| 59 | HEADER= $(EXHEADER) | 54 | HEADER= $(EXHEADER) |
| 60 | 55 | ||
| 61 | ALL= $(GENERAL) $(SRC) $(HEADER) | 56 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -75,24 +70,23 @@ all: lib | |||
| 75 | 70 | ||
| 76 | lib: $(LIBOBJ) | 71 | lib: $(LIBOBJ) |
| 77 | $(AR) $(LIB) $(LIBOBJ) | 72 | $(AR) $(LIB) $(LIBOBJ) |
| 78 | sh $(TOP)/util/ranlib.sh $(LIB) | 73 | $(RANLIB) $(LIB) || echo Never mind. |
| 79 | @touch lib | 74 | @touch lib |
| 80 | 75 | ||
| 81 | files: | 76 | files: |
| 82 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 77 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 83 | 78 | ||
| 84 | links: | 79 | links: |
| 85 | /bin/rm -f Makefile | 80 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 86 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 87 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 88 | $(TOP)/util/mklink.sh ../../test $(TEST) | 83 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 89 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 90 | 84 | ||
| 91 | install: | 85 | install: |
| 92 | @for i in $(EXHEADER) ; \ | 86 | @for i in $(EXHEADER) ; \ |
| 93 | do \ | 87 | do \ |
| 94 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 88 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 95 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 89 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 96 | done; | 90 | done; |
| 97 | 91 | ||
| 98 | tags: | 92 | tags: |
| @@ -104,17 +98,789 @@ lint: | |||
| 104 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 105 | 99 | ||
| 106 | depend: | 100 | depend: |
| 107 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 101 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 108 | 102 | ||
| 109 | dclean: | 103 | dclean: |
| 110 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 111 | mv -f Makefile.new $(MAKEFILE) | 105 | mv -f Makefile.new $(MAKEFILE) |
| 112 | 106 | ||
| 113 | clean: | 107 | clean: |
| 114 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 108 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 115 | 109 | ||
| 116 | errors: | ||
| 117 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 118 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 119 | 110 | ||
| 120 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 112 | |||
| 113 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 118 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 119 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 120 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 121 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 122 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 123 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 124 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 125 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 126 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 127 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 128 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | a_bool.o: ../cryptlib.h a_bool.c | ||
| 130 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 131 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 132 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 133 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 134 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 135 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 137 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
| 138 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 140 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 141 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 142 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 143 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
| 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 147 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 148 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 149 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 151 | a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 152 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 153 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 154 | a_digest.o: ../../include/openssl/opensslconf.h | ||
| 155 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 157 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 158 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 159 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 160 | a_digest.o: ../cryptlib.h a_digest.c | ||
| 161 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 162 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 163 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 164 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 165 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 166 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 167 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 168 | a_dup.o: ../cryptlib.h a_dup.c | ||
| 169 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 170 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 171 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 172 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 173 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 174 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 175 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 176 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 177 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 178 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 179 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 180 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 181 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 182 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 184 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
| 185 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 186 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 187 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 188 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 189 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 190 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 191 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 192 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 193 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
| 194 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 195 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 196 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 197 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 198 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 199 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 200 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 201 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 202 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 203 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 204 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 205 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 206 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 207 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 208 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 209 | a_int.o: ../cryptlib.h a_int.c | ||
| 210 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 211 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 212 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 213 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 214 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 215 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 216 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 217 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
| 218 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 219 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 220 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 221 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 222 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 223 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 224 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 225 | a_meth.o: ../cryptlib.h a_meth.c | ||
| 226 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 227 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 228 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 229 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 230 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 231 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 232 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 233 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 234 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 235 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 236 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 237 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 238 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 239 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 240 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 241 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
| 243 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 244 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 245 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 246 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 247 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 248 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 249 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 250 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
| 251 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 252 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 253 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 254 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 255 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 256 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 257 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 258 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 259 | a_set.o: ../cryptlib.h a_set.c | ||
| 260 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 261 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 262 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 263 | a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 264 | a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 265 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 266 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 267 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 268 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 269 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 270 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 271 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 272 | a_sign.o: ../cryptlib.h a_sign.c | ||
| 273 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 274 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 275 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 276 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 277 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 278 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 279 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 280 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 281 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 282 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 283 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 284 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h | ||
| 285 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 286 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 287 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 288 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 289 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 290 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 291 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 292 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 293 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 294 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 295 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 296 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 297 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 298 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 299 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 300 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 301 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 302 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
| 303 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 304 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 305 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 306 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 307 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 308 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 309 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 310 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 311 | a_type.o: ../cryptlib.h a_type.c | ||
| 312 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 313 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 314 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 315 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 316 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 317 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 318 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 319 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
| 320 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 321 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 322 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 323 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 324 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 325 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 326 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 327 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
| 328 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 329 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 330 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 331 | a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 332 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 333 | a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 334 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 335 | a_verify.o: ../../include/openssl/opensslconf.h | ||
| 336 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 337 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 338 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 339 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 340 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 341 | a_verify.o: ../cryptlib.h a_verify.c | ||
| 342 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 343 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 344 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 345 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 346 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 347 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 348 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 350 | asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 357 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 358 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 359 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 360 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 361 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 362 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 366 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 367 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 368 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 369 | asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 370 | asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 371 | asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 372 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 373 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 374 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
| 375 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 376 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 377 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 378 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 379 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 380 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
| 381 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 382 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 383 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 384 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 385 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 386 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 387 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 388 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
| 389 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 390 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 391 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 392 | d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 393 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 394 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 395 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 396 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 397 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 398 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 399 | d2i_pr.o: ../cryptlib.h d2i_pr.c | ||
| 400 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 401 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 402 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 403 | d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 404 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 405 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 406 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 407 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 408 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 409 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 410 | d2i_pu.o: ../cryptlib.h d2i_pu.c | ||
| 411 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 412 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 413 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 414 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 415 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 416 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
| 417 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 418 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 419 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 420 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 421 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 422 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 423 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 424 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 425 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 426 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 427 | f_enum.o: ../cryptlib.h f_enum.c | ||
| 428 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 429 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 430 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 431 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 432 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 433 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 434 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 435 | f_int.o: ../cryptlib.h f_int.c | ||
| 436 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 437 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 438 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 439 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 440 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 441 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 442 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 443 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 444 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 445 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 446 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 447 | i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 448 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 449 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 450 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 451 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 452 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 453 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 454 | i2d_pr.o: ../cryptlib.h i2d_pr.c | ||
| 455 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 456 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 457 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 458 | i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 459 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 460 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 461 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 462 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 463 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 464 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 465 | i2d_pu.o: ../cryptlib.h i2d_pu.c | ||
| 466 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 467 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 468 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 469 | n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 470 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 471 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 472 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 473 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 474 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 475 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 476 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 477 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 478 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 479 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | ||
| 480 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 481 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 482 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 483 | nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 484 | nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 485 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 486 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 487 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 488 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 489 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 490 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 491 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
| 492 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 493 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 494 | p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 495 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 496 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 497 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 498 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 499 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 500 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 501 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 502 | p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 503 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 504 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 505 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | ||
| 506 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 507 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 508 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 509 | p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 510 | p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 511 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 512 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 513 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 514 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 515 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 516 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 517 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 518 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 519 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
| 520 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 521 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 522 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 523 | p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 524 | p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 525 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 526 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 527 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 528 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 529 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 530 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 531 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 532 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 533 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
| 534 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 535 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 536 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 537 | t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 538 | t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 539 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 540 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 541 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 542 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 543 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 544 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 545 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 546 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 547 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
| 548 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 549 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 550 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 551 | t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 552 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 553 | t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 554 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 555 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 556 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 557 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 558 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 559 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 560 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 561 | t_crl.o: ../cryptlib.h t_crl.c | ||
| 562 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 563 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 564 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 565 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 566 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 567 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 568 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 569 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 570 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
| 571 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 572 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 573 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 574 | t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 575 | t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 576 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 577 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 578 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 579 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 580 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 581 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 582 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 583 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 584 | t_req.o: ../cryptlib.h t_req.c | ||
| 585 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 586 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 587 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 588 | t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 589 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 590 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 591 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 592 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 593 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 594 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 595 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 596 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 597 | t_spki.o: ../cryptlib.h t_spki.c | ||
| 598 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 599 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 600 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 601 | t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 602 | t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 603 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 604 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 605 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 606 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 607 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 608 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 609 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 610 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 611 | t_x509.o: ../cryptlib.h t_x509.c | ||
| 612 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 613 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 614 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 615 | t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 616 | t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 617 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 618 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 619 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 620 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 621 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 622 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 623 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 624 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
| 625 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 626 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 627 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 628 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 629 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 630 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 631 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 632 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 633 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 634 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 635 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 636 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 637 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 638 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
| 639 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 640 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 641 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
| 642 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 643 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 644 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 645 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 646 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
| 647 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 648 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 649 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 650 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 651 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 652 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 653 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 654 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 655 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
| 656 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 657 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 658 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 659 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 660 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 661 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 662 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
| 663 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 664 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 665 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 666 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 667 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 668 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 669 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 670 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 671 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
| 672 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 673 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 674 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 675 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 676 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 677 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 678 | x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 679 | x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 680 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 681 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 682 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 683 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 684 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 685 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 686 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 687 | x_algor.o: x_algor.c | ||
| 688 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 689 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 690 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 691 | x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 692 | x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 693 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 694 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 695 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 696 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 697 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 698 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 699 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 700 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 701 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
| 702 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 703 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 704 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 705 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 706 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 707 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 708 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 709 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 710 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 711 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 712 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 713 | x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 714 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 715 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 716 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 717 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 718 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 719 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 720 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 721 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 722 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 723 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 724 | x_crl.o: ../cryptlib.h x_crl.c | ||
| 725 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 726 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 727 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 728 | x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 729 | x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 730 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 731 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 732 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 733 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 734 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 735 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 736 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 737 | x_exten.o: x_exten.c | ||
| 738 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 739 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 740 | x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 741 | x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 742 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 743 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 744 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 745 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 746 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 747 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 748 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 749 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 750 | x_info.o: ../cryptlib.h x_info.c | ||
| 751 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 752 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 753 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 754 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 755 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 756 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 757 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 758 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 759 | x_long.o: ../cryptlib.h x_long.c | ||
| 760 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 761 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 762 | x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 763 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 764 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 765 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 766 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 767 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 768 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 769 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 770 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 771 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 772 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 773 | x_name.o: ../cryptlib.h x_name.c | ||
| 774 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 775 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 776 | x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 777 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 778 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 779 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 780 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 781 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 782 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 783 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 784 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 785 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 786 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 787 | x_pkey.o: ../cryptlib.h x_pkey.c | ||
| 788 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 789 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 790 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 791 | x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 792 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 793 | x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 794 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 795 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 796 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 797 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 798 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 799 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 800 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 801 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
| 802 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 803 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 804 | x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 805 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 806 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 807 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 808 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 809 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 810 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 811 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 812 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 813 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 814 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 815 | x_req.o: ../cryptlib.h x_req.c | ||
| 816 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 817 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 818 | x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 819 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 820 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 821 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 822 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 823 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 824 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 825 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 826 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 827 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 828 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 829 | x_sig.o: ../cryptlib.h x_sig.c | ||
| 830 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 831 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 832 | x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 833 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 834 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 835 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 836 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 837 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 838 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 839 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 840 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 841 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 842 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 843 | x_spki.o: ../cryptlib.h x_spki.c | ||
| 844 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 845 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 846 | x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 847 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 848 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 849 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 850 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 851 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 852 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 853 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 854 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 855 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 856 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 857 | x_val.o: ../cryptlib.h x_val.c | ||
| 858 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 859 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 860 | x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 861 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 862 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 863 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 864 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 865 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 866 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 867 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 868 | x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 869 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 870 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 871 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 872 | x_x509.o: ../cryptlib.h x_x509.c | ||
| 873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 875 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 876 | x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 877 | x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 883 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 884 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 885 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 886 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c index 2ab3a262ac..82bccdfd51 100644 --- a/src/lib/libcrypto/asn1/f.c +++ b/src/lib/libcrypto/asn1/f.c | |||
| @@ -56,8 +56,8 @@ | |||
| 56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
| 57 | */ | 57 | */ |
| 58 | #include <stdio.h> | 58 | #include <stdio.h> |
| 59 | #include "asn1.h" | 59 | #include <openssl/asn1.h> |
| 60 | #include "err.h" | 60 | #include <openssl/err.h> |
| 61 | 61 | ||
| 62 | main() | 62 | main() |
| 63 | { | 63 | { |
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c index 4fc2cc9f6e..339a110eef 100644 --- a/src/lib/libcrypto/asn1/x_cinf.c +++ b/src/lib/libcrypto/asn1/x_cinf.c | |||
| @@ -58,16 +58,10 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
| 61 | #include "asn1_mac.h" | 61 | #include <openssl/asn1_mac.h> |
| 62 | #include <openssl/x509.h> | ||
| 62 | 63 | ||
| 63 | /* | 64 | int i2d_X509_CINF(X509_CINF *a, unsigned char **pp) |
| 64 | * ASN1err(ASN1_F_D2I_X509_CINF,ASN1_R_LENGTH_MISMATCH); | ||
| 65 | * ASN1err(ASN1_F_X509_CINF_NEW,ASN1_R_LENGTH_MISMATCH); | ||
| 66 | */ | ||
| 67 | |||
| 68 | int i2d_X509_CINF(a,pp) | ||
| 69 | X509_CINF *a; | ||
| 70 | unsigned char **pp; | ||
| 71 | { | 65 | { |
| 72 | int v1=0,v2=0; | 66 | int v1=0,v2=0; |
| 73 | M_ASN1_I2D_vars(a); | 67 | M_ASN1_I2D_vars(a); |
| @@ -81,7 +75,9 @@ unsigned char **pp; | |||
| 81 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); | 75 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); |
| 82 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); | 76 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); |
| 83 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); | 77 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); |
| 84 | M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 78 | M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
| 79 | i2d_X509_EXTENSION,3, | ||
| 80 | V_ASN1_SEQUENCE,v2); | ||
| 85 | 81 | ||
| 86 | M_ASN1_I2D_seq_total(); | 82 | M_ASN1_I2D_seq_total(); |
| 87 | 83 | ||
| @@ -94,15 +90,14 @@ unsigned char **pp; | |||
| 94 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); | 90 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); |
| 95 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); | 91 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); |
| 96 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); | 92 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); |
| 97 | M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 93 | M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
| 94 | i2d_X509_EXTENSION,3, | ||
| 95 | V_ASN1_SEQUENCE,v2); | ||
| 98 | 96 | ||
| 99 | M_ASN1_I2D_finish(); | 97 | M_ASN1_I2D_finish(); |
| 100 | } | 98 | } |
| 101 | 99 | ||
| 102 | X509_CINF *d2i_X509_CINF(a,pp,length) | 100 | X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length) |
| 103 | X509_CINF **a; | ||
| 104 | unsigned char **pp; | ||
| 105 | long length; | ||
| 106 | { | 101 | { |
| 107 | int ver=0; | 102 | int ver=0; |
| 108 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); | 103 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); |
| @@ -120,7 +115,7 @@ long length; | |||
| 120 | { | 115 | { |
| 121 | if (ret->version != NULL) | 116 | if (ret->version != NULL) |
| 122 | { | 117 | { |
| 123 | ASN1_INTEGER_free(ret->version); | 118 | M_ASN1_INTEGER_free(ret->version); |
| 124 | ret->version=NULL; | 119 | ret->version=NULL; |
| 125 | } | 120 | } |
| 126 | } | 121 | } |
| @@ -134,38 +129,48 @@ long length; | |||
| 134 | { | 129 | { |
| 135 | if (ret->issuerUID != NULL) | 130 | if (ret->issuerUID != NULL) |
| 136 | { | 131 | { |
| 137 | ASN1_BIT_STRING_free(ret->issuerUID); | 132 | M_ASN1_BIT_STRING_free(ret->issuerUID); |
| 138 | ret->issuerUID=NULL; | 133 | ret->issuerUID=NULL; |
| 139 | } | 134 | } |
| 140 | if (ret->subjectUID != NULL) | 135 | if (ret->subjectUID != NULL) |
| 141 | { | 136 | { |
| 142 | ASN1_BIT_STRING_free(ret->subjectUID); | 137 | M_ASN1_BIT_STRING_free(ret->subjectUID); |
| 143 | ret->issuerUID=NULL; | 138 | ret->subjectUID=NULL; |
| 144 | } | 139 | } |
| 145 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, | 140 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, |
| 146 | V_ASN1_BIT_STRING); | 141 | V_ASN1_BIT_STRING); |
| 147 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, | 142 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, |
| 148 | V_ASN1_BIT_STRING); | 143 | V_ASN1_BIT_STRING); |
| 149 | } | 144 | } |
| 145 | /* Note: some broken certificates include extensions but don't set | ||
| 146 | * the version number properly. By bypassing this check they can | ||
| 147 | * be parsed. | ||
| 148 | */ | ||
| 149 | |||
| 150 | #ifdef VERSION_EXT_CHECK | ||
| 150 | if (ver >= 2) /* version 3 extensions */ | 151 | if (ver >= 2) /* version 3 extensions */ |
| 152 | #endif | ||
| 151 | { | 153 | { |
| 152 | if (ret->extensions != NULL) | 154 | if (ret->extensions != NULL) |
| 153 | while (sk_num(ret->extensions)) | 155 | while (sk_X509_EXTENSION_num(ret->extensions)) |
| 154 | X509_EXTENSION_free((X509_EXTENSION *) | 156 | X509_EXTENSION_free( |
| 155 | sk_pop(ret->extensions)); | 157 | sk_X509_EXTENSION_pop(ret->extensions)); |
| 156 | M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,3, | 158 | M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions, |
| 157 | V_ASN1_SEQUENCE); | 159 | d2i_X509_EXTENSION, |
| 160 | X509_EXTENSION_free,3, | ||
| 161 | V_ASN1_SEQUENCE); | ||
| 158 | } | 162 | } |
| 159 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); | 163 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); |
| 160 | } | 164 | } |
| 161 | 165 | ||
| 162 | X509_CINF *X509_CINF_new() | 166 | X509_CINF *X509_CINF_new(void) |
| 163 | { | 167 | { |
| 164 | X509_CINF *ret=NULL; | 168 | X509_CINF *ret=NULL; |
| 169 | ASN1_CTX c; | ||
| 165 | 170 | ||
| 166 | M_ASN1_New_Malloc(ret,X509_CINF); | 171 | M_ASN1_New_Malloc(ret,X509_CINF); |
| 167 | ret->version=NULL; | 172 | ret->version=NULL; |
| 168 | M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new); | 173 | M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new); |
| 169 | M_ASN1_New(ret->signature,X509_ALGOR_new); | 174 | M_ASN1_New(ret->signature,X509_ALGOR_new); |
| 170 | M_ASN1_New(ret->issuer,X509_NAME_new); | 175 | M_ASN1_New(ret->issuer,X509_NAME_new); |
| 171 | M_ASN1_New(ret->validity,X509_VAL_new); | 176 | M_ASN1_New(ret->validity,X509_VAL_new); |
| @@ -178,20 +183,19 @@ X509_CINF *X509_CINF_new() | |||
| 178 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); | 183 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); |
| 179 | } | 184 | } |
| 180 | 185 | ||
| 181 | void X509_CINF_free(a) | 186 | void X509_CINF_free(X509_CINF *a) |
| 182 | X509_CINF *a; | ||
| 183 | { | 187 | { |
| 184 | if (a == NULL) return; | 188 | if (a == NULL) return; |
| 185 | ASN1_INTEGER_free(a->version); | 189 | M_ASN1_INTEGER_free(a->version); |
| 186 | ASN1_INTEGER_free(a->serialNumber); | 190 | M_ASN1_INTEGER_free(a->serialNumber); |
| 187 | X509_ALGOR_free(a->signature); | 191 | X509_ALGOR_free(a->signature); |
| 188 | X509_NAME_free(a->issuer); | 192 | X509_NAME_free(a->issuer); |
| 189 | X509_VAL_free(a->validity); | 193 | X509_VAL_free(a->validity); |
| 190 | X509_NAME_free(a->subject); | 194 | X509_NAME_free(a->subject); |
| 191 | X509_PUBKEY_free(a->key); | 195 | X509_PUBKEY_free(a->key); |
| 192 | ASN1_BIT_STRING_free(a->issuerUID); | 196 | M_ASN1_BIT_STRING_free(a->issuerUID); |
| 193 | ASN1_BIT_STRING_free(a->subjectUID); | 197 | M_ASN1_BIT_STRING_free(a->subjectUID); |
| 194 | sk_pop_free(a->extensions,X509_EXTENSION_free); | 198 | sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free); |
| 195 | Free((char *)a); | 199 | OPENSSL_free(a); |
| 196 | } | 200 | } |
| 197 | 201 | ||
diff --git a/src/lib/libcrypto/bf/Makefile.ssl b/src/lib/libcrypto/bf/Makefile.ssl index 236671f238..1b1cb8842f 100644 --- a/src/lib/libcrypto/bf/Makefile.ssl +++ b/src/lib/libcrypto/bf/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -42,12 +45,12 @@ all: lib | |||
| 42 | 45 | ||
| 43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 49 | @touch lib |
| 47 | 50 | ||
| 48 | # elf | 51 | # elf |
| 49 | asm/bx86-elf.o: asm/bx86unix.cpp | 52 | asm/bx86-elf.o: asm/bx86unix.cpp |
| 50 | $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o | 53 | $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o |
| 51 | 54 | ||
| 52 | # solaris | 55 | # solaris |
| 53 | asm/bx86-sol.o: asm/bx86unix.cpp | 56 | asm/bx86-sol.o: asm/bx86unix.cpp |
| @@ -61,27 +64,27 @@ asm/bx86-out.o: asm/bx86unix.cpp | |||
| 61 | 64 | ||
| 62 | # bsdi | 65 | # bsdi |
| 63 | asm/bx86bsdi.o: asm/bx86unix.cpp | 66 | asm/bx86bsdi.o: asm/bx86unix.cpp |
| 64 | $(CPP) -DBSDI asm/bx86unix.cpp | as -o asm/bx86bsdi.o | 67 | $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o |
| 65 | 68 | ||
| 66 | asm/bx86unix.cpp: | 69 | asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 67 | (cd asm; perl bf-586.pl cpp >bx86unix.cpp) | 70 | (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp) |
| 68 | 71 | ||
| 69 | files: | 72 | files: |
| 70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 71 | 74 | ||
| 72 | links: | 75 | links: |
| 73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 75 | $(TOP)/util/point.sh ../../doc/blowfish.doc blowfish.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 77 | $(TOP)/util/mklink.sh ../../test $(TEST) | 80 | |
| 78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 81 | install: installs |
| 79 | 82 | ||
| 80 | install: | 83 | installs: |
| 81 | @for i in $(EXHEADER) ; \ | 84 | @for i in $(EXHEADER) ; \ |
| 82 | do \ | 85 | do \ |
| 83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 87 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 85 | done; | 88 | done; |
| 86 | 89 | ||
| 87 | tags: | 90 | tags: |
| @@ -93,15 +96,25 @@ lint: | |||
| 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 94 | 97 | ||
| 95 | depend: | 98 | depend: |
| 96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 97 | 100 | ||
| 98 | dclean: | 101 | dclean: |
| 99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 100 | mv -f Makefile.new $(MAKEFILE) | 103 | mv -f Makefile.new $(MAKEFILE) |
| 101 | 104 | ||
| 102 | clean: | 105 | clean: |
| 103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 106 | rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 104 | |||
| 105 | errors: | ||
| 106 | 107 | ||
| 107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 109 | |||
| 110 | bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 111 | bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h | ||
| 112 | bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 113 | bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 114 | bf_ecb.o: bf_ecb.c bf_locl.h | ||
| 115 | bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 116 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | ||
| 117 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 118 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | ||
| 119 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 120 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/bio/Makefile.ssl b/src/lib/libcrypto/bio/Makefile.ssl index 42e11e1c94..103a051c03 100644 --- a/src/lib/libcrypto/bio/Makefile.ssl +++ b/src/lib/libcrypto/bio/Makefile.ssl | |||
| @@ -5,38 +5,41 @@ | |||
| 5 | DIR= bio | 5 | DIR= bio |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=bio | ||
| 19 | ERRC=bio_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= bio_lib.c bio_cb.c $(ERRC).c \ | 26 | LIBSRC= bio_lib.c bio_cb.c bio_err.c \ |
| 26 | bss_mem.c bss_null.c bss_fd.c \ | 27 | bss_mem.c bss_null.c bss_fd.c \ |
| 27 | bss_file.c bss_sock.c bss_conn.c \ | 28 | bss_file.c bss_sock.c bss_conn.c \ |
| 28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | 29 | bf_null.c bf_buff.c b_print.c b_dump.c \ |
| 29 | b_sock.c bss_acpt.c bf_nbio.c | 30 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c |
| 30 | LIBOBJ= bio_lib.o bio_cb.o $(ERRC).o \ | 31 | # bf_lbuf.c |
| 32 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | ||
| 31 | bss_mem.o bss_null.o bss_fd.o \ | 33 | bss_mem.o bss_null.o bss_fd.o \ |
| 32 | bss_file.o bss_sock.o bss_conn.o \ | 34 | bss_file.o bss_sock.o bss_conn.o \ |
| 33 | bf_null.o bf_buff.o b_print.o b_dump.o \ | 35 | bf_null.o bf_buff.o b_print.o b_dump.o \ |
| 34 | b_sock.o bss_acpt.o bf_nbio.o | 36 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o |
| 37 | # bf_lbuf.o | ||
| 35 | 38 | ||
| 36 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 37 | 40 | ||
| 38 | EXHEADER= bio.h bss_file.c | 41 | EXHEADER= bio.h |
| 39 | HEADER= $(EXHEADER) | 42 | HEADER= bss_file.c $(EXHEADER) |
| 40 | 43 | ||
| 41 | ALL= $(GENERAL) $(SRC) $(HEADER) | 44 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 42 | 45 | ||
| @@ -47,24 +50,23 @@ all: lib | |||
| 47 | 50 | ||
| 48 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
| 49 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
| 50 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
| 51 | @touch lib | 54 | @touch lib |
| 52 | 55 | ||
| 53 | files: | 56 | files: |
| 54 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 55 | 58 | ||
| 56 | links: | 59 | links: |
| 57 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 58 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 59 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 60 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 61 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 62 | 64 | ||
| 63 | install: | 65 | install: |
| 64 | @for i in $(EXHEADER) bss_file.c ; \ | 66 | @for i in $(EXHEADER); \ |
| 65 | do \ | 67 | do \ |
| 66 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 67 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 68 | done; | 70 | done; |
| 69 | 71 | ||
| 70 | tags: | 72 | tags: |
| @@ -76,17 +78,139 @@ lint: | |||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 77 | 79 | ||
| 78 | depend: | 80 | depend: |
| 79 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 80 | 82 | ||
| 81 | dclean: | 83 | dclean: |
| 82 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 83 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
| 84 | 86 | ||
| 85 | clean: | 87 | clean: |
| 86 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 87 | |||
| 88 | errors: | ||
| 89 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 90 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 91 | 89 | ||
| 92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | |||
| 92 | b_dump.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 93 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 94 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 95 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 96 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 97 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 98 | b_dump.o: ../cryptlib.h b_dump.c | ||
| 99 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 100 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 101 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 102 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 103 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 104 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 105 | b_print.o: ../cryptlib.h b_print.c | ||
| 106 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 107 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 110 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 111 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | b_sock.o: ../cryptlib.h b_sock.c | ||
| 113 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 114 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 115 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 116 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 117 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 118 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 119 | bf_buff.o: ../cryptlib.h bf_buff.c | ||
| 120 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 121 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 122 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 123 | bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 124 | bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 126 | bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 127 | bf_nbio.o: ../cryptlib.h bf_nbio.c | ||
| 128 | bf_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 129 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 130 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 131 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 132 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 133 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 134 | bf_null.o: ../cryptlib.h bf_null.c | ||
| 135 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 136 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 137 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 138 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 139 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 140 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 141 | bio_cb.o: ../cryptlib.h bio_cb.c | ||
| 142 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 143 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 144 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 145 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 146 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 147 | bio_err.o: bio_err.c | ||
| 148 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 149 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 151 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 152 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 153 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 154 | bio_lib.o: ../cryptlib.h bio_lib.c | ||
| 155 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 156 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 157 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 158 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 159 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 160 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 161 | bss_acpt.o: ../cryptlib.h bss_acpt.c | ||
| 162 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 163 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 164 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 165 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 166 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 167 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | ||
| 168 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 169 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 170 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 171 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 172 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 173 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 174 | bss_conn.o: ../cryptlib.h bss_conn.c | ||
| 175 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 176 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 177 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 178 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 179 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 180 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 181 | bss_fd.o: ../cryptlib.h bss_fd.c | ||
| 182 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 183 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 184 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 185 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 186 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 187 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | bss_file.o: ../cryptlib.h bss_file.c | ||
| 189 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 190 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 191 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 192 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 193 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 194 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 195 | bss_log.o: ../cryptlib.h bss_log.c | ||
| 196 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 197 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 198 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 199 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 200 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 201 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 202 | bss_mem.o: ../cryptlib.h bss_mem.c | ||
| 203 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 204 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 205 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 206 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 207 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 208 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 209 | bss_null.o: ../cryptlib.h bss_null.c | ||
| 210 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 211 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 212 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 213 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 214 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 215 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 216 | bss_sock.o: ../cryptlib.h bss_sock.c | ||
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl index 9809d26cbc..605cb17577 100644 --- a/src/lib/libcrypto/bn/Makefile.ssl +++ b/src/lib/libcrypto/bn/Makefile.ssl | |||
| @@ -5,37 +5,46 @@ | |||
| 5 | DIR= bn | 5 | DIR= bn |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| 16 | BN_MULW= bn_mulw.o | 20 | BN_ASM= bn_asm.o |
| 17 | # or use | 21 | # or use |
| 18 | #BN_MULW= bn86-elf.o | 22 | #BN_ASM= bn86-elf.o |
| 19 | 23 | ||
| 20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 21 | 25 | ||
| 22 | ERR=bn | 26 | # We let the C compiler driver to take care of .s files. This is done in |
| 23 | ERRC=bn_err | 27 | # order to be excused from maintaining a separate set of architecture |
| 28 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
| 29 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
| 30 | # and pass it down to assembler. | ||
| 31 | AS=$(CC) -c | ||
| 32 | ASFLAGS=$(CFLAGS) | ||
| 33 | |||
| 24 | GENERAL=Makefile | 34 | GENERAL=Makefile |
| 25 | TEST=bntest.c exptest.c | 35 | TEST=bntest.c exptest.c |
| 26 | APPS= | 36 | APPS= |
| 27 | 37 | ||
| 28 | LIB=$(TOP)/libcrypto.a | 38 | LIB=$(TOP)/libcrypto.a |
| 29 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c bn_mul.c \ | 39 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ |
| 30 | bn_print.c bn_rand.c bn_shift.c bn_sub.c bn_word.c bn_blind.c \ | 40 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
| 31 | bn_gcd.c bn_prime.c $(ERRC).c bn_sqr.c bn_mulw.c bn_recp.c bn_mont.c \ | 41 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ |
| 32 | bn_mpi.c | 42 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c |
| 33 | |||
| 34 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mod.o bn_mul.o \ | ||
| 35 | bn_print.o bn_rand.o bn_shift.o bn_sub.o bn_word.o bn_blind.o \ | ||
| 36 | bn_gcd.o bn_prime.o $(ERRC).o bn_sqr.o $(BN_MULW) bn_recp.o bn_mont.o \ | ||
| 37 | bn_mpi.o | ||
| 38 | 43 | ||
| 44 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
| 45 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
| 46 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
| 47 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o | ||
| 39 | 48 | ||
| 40 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
| 41 | 50 | ||
| @@ -49,21 +58,26 @@ top: | |||
| 49 | 58 | ||
| 50 | all: lib | 59 | all: lib |
| 51 | 60 | ||
| 52 | knuth: bn_knuth.c | 61 | bn_prime.h: bn_prime.pl |
| 53 | cc -pg -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 62 | $(PERL) bn_prime.pl >bn_prime.h |
| 54 | 63 | ||
| 55 | knuth.fast: bn_knuth.c | 64 | divtest: divtest.c ../../libcrypto.a |
| 56 | cc -pg -fast -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 65 | cc -I../../include divtest.c -o divtest ../../libcrypto.a |
| 57 | 66 | ||
| 67 | bnbug: bnbug.c ../../libcrypto.a top | ||
| 68 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
| 58 | 69 | ||
| 59 | lib: $(LIBOBJ) | 70 | lib: $(LIBOBJ) |
| 60 | $(AR) $(LIB) $(LIBOBJ) | 71 | $(AR) $(LIB) $(LIBOBJ) |
| 61 | sh $(TOP)/util/ranlib.sh $(LIB) | 72 | $(RANLIB) $(LIB) || echo Never mind. |
| 62 | @touch lib | 73 | @touch lib |
| 63 | 74 | ||
| 64 | # elf | 75 | # elf |
| 65 | asm/bn86-elf.o: asm/bn86unix.cpp | 76 | asm/bn86-elf.o: asm/bn86unix.cpp |
| 66 | $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o | 77 | $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o |
| 78 | |||
| 79 | asm/co86-elf.o: asm/co86unix.cpp | ||
| 80 | $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o | ||
| 67 | 81 | ||
| 68 | # solaris | 82 | # solaris |
| 69 | asm/bn86-sol.o: asm/bn86unix.cpp | 83 | asm/bn86-sol.o: asm/bn86unix.cpp |
| @@ -71,40 +85,79 @@ asm/bn86-sol.o: asm/bn86unix.cpp | |||
| 71 | as -o asm/bn86-sol.o asm/bn86-sol.s | 85 | as -o asm/bn86-sol.o asm/bn86-sol.s |
| 72 | rm -f asm/bn86-sol.s | 86 | rm -f asm/bn86-sol.s |
| 73 | 87 | ||
| 88 | asm/co86-sol.o: asm/co86unix.cpp | ||
| 89 | $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s | ||
| 90 | as -o asm/co86-sol.o asm/co86-sol.s | ||
| 91 | rm -f asm/co86-sol.s | ||
| 92 | |||
| 74 | # a.out | 93 | # a.out |
| 75 | asm/bn86-out.o: asm/bn86unix.cpp | 94 | asm/bn86-out.o: asm/bn86unix.cpp |
| 76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | 95 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o |
| 77 | 96 | ||
| 97 | asm/co86-out.o: asm/co86unix.cpp | ||
| 98 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | ||
| 99 | |||
| 78 | # bsdi | 100 | # bsdi |
| 79 | asm/bn86bsdi.o: asm/bn86unix.cpp | 101 | asm/bn86bsdi.o: asm/bn86unix.cpp |
| 80 | $(CPP) -DBSDI asm/bn86unix.cpp | as -o asm/bn86bsdi.o | 102 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o |
| 103 | |||
| 104 | asm/co86bsdi.o: asm/co86unix.cpp | ||
| 105 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | ||
| 106 | |||
| 107 | asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl | ||
| 108 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | ||
| 109 | |||
| 110 | asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl | ||
| 111 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | ||
| 81 | 112 | ||
| 82 | asm/bn86unix.cpp: | 113 | asm/sparcv8.o: asm/sparcv8.S |
| 83 | (cd asm; perl bn-586.pl cpp >bn86unix.cpp ) | 114 | |
| 115 | asm/sparcv8plus.o: asm/sparcv8plus.S | ||
| 116 | |||
| 117 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
| 118 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
| 119 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 120 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 121 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 122 | # or upgrade it. | ||
| 123 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | ||
| 124 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | ||
| 125 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | ||
| 126 | |||
| 127 | |||
| 128 | asm/ia64.o: asm/ia64.S | ||
| 129 | |||
| 130 | # Some compiler drivers (most notably HP-UX and Intel C++) don't | ||
| 131 | # understand .S extension:-( I wish I could pipe output from cc -E, | ||
| 132 | # but it's too compiler driver/ABI dependent to cover with a single | ||
| 133 | # rule... <appro@fy.chalmers.se> | ||
| 134 | asm/ia64-cpp.o: asm/ia64.S | ||
| 135 | $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ | ||
| 136 | $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ | ||
| 137 | rm -f /tmp/ia64.$$$$.s | ||
| 84 | 138 | ||
| 85 | files: | 139 | files: |
| 86 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 140 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 87 | 141 | ||
| 88 | links: | 142 | links: |
| 89 | /bin/rm -f Makefile | 143 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 90 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 144 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 91 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 145 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 92 | $(TOP)/util/mklink.sh ../../test $(TEST) | 146 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 93 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 94 | 147 | ||
| 95 | install: | 148 | install: |
| 96 | @for i in $(EXHEADER) ; \ | 149 | @for i in $(EXHEADER) ; \ |
| 97 | do \ | 150 | do \ |
| 98 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 151 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 99 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 152 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 100 | done; | 153 | done; |
| 101 | 154 | ||
| 102 | exptest: | 155 | exptest: |
| 103 | /bin/rm -f exptest | 156 | rm -f exptest |
| 104 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | 157 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a |
| 105 | 158 | ||
| 106 | div: | 159 | div: |
| 107 | /bin/rm -f a.out | 160 | rm -f a.out |
| 108 | gcc -I.. -g div.c ../../libcrypto.a | 161 | gcc -I.. -g div.c ../../libcrypto.a |
| 109 | 162 | ||
| 110 | tags: | 163 | tags: |
| @@ -116,18 +169,171 @@ lint: | |||
| 116 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 117 | 170 | ||
| 118 | depend: | 171 | depend: |
| 119 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 172 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 120 | 173 | ||
| 121 | dclean: | 174 | dclean: |
| 122 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 123 | mv -f Makefile.new $(MAKEFILE) | 176 | mv -f Makefile.new $(MAKEFILE) |
| 124 | 177 | ||
| 125 | clean: | 178 | clean: |
| 126 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_mulw.s | 179 | rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s |
| 127 | |||
| 128 | errors: | ||
| 129 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # special case .org | ||
| 130 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 131 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 132 | 180 | ||
| 133 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 181 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 182 | |||
| 183 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 184 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 185 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 186 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 187 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 188 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 189 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h | ||
| 190 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 191 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 192 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 193 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 194 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 195 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 196 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h | ||
| 197 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 198 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 199 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 200 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 201 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 202 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 203 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h | ||
| 204 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 205 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 206 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 207 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 208 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 209 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 210 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h | ||
| 211 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 212 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 213 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 214 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 215 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 216 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h | ||
| 218 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 219 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 220 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 221 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 222 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 223 | bn_err.o: ../../include/openssl/symhacks.h bn_err.c | ||
| 224 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 225 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 226 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 227 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 228 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 229 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 230 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h | ||
| 231 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 232 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 233 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 234 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 235 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 236 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 237 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h | ||
| 238 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 239 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 240 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 241 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 242 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 243 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 244 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h | ||
| 245 | bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 246 | bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h | ||
| 247 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 248 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 249 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 250 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 251 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 252 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 253 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c | ||
| 254 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 255 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 256 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 257 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 258 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 259 | bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 260 | bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c | ||
| 261 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 262 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 263 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 264 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 265 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 266 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 267 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c | ||
| 268 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 269 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 270 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 271 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 272 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 273 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 274 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c | ||
| 275 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 276 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 277 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 278 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 279 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 280 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 281 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c | ||
| 282 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 283 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 284 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 285 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 286 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 287 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 288 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 289 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
| 290 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 291 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 292 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 293 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 294 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 295 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 296 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c | ||
| 297 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 298 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 299 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 300 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 301 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 302 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 303 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 304 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
| 305 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 306 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 307 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 308 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 309 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 310 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 311 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c | ||
| 312 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 313 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 314 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 315 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 316 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 317 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 318 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c | ||
| 319 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 320 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 321 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 322 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 323 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 324 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 325 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c | ||
| 326 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 327 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 328 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 329 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 330 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 331 | bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 332 | bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
| 333 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 334 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 335 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 336 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 337 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 338 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 339 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c | ||
diff --git a/src/lib/libcrypto/buffer/Makefile.ssl b/src/lib/libcrypto/buffer/Makefile.ssl index a5f150e523..1ee63940d0 100644 --- a/src/lib/libcrypto/buffer/Makefile.ssl +++ b/src/lib/libcrypto/buffer/Makefile.ssl | |||
| @@ -5,25 +5,26 @@ | |||
| 5 | DIR= buffer | 5 | DIR= buffer |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=buffer | ||
| 19 | ERRC=buf_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= buffer.c $(ERRC).c | 26 | LIBSRC= buffer.c buf_err.c |
| 26 | LIBOBJ= buffer.o $(ERRC).o | 27 | LIBOBJ= buffer.o buf_err.o |
| 27 | 28 | ||
| 28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 29 | 30 | ||
| @@ -39,24 +40,23 @@ all: lib | |||
| 39 | 40 | ||
| 40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 44 | @touch lib |
| 44 | 45 | ||
| 45 | files: | 46 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 48 | ||
| 48 | links: | 49 | links: |
| 49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 54 | ||
| 55 | install: | 55 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 57 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 60 | done; |
| 61 | 61 | ||
| 62 | tags: | 62 | tags: |
| @@ -68,17 +68,27 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 76 | ||
| 77 | clean: | 77 | clean: |
| 78 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 79 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 83 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 84 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 85 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 86 | buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 87 | buf_err.o: ../../include/openssl/symhacks.h buf_err.c | ||
| 88 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 89 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 90 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 91 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 92 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 93 | buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 94 | buffer.o: ../cryptlib.h buffer.c | ||
diff --git a/src/lib/libcrypto/cast/Makefile.ssl b/src/lib/libcrypto/cast/Makefile.ssl index 0143827ae5..75d97b0fbe 100644 --- a/src/lib/libcrypto/cast/Makefile.ssl +++ b/src/lib/libcrypto/cast/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -45,12 +48,12 @@ all: lib | |||
| 45 | 48 | ||
| 46 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
| 47 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
| 48 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
| 49 | @touch lib | 52 | @touch lib |
| 50 | 53 | ||
| 51 | # elf | 54 | # elf |
| 52 | asm/cx86-elf.o: asm/cx86unix.cpp | 55 | asm/cx86-elf.o: asm/cx86unix.cpp |
| 53 | $(CPP) -DELF asm/cx86unix.cpp | as -o asm/cx86-elf.o | 56 | $(CPP) -DELF -x c asm/cx86unix.cpp | as -o asm/cx86-elf.o |
| 54 | 57 | ||
| 55 | # solaris | 58 | # solaris |
| 56 | asm/cx86-sol.o: asm/cx86unix.cpp | 59 | asm/cx86-sol.o: asm/cx86unix.cpp |
| @@ -64,26 +67,25 @@ asm/cx86-out.o: asm/cx86unix.cpp | |||
| 64 | 67 | ||
| 65 | # bsdi | 68 | # bsdi |
| 66 | asm/cx86bsdi.o: asm/cx86unix.cpp | 69 | asm/cx86bsdi.o: asm/cx86unix.cpp |
| 67 | $(CPP) -DBSDI asm/cx86unix.cpp | as -o asm/cx86bsdi.o | 70 | $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o |
| 68 | 71 | ||
| 69 | asm/cx86unix.cpp: | 72 | asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 70 | (cd asm; perl cast-586.pl cpp >cx86unix.cpp) | 73 | (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp) |
| 71 | 74 | ||
| 72 | files: | 75 | files: |
| 73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 74 | 77 | ||
| 75 | links: | 78 | links: |
| 76 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 81 | 83 | ||
| 82 | install: | 84 | install: |
| 83 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
| 84 | do \ | 86 | do \ |
| 85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 87 | done; | 89 | done; |
| 88 | 90 | ||
| 89 | tags: | 91 | tags: |
| @@ -95,15 +97,29 @@ lint: | |||
| 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 96 | 98 | ||
| 97 | depend: | 99 | depend: |
| 98 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 99 | 101 | ||
| 100 | dclean: | 102 | dclean: |
| 101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 102 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
| 103 | 105 | ||
| 104 | clean: | 106 | clean: |
| 105 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 107 | rm -f asm/cx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 106 | |||
| 107 | errors: | ||
| 108 | 108 | ||
| 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 110 | |||
| 111 | c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 112 | c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 113 | c_cfb64.o: c_cfb64.c cast_lcl.h | ||
| 114 | c_ecb.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 115 | c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 116 | c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h | ||
| 117 | c_enc.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 118 | c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 119 | c_enc.o: c_enc.c cast_lcl.h | ||
| 120 | c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 121 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 122 | c_ofb64.o: c_ofb64.c cast_lcl.h | ||
| 123 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 124 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 125 | c_skey.o: c_skey.c cast_lcl.h cast_s.h | ||
diff --git a/src/lib/libcrypto/comp/Makefile.ssl b/src/lib/libcrypto/comp/Makefile.ssl index d946bcbafa..11d728eca9 100644 --- a/src/lib/libcrypto/comp/Makefile.ssl +++ b/src/lib/libcrypto/comp/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= comp | 5 | DIR= comp |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,10 +23,10 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= comp_lib.c \ | 26 | LIBSRC= comp_lib.c comp_err.c \ |
| 26 | c_rle.c c_zlib.c | 27 | c_rle.c c_zlib.c |
| 27 | 28 | ||
| 28 | LIBOBJ= comp_lib.o \ | 29 | LIBOBJ= comp_lib.o comp_err.o \ |
| 29 | c_rle.o c_zlib.o | 30 | c_rle.o c_zlib.o |
| 30 | 31 | ||
| 31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| @@ -42,7 +43,7 @@ all: lib | |||
| 42 | 43 | ||
| 43 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | $(RANLIB) $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 47 | @touch lib |
| 47 | 48 | ||
| 48 | files: | 49 | files: |
| @@ -83,17 +84,31 @@ clean: | |||
| 83 | 84 | ||
| 84 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 85 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 85 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 86 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 86 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 87 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 88 | c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 89 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 88 | c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 90 | c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 91 | c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c | ||
| 89 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 92 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 90 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 93 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 91 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 94 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 95 | c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 92 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 93 | c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 97 | c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 98 | c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | c_zlib.o: c_zlib.c | ||
| 100 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h | ||
| 101 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 102 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 103 | comp_err.o: ../../include/openssl/opensslconf.h | ||
| 104 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 106 | comp_err.o: comp_err.c | ||
| 94 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 95 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 108 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 96 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 109 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 110 | comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 97 | comp_lib.o: ../../include/openssl/opensslconf.h | 111 | comp_lib.o: ../../include/openssl/opensslconf.h |
| 98 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 112 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 99 | comp_lib.o: ../../include/openssl/stack.h | 113 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 114 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | ||
diff --git a/src/lib/libcrypto/conf/Makefile.ssl b/src/lib/libcrypto/conf/Makefile.ssl index 00e917aa44..4a85c07b55 100644 --- a/src/lib/libcrypto/conf/Makefile.ssl +++ b/src/lib/libcrypto/conf/Makefile.ssl | |||
| @@ -5,31 +5,34 @@ | |||
| 5 | DIR= conf | 5 | DIR= conf |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=conf | ||
| 19 | ERRC=conf_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= conf.c $(ERRC).c | 26 | LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \ |
| 27 | conf_mall.c conf_sap.c | ||
| 26 | 28 | ||
| 27 | LIBOBJ= conf.o $(ERRC).o | 29 | LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \ |
| 30 | conf_mall.o conf_sap.o | ||
| 28 | 31 | ||
| 29 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| 30 | 33 | ||
| 31 | EXHEADER= conf.h | 34 | EXHEADER= conf.h conf_api.h |
| 32 | HEADER= conf_lcl.h $(EXHEADER) | 35 | HEADER= conf_def.h $(EXHEADER) |
| 33 | 36 | ||
| 34 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 35 | 38 | ||
| @@ -40,24 +43,23 @@ all: lib | |||
| 40 | 43 | ||
| 41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 47 | @touch lib |
| 45 | 48 | ||
| 46 | files: | 49 | files: |
| 47 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 48 | 51 | ||
| 49 | links: | 52 | links: |
| 50 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 51 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 52 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 53 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 54 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 55 | 57 | ||
| 56 | install: | 58 | install: |
| 57 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
| 58 | do \ | 60 | do \ |
| 59 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 60 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 61 | done; | 63 | done; |
| 62 | 64 | ||
| 63 | tags: | 65 | tags: |
| @@ -69,17 +71,91 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 72 | ||
| 71 | depend: | 73 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 73 | 75 | ||
| 74 | dclean: | 76 | dclean: |
| 75 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 76 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
| 77 | 79 | ||
| 78 | clean: | 80 | clean: |
| 79 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 80 | |||
| 81 | errors: | ||
| 82 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 83 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 84 | 82 | ||
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | |||
| 85 | conf_api.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 86 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
| 87 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 88 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 91 | conf_api.o: conf_api.c | ||
| 92 | conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 93 | conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
| 94 | conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 95 | conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 96 | conf_def.o: ../../include/openssl/opensslconf.h | ||
| 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | conf_def.o: conf_def.c conf_def.h | ||
| 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 103 | conf_err.o: ../../include/openssl/opensslconf.h | ||
| 104 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 106 | conf_err.o: conf_err.c | ||
| 107 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 108 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | ||
| 109 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 113 | conf_lib.o: conf_lib.c | ||
| 114 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 115 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 116 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 117 | conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 118 | conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 119 | conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 120 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 121 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 122 | conf_mall.o: ../../include/openssl/objects.h | ||
| 123 | conf_mall.o: ../../include/openssl/opensslconf.h | ||
| 124 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 126 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 127 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 128 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 129 | conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 130 | conf_mall.o: ../cryptlib.h conf_mall.c | ||
| 131 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 132 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 133 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 134 | conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 135 | conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 136 | conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 137 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 138 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 139 | conf_mod.o: ../../include/openssl/opensslconf.h | ||
| 140 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 141 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 142 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 143 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 144 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 145 | conf_mod.o: ../cryptlib.h conf_mod.c | ||
| 146 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 149 | conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 150 | conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 151 | conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 152 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 153 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 154 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 155 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 157 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 158 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 159 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 160 | conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 161 | conf_sap.o: ../cryptlib.h conf_sap.c | ||
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl index 78b5189ee3..c1080b000f 100644 --- a/src/lib/libcrypto/des/Makefile.ssl +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
| @@ -6,20 +6,24 @@ DIR= des | |||
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES=-I$(TOP) -I../../include |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 19 | RANLIB= ranlib | ||
| 16 | DES_ENC= des_enc.o fcrypt_b.o | 20 | DES_ENC= des_enc.o fcrypt_b.o |
| 17 | # or use | 21 | # or use |
| 18 | #DES_ENC= dx86-elf.o yx86-elf.o | 22 | #DES_ENC= dx86-elf.o yx86-elf.o |
| 19 | 23 | ||
| 20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 21 | 25 | ||
| 22 | GENERAL=Makefile des.org des_locl.org | 26 | GENERAL=Makefile |
| 23 | TEST=destest.c | 27 | TEST=destest.c |
| 24 | APPS= | 28 | APPS= |
| 25 | 29 | ||
| @@ -27,22 +31,24 @@ LIB=$(TOP)/libcrypto.a | |||
| 27 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 31 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
| 28 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 32 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
| 29 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 33 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ |
| 30 | qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \ | 34 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
| 31 | des_enc.c fcrypt_b.c read2pwd.c \ | 35 | des_enc.c fcrypt_b.c \ |
| 32 | fcrypt.c xcbc_enc.c \ | 36 | xcbc_enc.c \ |
| 33 | str2key.c cfb64ede.c ofb64ede.c supp.c | 37 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ |
| 38 | read2pwd.c | ||
| 34 | 39 | ||
| 35 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ | 40 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ |
| 36 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ | 41 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ |
| 37 | enc_read.o enc_writ.o ofb64enc.o \ | 42 | enc_read.o enc_writ.o ofb64enc.o \ |
| 38 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ | 43 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ |
| 39 | ${DES_ENC} read2pwd.o \ | 44 | ${DES_ENC} \ |
| 40 | fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o supp.o | 45 | fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \ |
| 46 | ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o | ||
| 41 | 47 | ||
| 42 | SRC= $(LIBSRC) | 48 | SRC= $(LIBSRC) |
| 43 | 49 | ||
| 44 | EXHEADER= des.h | 50 | EXHEADER= des.h des_old.h |
| 45 | HEADER= des_locl.h rpc_des.h podd.h sk.h spr.h des_ver.h $(EXHEADER) | 51 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) |
| 46 | 52 | ||
| 47 | ALL= $(GENERAL) $(SRC) $(HEADER) | 53 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 48 | 54 | ||
| @@ -53,15 +59,18 @@ all: lib | |||
| 53 | 59 | ||
| 54 | lib: $(LIBOBJ) | 60 | lib: $(LIBOBJ) |
| 55 | $(AR) $(LIB) $(LIBOBJ) | 61 | $(AR) $(LIB) $(LIBOBJ) |
| 56 | sh $(TOP)/util/ranlib.sh $(LIB) | 62 | $(RANLIB) $(LIB) || echo Never mind. |
| 57 | @touch lib | 63 | @touch lib |
| 58 | 64 | ||
| 65 | des: des.o cbc3_enc.o lib | ||
| 66 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) | ||
| 67 | |||
| 59 | # elf | 68 | # elf |
| 60 | asm/dx86-elf.o: asm/dx86unix.cpp | 69 | asm/dx86-elf.o: asm/dx86unix.cpp |
| 61 | $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o | 70 | $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o |
| 62 | 71 | ||
| 63 | asm/yx86-elf.o: asm/yx86unix.cpp | 72 | asm/yx86-elf.o: asm/yx86unix.cpp |
| 64 | $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o | 73 | $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o |
| 65 | 74 | ||
| 66 | # solaris | 75 | # solaris |
| 67 | asm/dx86-sol.o: asm/dx86unix.cpp | 76 | asm/dx86-sol.o: asm/dx86unix.cpp |
| @@ -83,38 +92,34 @@ asm/yx86-out.o: asm/yx86unix.cpp | |||
| 83 | 92 | ||
| 84 | # bsdi | 93 | # bsdi |
| 85 | asm/dx86bsdi.o: asm/dx86unix.cpp | 94 | asm/dx86bsdi.o: asm/dx86unix.cpp |
| 86 | $(CPP) -DBSDI asm/dx86unix.cpp | as -o asm/dx86bsdi.o | 95 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o |
| 87 | 96 | ||
| 88 | asm/yx86bsdi.o: asm/yx86unix.cpp | 97 | asm/yx86bsdi.o: asm/yx86unix.cpp |
| 89 | $(CPP) -DBSDI asm/yx86unix.cpp | as -o asm/yx86bsdi.o | 98 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o |
| 90 | 99 | ||
| 91 | asm/dx86unix.cpp: | 100 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 92 | (cd asm; perl des-586.pl cpp >dx86unix.cpp) | 101 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) |
| 93 | 102 | ||
| 94 | asm/yx86unix.cpp: | 103 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl |
| 95 | (cd asm; perl crypt586.pl cpp >yx86unix.cpp) | 104 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) |
| 96 | 105 | ||
| 97 | files: | 106 | files: |
| 98 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 107 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 99 | 108 | ||
| 100 | links: | 109 | links: |
| 101 | /bin/rm -f Makefile | 110 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 102 | $(TOP)/util/point.sh Makefile.ssl Makefile | 111 | @$(TOP)/util/point.sh ../../perlasm asm/perlasm |
| 103 | /bin/rm -f des.doc | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 104 | /bin/rm -fr asm/perlasm | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 105 | $(TOP)/util/point.sh ../../perlasm asm/perlasm | 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 106 | $(TOP)/util/point.sh ../../doc/des.doc des.doc | ||
| 107 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | ||
| 108 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 109 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 110 | 115 | ||
| 111 | install: installs | 116 | install: installs |
| 112 | 117 | ||
| 113 | installs: | 118 | installs: |
| 114 | @for i in $(EXHEADER) ; \ | 119 | @for i in $(EXHEADER) ; \ |
| 115 | do \ | 120 | do \ |
| 116 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 117 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 118 | done; | 123 | done; |
| 119 | 124 | ||
| 120 | tags: | 125 | tags: |
| @@ -126,15 +131,195 @@ lint: | |||
| 126 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 127 | 132 | ||
| 128 | depend: | 133 | depend: |
| 129 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 130 | 135 | ||
| 131 | dclean: | 136 | dclean: |
| 132 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 133 | mv -f Makefile.new $(MAKEFILE) | 138 | mv -f Makefile.new $(MAKEFILE) |
| 134 | 139 | ||
| 135 | clean: | 140 | clean: |
| 136 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 141 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff |
| 137 | |||
| 138 | errors: | ||
| 139 | 142 | ||
| 140 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 143 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 144 | |||
| 145 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 146 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 147 | cbc_cksm.o: ../../include/openssl/opensslconf.h | ||
| 148 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 149 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 150 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 151 | cbc_cksm.o: cbc_cksm.c des_locl.h | ||
| 152 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 153 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 154 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 155 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 157 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | ||
| 158 | cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 159 | cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 160 | cfb64ede.o: ../../include/openssl/opensslconf.h | ||
| 161 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 162 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 163 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 164 | cfb64ede.o: cfb64ede.c des_locl.h | ||
| 165 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 166 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 167 | cfb64enc.o: ../../include/openssl/opensslconf.h | ||
| 168 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 169 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 170 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 171 | cfb64enc.o: cfb64enc.c des_locl.h | ||
| 172 | cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 174 | cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 175 | cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 176 | cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 177 | cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h | ||
| 178 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 179 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 180 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 181 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 182 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 183 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | ||
| 184 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 185 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 186 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 187 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 188 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 189 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 190 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | ||
| 191 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 192 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 193 | des_old2.o: ../../include/openssl/opensslconf.h | ||
| 194 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 195 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 196 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 197 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 198 | des_old2.o: des_old2.c | ||
| 199 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 200 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 201 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
| 202 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 203 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 204 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 205 | ecb3_enc.o: des_locl.h ecb3_enc.c | ||
| 206 | ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 207 | ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 208 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 209 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 210 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 211 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h | ||
| 212 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 213 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 214 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | ||
| 215 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h | ||
| 216 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 217 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 218 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | ||
| 219 | enc_read.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 220 | enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 221 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 222 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 223 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 224 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 225 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 226 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | ||
| 228 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 229 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 230 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 231 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 232 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 233 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 234 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 235 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 236 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 237 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | ||
| 238 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 239 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 240 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 241 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 243 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | ||
| 244 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 245 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 246 | fcrypt_b.o: ../../include/openssl/opensslconf.h | ||
| 247 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 248 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 250 | fcrypt_b.o: des_locl.h fcrypt_b.c | ||
| 251 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 252 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 253 | ofb64ede.o: ../../include/openssl/opensslconf.h | ||
| 254 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 255 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 257 | ofb64ede.o: des_locl.h ofb64ede.c | ||
| 258 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 259 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 260 | ofb64enc.o: ../../include/openssl/opensslconf.h | ||
| 261 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 262 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 263 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 264 | ofb64enc.o: des_locl.h ofb64enc.c | ||
| 265 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 266 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 267 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 268 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 269 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 270 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | ||
| 271 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 272 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 273 | pcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 274 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 275 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 276 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 277 | pcbc_enc.o: des_locl.h pcbc_enc.c | ||
| 278 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 279 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 280 | qud_cksm.o: ../../include/openssl/opensslconf.h | ||
| 281 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 282 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 283 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 284 | qud_cksm.o: des_locl.h qud_cksm.c | ||
| 285 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 286 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 287 | rand_key.o: ../../include/openssl/opensslconf.h | ||
| 288 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 289 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 290 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 291 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 292 | rand_key.o: rand_key.c | ||
| 293 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 294 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 295 | read2pwd.o: ../../include/openssl/opensslconf.h | ||
| 296 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 297 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 298 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 299 | read2pwd.o: read2pwd.c | ||
| 300 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 301 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 302 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 303 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 304 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 305 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | ||
| 306 | rpc_enc.o: rpc_enc.c | ||
| 307 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 308 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 309 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 310 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 311 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 312 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
| 313 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 314 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 315 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 316 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 317 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 318 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | ||
| 319 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 320 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 321 | xcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 322 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 323 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 324 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 325 | xcbc_enc.o: des_locl.h xcbc_enc.c | ||
diff --git a/src/lib/libcrypto/dh/Makefile.ssl b/src/lib/libcrypto/dh/Makefile.ssl index dfa7e4525d..9dddf8dd61 100644 --- a/src/lib/libcrypto/dh/Makefile.ssl +++ b/src/lib/libcrypto/dh/Makefile.ssl | |||
| @@ -5,25 +5,26 @@ | |||
| 5 | DIR= dh | 5 | DIR= dh |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=dh | ||
| 19 | ERRC=dh_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= dhtest.c | 22 | TEST= dhtest.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c | 26 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c |
| 26 | LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o | 27 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o |
| 27 | 28 | ||
| 28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 29 | 30 | ||
| @@ -39,24 +40,23 @@ all: lib | |||
| 39 | 40 | ||
| 40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 44 | @touch lib |
| 44 | 45 | ||
| 45 | files: | 46 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 48 | ||
| 48 | links: | 49 | links: |
| 49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 54 | ||
| 55 | install: | 55 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 57 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 60 | done; |
| 61 | 61 | ||
| 62 | tags: | 62 | tags: |
| @@ -68,17 +68,69 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 76 | ||
| 77 | clean: | 77 | clean: |
| 78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 79 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 83 | dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 84 | dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 85 | dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 86 | dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 87 | dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 88 | dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 89 | dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 90 | dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 91 | dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c | ||
| 92 | dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 93 | dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 94 | dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 95 | dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 96 | dh_check.o: ../../include/openssl/opensslconf.h | ||
| 97 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 98 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 99 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c | ||
| 100 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 101 | dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 102 | dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 103 | dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 104 | dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 105 | dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 106 | dh_err.o: ../../include/openssl/symhacks.h dh_err.c | ||
| 107 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 108 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 109 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 110 | dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 111 | dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 112 | dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 113 | dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 114 | dh_gen.o: ../cryptlib.h dh_gen.c | ||
| 115 | dh_key.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 116 | dh_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 117 | dh_key.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 118 | dh_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 119 | dh_key.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 120 | dh_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 121 | dh_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | dh_key.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 123 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 124 | dh_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 125 | dh_key.o: ../cryptlib.h dh_key.c | ||
| 126 | dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 127 | dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 128 | dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 129 | dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 130 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 131 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 132 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 133 | dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 134 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 135 | dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 136 | dh_lib.o: ../cryptlib.h dh_lib.c | ||
diff --git a/src/lib/libcrypto/dsa/Makefile.ssl b/src/lib/libcrypto/dsa/Makefile.ssl index 2cc4ddb39e..e780ee429b 100644 --- a/src/lib/libcrypto/dsa/Makefile.ssl +++ b/src/lib/libcrypto/dsa/Makefile.ssl | |||
| @@ -5,25 +5,28 @@ | |||
| 5 | DIR= dsa | 5 | DIR= dsa |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=dsa | ||
| 19 | ERRC=dsa_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST=dsatest.c | 22 | TEST=dsatest.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c dsa_sign.c $(ERRC).c | 26 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ |
| 26 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_vrf.o dsa_sign.o $(ERRC).o | 27 | dsa_err.c dsa_ossl.c |
| 28 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ | ||
| 29 | dsa_err.o dsa_ossl.o | ||
| 27 | 30 | ||
| 28 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
| 29 | 32 | ||
| @@ -39,24 +42,23 @@ all: lib | |||
| 39 | 42 | ||
| 40 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 46 | @touch lib |
| 44 | 47 | ||
| 45 | files: | 48 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 50 | ||
| 48 | links: | 51 | links: |
| 49 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 56 | ||
| 55 | install: | 57 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 59 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 62 | done; |
| 61 | 63 | ||
| 62 | tags: | 64 | tags: |
| @@ -68,17 +70,100 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 71 | ||
| 70 | depend: | 72 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 74 | ||
| 73 | dclean: | 75 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 78 | ||
| 77 | clean: | 79 | clean: |
| 78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 81 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | |||
| 84 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 85 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 86 | dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 87 | dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 88 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 89 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 90 | dsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 91 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 92 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 93 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c | ||
| 94 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 95 | dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 96 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 97 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 98 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 101 | dsa_err.o: dsa_err.c | ||
| 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 103 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 104 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 105 | dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 106 | dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 107 | dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 108 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 109 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 110 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 111 | dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 112 | dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 113 | dsa_gen.o: ../cryptlib.h dsa_gen.c | ||
| 114 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 117 | dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 119 | dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 120 | dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 121 | dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | dsa_key.o: ../cryptlib.h dsa_key.c | ||
| 123 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 124 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 125 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 126 | dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 127 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 128 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 129 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 130 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 131 | dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 132 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 133 | dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c | ||
| 134 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 135 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 136 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 137 | dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 138 | dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 139 | dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 140 | dsa_ossl.o: ../../include/openssl/opensslconf.h | ||
| 141 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 142 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 143 | dsa_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 144 | dsa_ossl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 145 | dsa_ossl.o: ../cryptlib.h dsa_ossl.c | ||
| 146 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 149 | dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 150 | dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 151 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 152 | dsa_sign.o: ../../include/openssl/opensslconf.h | ||
| 153 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 154 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 155 | dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 157 | dsa_sign.o: ../cryptlib.h dsa_sign.c | ||
| 158 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 159 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 160 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 161 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 162 | dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 163 | dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 164 | dsa_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 165 | dsa_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 166 | dsa_vrf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 167 | dsa_vrf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 168 | dsa_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 169 | dsa_vrf.o: ../cryptlib.h dsa_vrf.c | ||
diff --git a/src/lib/libcrypto/dso/Makefile.ssl b/src/lib/libcrypto/dso/Makefile.ssl index effc46d2dc..c47ca2d78c 100644 --- a/src/lib/libcrypto/dso/Makefile.ssl +++ b/src/lib/libcrypto/dso/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= dso | 5 | DIR= dso |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -41,7 +42,7 @@ all: lib | |||
| 41 | 42 | ||
| 42 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | $(RANLIB) $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 46 | @touch lib |
| 46 | 47 | ||
| 47 | files: | 48 | files: |
| @@ -80,61 +81,62 @@ clean: | |||
| 80 | 81 | ||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 82 | 83 | ||
| 83 | dso_dl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 84 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h |
| 84 | dso_dl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 85 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 85 | dso_dl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 86 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 86 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 87 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 87 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 88 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 88 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 89 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 89 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 90 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c |
| 90 | dso_dlfcn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 91 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h |
| 91 | dso_dlfcn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 92 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 92 | dso_dlfcn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 93 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 94 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 94 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | 95 | dso_dlfcn.o: ../../include/openssl/opensslconf.h |
| 95 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 96 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 96 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 97 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 97 | dso_dlfcn.o: ../cryptlib.h | 98 | dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c |
| 98 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 99 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
| 99 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/err.h | 100 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 100 | dso_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h | 101 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 102 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 101 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 103 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 102 | dso_err.o: ../../include/openssl/symhacks.h | 104 | dso_err.o: ../../include/openssl/symhacks.h dso_err.c |
| 103 | dso_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 105 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h |
| 104 | dso_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 106 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 105 | dso_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 107 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 106 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 108 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 107 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 109 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 108 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 110 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 109 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h | 111 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c |
| 110 | dso_null.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 112 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h |
| 111 | dso_null.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 113 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 112 | dso_null.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 114 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 115 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 114 | dso_null.o: ../../include/openssl/opensslconf.h | 116 | dso_null.o: ../../include/openssl/opensslconf.h |
| 115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 117 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 116 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 118 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 117 | dso_null.o: ../cryptlib.h | 119 | dso_null.o: ../cryptlib.h dso_null.c |
| 118 | dso_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 120 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h |
| 119 | dso_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 121 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 120 | dso_openssl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 122 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 123 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 122 | dso_openssl.o: ../../include/openssl/opensslconf.h | 124 | dso_openssl.o: ../../include/openssl/opensslconf.h |
| 123 | dso_openssl.o: ../../include/openssl/opensslv.h | 125 | dso_openssl.o: ../../include/openssl/opensslv.h |
| 124 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 126 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 125 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 127 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c |
| 126 | dso_vms.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 128 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h |
| 127 | dso_vms.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 129 | dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 128 | dso_vms.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 130 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 129 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 131 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 130 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 132 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 131 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 133 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 132 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h | 134 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c |
| 133 | dso_win32.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 135 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h |
| 134 | dso_win32.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 136 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 135 | dso_win32.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 136 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 138 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 137 | dso_win32.o: ../../include/openssl/opensslconf.h | 139 | dso_win32.o: ../../include/openssl/opensslconf.h |
| 138 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 140 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 139 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 140 | dso_win32.o: ../cryptlib.h | 142 | dso_win32.o: ../cryptlib.h dso_win32.c |
diff --git a/src/lib/libcrypto/engine/Makefile.ssl b/src/lib/libcrypto/engine/Makefile.ssl index 7a0ffe755d..eeea47fbf5 100644 --- a/src/lib/libcrypto/engine/Makefile.ssl +++ b/src/lib/libcrypto/engine/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= engine | 5 | DIR= engine |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,10 +23,18 @@ TEST= enginetest.c | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \ | 26 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ |
| 26 | hw_atalla.c hw_cswift.c hw_ncipher.c | 27 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ |
| 27 | LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \ | 28 | tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \ |
| 28 | hw_atalla.o hw_cswift.o hw_ncipher.o | 29 | eng_openssl.c eng_dyn.c eng_cnf.c \ |
| 30 | hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \ | ||
| 31 | hw_openbsd_dev_crypto.c hw_aep.c hw_sureware.c hw_4758_cca.c | ||
| 32 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | ||
| 33 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | ||
| 34 | tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \ | ||
| 35 | eng_openssl.o eng_dyn.o eng_cnf.o \ | ||
| 36 | hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \ | ||
| 37 | hw_openbsd_dev_crypto.o hw_aep.o hw_sureware.o hw_4758_cca.o | ||
| 29 | 38 | ||
| 30 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 31 | 40 | ||
| @@ -63,6 +72,10 @@ install: | |||
| 63 | tags: | 72 | tags: |
| 64 | ctags $(SRC) | 73 | ctags $(SRC) |
| 65 | 74 | ||
| 75 | errors: | ||
| 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | ||
| 77 | -nostatic -staticloader -write hw_*.c; \ | ||
| 78 | |||
| 66 | tests: | 79 | tests: |
| 67 | 80 | ||
| 68 | lint: | 81 | lint: |
| @@ -80,141 +93,361 @@ clean: | |||
| 80 | 93 | ||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 94 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 82 | 95 | ||
| 83 | engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 96 | eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 84 | engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 97 | eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
| 85 | engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 98 | eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 86 | engine_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 99 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 87 | engine_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 100 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 88 | engine_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 101 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 89 | engine_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 102 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 90 | engine_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 103 | eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 91 | engine_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 104 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 92 | engine_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 105 | eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h |
| 93 | engine_err.o: ../../include/openssl/objects.h | 106 | eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h |
| 94 | engine_err.o: ../../include/openssl/opensslconf.h | 107 | eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 95 | engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 108 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 96 | engine_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 109 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 97 | engine_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 110 | eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 98 | engine_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 111 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 99 | engine_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 112 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 100 | engine_err.o: ../../include/openssl/symhacks.h | 113 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 101 | engine_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 114 | eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 102 | engine_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 115 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 103 | engine_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 116 | eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 104 | engine_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 117 | eng_cnf.o: ../cryptlib.h eng_cnf.c |
| 105 | engine_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 118 | eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 106 | engine_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 119 | eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 107 | engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 120 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 108 | engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 121 | eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 122 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 110 | engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 123 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 111 | engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 124 | eng_ctrl.o: ../../include/openssl/opensslconf.h |
| 112 | engine_lib.o: ../../include/openssl/objects.h | 125 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 113 | engine_lib.o: ../../include/openssl/opensslconf.h | 126 | eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 114 | engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 127 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 115 | engine_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 128 | eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 116 | engine_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 129 | eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h |
| 117 | engine_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 130 | eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 118 | engine_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 131 | eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 119 | engine_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 132 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 120 | engine_list.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 133 | eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 121 | engine_list.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 134 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 122 | engine_list.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 135 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 123 | engine_list.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 136 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 124 | engine_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 137 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | engine_list.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 138 | eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 126 | engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 139 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 127 | engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 140 | eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 128 | engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 141 | eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h |
| 129 | engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 142 | eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 130 | engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 143 | eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
| 131 | engine_list.o: ../../include/openssl/objects.h | 144 | eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 132 | engine_list.o: ../../include/openssl/opensslconf.h | 145 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 133 | engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 146 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 134 | engine_list.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 147 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 135 | engine_list.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 148 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 136 | engine_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 137 | engine_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 138 | engine_list.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 151 | eng_err.o: ../../include/openssl/ui.h eng_err.c |
| 139 | engine_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 152 | eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h |
| 140 | engine_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 153 | eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 141 | engine_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 154 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 142 | engine_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 155 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 143 | engine_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 156 | eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 144 | engine_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 157 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 145 | engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 158 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 146 | engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 159 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 147 | engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 160 | eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 148 | engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 161 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 149 | engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 162 | eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 150 | engine_openssl.o: ../../include/openssl/obj_mac.h | 163 | eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h |
| 151 | engine_openssl.o: ../../include/openssl/objects.h | 164 | eng_init.o: ../../e_os.h ../../include/openssl/asn1.h |
| 152 | engine_openssl.o: ../../include/openssl/opensslconf.h | 165 | eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 153 | engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 166 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 154 | engine_openssl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 167 | eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 155 | engine_openssl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 168 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 156 | engine_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 169 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 157 | engine_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 170 | eng_init.o: ../../include/openssl/opensslconf.h |
| 158 | engine_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 171 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 159 | hw_atalla.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 172 | eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 160 | hw_atalla.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 173 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 161 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 174 | eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 162 | hw_atalla.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 175 | eng_init.o: ../cryptlib.h eng_init.c eng_int.h |
| 176 | eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 177 | eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 178 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 179 | eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 180 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 181 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 182 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 183 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 184 | eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 185 | eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 186 | eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c | ||
| 187 | eng_list.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 188 | eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 189 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 190 | eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 191 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 192 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 193 | eng_list.o: ../../include/openssl/opensslconf.h | ||
| 194 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 195 | eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | ||
| 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 200 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 201 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 202 | eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 203 | eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 204 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 205 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 206 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 207 | eng_openssl.o: ../../include/openssl/opensslconf.h | ||
| 208 | eng_openssl.o: ../../include/openssl/opensslv.h | ||
| 209 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 210 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 211 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h | ||
| 212 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 213 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 214 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 215 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 216 | eng_openssl.o: ../cryptlib.h eng_openssl.c | ||
| 217 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 218 | eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 219 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 220 | eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 221 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 222 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 223 | eng_pkey.o: ../../include/openssl/opensslconf.h | ||
| 224 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 225 | eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 226 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 227 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 228 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | ||
| 229 | eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 230 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 231 | eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 232 | eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 233 | eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 234 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 235 | eng_table.o: ../../include/openssl/objects.h | ||
| 236 | eng_table.o: ../../include/openssl/opensslconf.h | ||
| 237 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 238 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 239 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 240 | eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 241 | eng_table.o: eng_int.h eng_table.c | ||
| 242 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 243 | hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 244 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 245 | hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 246 | hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 247 | hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 248 | hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 249 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 250 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | ||
| 251 | hw_4758_cca.o: ../../include/openssl/opensslv.h | ||
| 252 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 253 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 254 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 255 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 257 | hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c | ||
| 258 | hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h | ||
| 259 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 260 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 261 | hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 262 | hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 263 | hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 264 | hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 265 | hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 266 | hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 267 | hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 268 | hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c | ||
| 269 | hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h | ||
| 270 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 271 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 272 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 273 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 164 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 274 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 165 | hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 275 | hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 166 | hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 167 | hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 277 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 168 | hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 278 | hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 169 | hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 279 | hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 170 | hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 280 | hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 171 | hw_atalla.o: ../../include/openssl/opensslconf.h | 281 | hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h |
| 172 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
| 173 | hw_atalla.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 174 | hw_atalla.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 175 | hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 176 | hw_atalla.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 177 | hw_atalla.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
| 178 | hw_atalla.o: vendor_defns/atalla.h | 282 | hw_atalla.o: vendor_defns/atalla.h |
| 179 | hw_cswift.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 283 | hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h |
| 180 | hw_cswift.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 284 | hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 181 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 285 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 182 | hw_cswift.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 183 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 286 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 184 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 287 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 185 | hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 288 | hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 186 | hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 187 | hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 290 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 188 | hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 291 | hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 189 | hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 292 | hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 190 | hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 293 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 191 | hw_cswift.o: ../../include/openssl/opensslconf.h | 294 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h |
| 192 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
| 193 | hw_cswift.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 194 | hw_cswift.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 195 | hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 196 | hw_cswift.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 197 | hw_cswift.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
| 198 | hw_cswift.o: vendor_defns/cswift.h | 295 | hw_cswift.o: vendor_defns/cswift.h |
| 199 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 296 | hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h |
| 200 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 297 | hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 201 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 298 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 202 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 203 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 299 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 204 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 300 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 205 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 301 | hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 206 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 302 | hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 207 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 208 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 209 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 210 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 303 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 211 | hw_ncipher.o: ../../include/openssl/opensslconf.h | 304 | hw_ncipher.o: ../../include/openssl/opensslconf.h |
| 212 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h | 305 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 213 | hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 306 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 214 | hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 307 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 215 | hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 308 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 216 | hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 309 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 217 | hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 310 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 218 | hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 219 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 311 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 220 | hw_ncipher.o: ../cryptlib.h engine_int.h vendor_defns/hwcryptohook.h | 312 | hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h |
| 313 | hw_ncipher.o: vendor_defns/hwcryptohook.h | ||
| 314 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 315 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 316 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 317 | hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 318 | hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 319 | hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 320 | hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 321 | hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 322 | hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 323 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 324 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 325 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | ||
| 326 | hw_openbsd_dev_crypto.o: ../../include/openssl/asn1.h | ||
| 327 | hw_openbsd_dev_crypto.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 328 | hw_openbsd_dev_crypto.o: ../../include/openssl/conf.h | ||
| 329 | hw_openbsd_dev_crypto.o: ../../include/openssl/crypto.h | ||
| 330 | hw_openbsd_dev_crypto.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 331 | hw_openbsd_dev_crypto.o: ../../include/openssl/e_os2.h | ||
| 332 | hw_openbsd_dev_crypto.o: ../../include/openssl/engine.h | ||
| 333 | hw_openbsd_dev_crypto.o: ../../include/openssl/err.h | ||
| 334 | hw_openbsd_dev_crypto.o: ../../include/openssl/evp.h | ||
| 335 | hw_openbsd_dev_crypto.o: ../../include/openssl/lhash.h | ||
| 336 | hw_openbsd_dev_crypto.o: ../../include/openssl/obj_mac.h | ||
| 337 | hw_openbsd_dev_crypto.o: ../../include/openssl/objects.h | ||
| 338 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslconf.h | ||
| 339 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslv.h | ||
| 340 | hw_openbsd_dev_crypto.o: ../../include/openssl/ossl_typ.h | ||
| 341 | hw_openbsd_dev_crypto.o: ../../include/openssl/rand.h | ||
| 342 | hw_openbsd_dev_crypto.o: ../../include/openssl/rsa.h | ||
| 343 | hw_openbsd_dev_crypto.o: ../../include/openssl/safestack.h | ||
| 344 | hw_openbsd_dev_crypto.o: ../../include/openssl/stack.h | ||
| 345 | hw_openbsd_dev_crypto.o: ../../include/openssl/symhacks.h | ||
| 346 | hw_openbsd_dev_crypto.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h | ||
| 347 | hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c | ||
| 348 | hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 349 | hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 350 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 351 | hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 352 | hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 353 | hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 354 | hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 355 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 356 | hw_sureware.o: ../../include/openssl/opensslconf.h | ||
| 357 | hw_sureware.o: ../../include/openssl/opensslv.h | ||
| 358 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 359 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 360 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 361 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 362 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 363 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 364 | hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h | ||
| 365 | hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h | ||
| 366 | hw_sureware.o: vendor_defns/sureware.h | ||
| 367 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 368 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 369 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 370 | hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 371 | hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 372 | hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 373 | hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 374 | hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 375 | hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 376 | hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 377 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 378 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | ||
| 379 | hw_ubsec.o: vendor_defns/hw_ubsec.h | ||
| 380 | tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 381 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 382 | tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 383 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 384 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 385 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 386 | tb_cipher.o: ../../include/openssl/objects.h | ||
| 387 | tb_cipher.o: ../../include/openssl/opensslconf.h | ||
| 388 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 389 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 390 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 391 | tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 392 | tb_cipher.o: eng_int.h tb_cipher.c | ||
| 393 | tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 394 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 395 | tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 396 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 397 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 398 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 399 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 400 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 401 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 402 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 403 | tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 404 | tb_dh.o: tb_dh.c | ||
| 405 | tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 406 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 407 | tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 408 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 409 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 410 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 411 | tb_digest.o: ../../include/openssl/objects.h | ||
| 412 | tb_digest.o: ../../include/openssl/opensslconf.h | ||
| 413 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 414 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 415 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 416 | tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 417 | tb_digest.o: eng_int.h tb_digest.c | ||
| 418 | tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 419 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 420 | tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 421 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 422 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 423 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 424 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 425 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 426 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 427 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 428 | tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 429 | tb_dsa.o: tb_dsa.c | ||
| 430 | tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 431 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 432 | tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 433 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 434 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 435 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 436 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 437 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 438 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 439 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 440 | tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 441 | tb_rand.o: eng_int.h tb_rand.c | ||
| 442 | tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 443 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 444 | tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 445 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 446 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 447 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 448 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 449 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 450 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 451 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 452 | tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 453 | tb_rsa.o: tb_rsa.c | ||
diff --git a/src/lib/libcrypto/err/Makefile.ssl b/src/lib/libcrypto/err/Makefile.ssl index 57c87eb041..2946c00ead 100644 --- a/src/lib/libcrypto/err/Makefile.ssl +++ b/src/lib/libcrypto/err/Makefile.ssl | |||
| @@ -5,11 +5,14 @@ | |||
| 5 | DIR= err | 5 | DIR= err |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,45 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 83 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 84 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | ||
| 88 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 89 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 90 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 91 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 92 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 93 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h | ||
| 94 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 95 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 96 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 97 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 98 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h | ||
| 99 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 100 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 101 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 102 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 104 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 105 | err_all.o: err_all.c | ||
| 106 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 107 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 110 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 111 | err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | err_prn.o: ../cryptlib.h err_prn.c | ||
diff --git a/src/lib/libcrypto/evp/Makefile.ssl b/src/lib/libcrypto/evp/Makefile.ssl index 8bf2516458..3902ca0a18 100644 --- a/src/lib/libcrypto/evp/Makefile.ssl +++ b/src/lib/libcrypto/evp/Makefile.ssl | |||
| @@ -5,52 +5,46 @@ | |||
| 5 | DIR= evp | 5 | DIR= evp |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=evp | ||
| 19 | ERRC=evp_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST=evp_test.c |
| 23 | TESTDATA=evptests.txt | ||
| 22 | APPS= | 24 | APPS= |
| 23 | 25 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c \ | 27 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ |
| 26 | e_ecb_d.c e_cbc_d.c e_cfb_d.c e_ofb_d.c \ | 28 | e_des.c e_bf.c e_idea.c e_des3.c \ |
| 27 | e_ecb_i.c e_cbc_i.c e_cfb_i.c e_ofb_i.c \ | 29 | e_rc4.c e_aes.c names.c \ |
| 28 | e_ecb_3d.c e_cbc_3d.c e_rc4.c names.c \ | 30 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ |
| 29 | e_cfb_3d.c e_ofb_3d.c e_xcbc_d.c \ | 31 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ |
| 30 | e_ecb_r2.c e_cbc_r2.c e_cfb_r2.c e_ofb_r2.c \ | 32 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \ |
| 31 | e_ecb_bf.c e_cbc_bf.c e_cfb_bf.c e_ofb_bf.c \ | ||
| 32 | e_ecb_c.c e_cbc_c.c e_cfb_c.c e_ofb_c.c \ | ||
| 33 | e_ecb_r5.c e_cbc_r5.c e_cfb_r5.c e_ofb_r5.c \ | ||
| 34 | m_null.c m_md2.c m_md5.c m_sha.c m_sha1.c m_dss.c m_dss1.c m_mdc2.c \ | ||
| 35 | m_ripemd.c \ | ||
| 36 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ | 33 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ |
| 37 | bio_md.c bio_b64.c bio_enc.c $(ERRC).c e_null.c \ | 34 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ |
| 38 | c_all.c evp_lib.c | 35 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ |
| 39 | 36 | evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c | |
| 40 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o \ | 37 | |
| 41 | e_ecb_d.o e_cbc_d.o e_cfb_d.o e_ofb_d.o \ | 38 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ |
| 42 | e_ecb_i.o e_cbc_i.o e_cfb_i.o e_ofb_i.o \ | 39 | e_des.o e_bf.o e_idea.o e_des3.o \ |
| 43 | e_ecb_3d.o e_cbc_3d.o e_rc4.o names.o \ | 40 | e_rc4.o e_aes.o names.o \ |
| 44 | e_cfb_3d.o e_ofb_3d.o e_xcbc_d.o \ | 41 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ |
| 45 | e_ecb_r2.o e_cbc_r2.o e_cfb_r2.o e_ofb_r2.o \ | 42 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ |
| 46 | e_ecb_bf.o e_cbc_bf.o e_cfb_bf.o e_ofb_bf.o \ | 43 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \ |
| 47 | e_ecb_c.o e_cbc_c.o e_cfb_c.o e_ofb_c.o \ | ||
| 48 | e_ecb_r5.o e_cbc_r5.o e_cfb_r5.o e_ofb_r5.o \ | ||
| 49 | m_null.o m_md2.o m_md5.o m_sha.o m_sha1.o m_dss.o m_dss1.o m_mdc2.o \ | ||
| 50 | m_ripemd.o \ | ||
| 51 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ | 44 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ |
| 52 | bio_md.o bio_b64.o bio_enc.o $(ERRC).o e_null.o \ | 45 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ |
| 53 | c_all.o evp_lib.o | 46 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ |
| 47 | evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o | ||
| 54 | 48 | ||
| 55 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
| 56 | 50 | ||
| @@ -66,24 +60,24 @@ all: lib | |||
| 66 | 60 | ||
| 67 | lib: $(LIBOBJ) | 61 | lib: $(LIBOBJ) |
| 68 | $(AR) $(LIB) $(LIBOBJ) | 62 | $(AR) $(LIB) $(LIBOBJ) |
| 69 | sh $(TOP)/util/ranlib.sh $(LIB) | 63 | $(RANLIB) $(LIB) || echo Never mind. |
| 70 | @touch lib | 64 | @touch lib |
| 71 | 65 | ||
| 72 | files: | 66 | files: |
| 73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 67 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 74 | 68 | ||
| 75 | links: | 69 | links: |
| 76 | /bin/rm -f Makefile | 70 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 71 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TESTDATA) |
| 80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 81 | 75 | ||
| 82 | install: | 76 | install: |
| 83 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
| 84 | do \ | 78 | do \ |
| 85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 87 | done; | 81 | done; |
| 88 | 82 | ||
| 89 | tags: | 83 | tags: |
| @@ -95,17 +89,574 @@ lint: | |||
| 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 96 | 90 | ||
| 97 | depend: | 91 | depend: |
| 98 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 99 | 93 | ||
| 100 | dclean: | 94 | dclean: |
| 101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 102 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
| 103 | 97 | ||
| 104 | clean: | 98 | clean: |
| 105 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 106 | |||
| 107 | errors: | ||
| 108 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 109 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 110 | 100 | ||
| 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | |||
| 103 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 104 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 105 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 106 | bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 107 | bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 108 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 109 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 110 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 111 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | bio_b64.o: ../cryptlib.h bio_b64.c | ||
| 113 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 118 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 119 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 120 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 121 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | bio_enc.o: ../cryptlib.h bio_enc.c | ||
| 123 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 124 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 125 | bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 126 | bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 127 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 128 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 129 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 130 | bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 131 | bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c | ||
| 132 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 133 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 134 | bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 135 | bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 136 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 137 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 138 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 139 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 140 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 141 | bio_ok.o: ../cryptlib.h bio_ok.c | ||
| 142 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 143 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 144 | c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 145 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 146 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 147 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 148 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 149 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 150 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c | ||
| 151 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 152 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 153 | c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 154 | c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 155 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 156 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 157 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 158 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 159 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 160 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 161 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 162 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 163 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | ||
| 164 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 165 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 166 | c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 167 | c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 168 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 169 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 170 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 171 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 172 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 173 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 174 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 175 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 176 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | ||
| 177 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 178 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 179 | digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 180 | digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 181 | digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 182 | digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 183 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 184 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 185 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 186 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 187 | digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c | ||
| 189 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 190 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 191 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 192 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 193 | e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 194 | e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 195 | e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 196 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 197 | e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h | ||
| 198 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 199 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 200 | e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 201 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 202 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 203 | e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 204 | e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 205 | e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 206 | e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 207 | e_bf.o: ../cryptlib.h e_bf.c evp_locl.h | ||
| 208 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 209 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 210 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 211 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 212 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 213 | e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 214 | e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 215 | e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 216 | e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | e_cast.o: ../cryptlib.h e_cast.c evp_locl.h | ||
| 218 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 219 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 220 | e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 221 | e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 222 | e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 223 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 224 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 225 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 226 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 227 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 228 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | ||
| 229 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 230 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 231 | e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 232 | e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 233 | e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 234 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 235 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 236 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 237 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 238 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 239 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | ||
| 240 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 241 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 242 | e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 243 | e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 244 | e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 245 | e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 246 | e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 247 | e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 248 | e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | e_idea.o: ../cryptlib.h e_idea.c evp_locl.h | ||
| 250 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 251 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 252 | e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 253 | e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 254 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 255 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 256 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 257 | e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 258 | e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c | ||
| 259 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 260 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 261 | e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 262 | e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 263 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 264 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 265 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 266 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | ||
| 267 | e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 268 | e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h | ||
| 269 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 270 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 271 | e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 272 | e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 273 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 274 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 275 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 276 | e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | ||
| 277 | e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 278 | e_rc4.o: ../cryptlib.h e_rc4.c | ||
| 279 | e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 280 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 281 | e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 282 | e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 283 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 284 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 285 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 286 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h | ||
| 287 | e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 288 | e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h | ||
| 289 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 290 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 291 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 292 | e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 293 | e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 294 | e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 295 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 296 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | ||
| 297 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 298 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 299 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 300 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | ||
| 301 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 302 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 303 | encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 304 | encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 305 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 306 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 307 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 308 | encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 309 | encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c | ||
| 310 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 311 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 312 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 313 | evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 314 | evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 315 | evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 316 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 317 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 318 | evp_acnf.o: ../../include/openssl/opensslconf.h | ||
| 319 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 320 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 321 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 322 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 323 | evp_acnf.o: ../cryptlib.h evp_acnf.c | ||
| 324 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 325 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 326 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 327 | evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 328 | evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 329 | evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 330 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 331 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 332 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 333 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 334 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 335 | evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 336 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | ||
| 337 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 338 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 339 | evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 340 | evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 341 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 342 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 343 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 344 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 345 | evp_err.o: evp_err.c | ||
| 346 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 347 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 348 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 349 | evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 350 | evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 351 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 352 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 353 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 354 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 355 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 356 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 357 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 358 | evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 359 | evp_key.o: ../cryptlib.h evp_key.c | ||
| 360 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 361 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 362 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 363 | evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 364 | evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 365 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 366 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 367 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 368 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 369 | evp_lib.o: ../cryptlib.h evp_lib.c | ||
| 370 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 371 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 372 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 373 | evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 374 | evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 375 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 376 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 377 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 378 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 379 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 380 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 381 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 382 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | ||
| 383 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 384 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 385 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 386 | evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 387 | evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 388 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 389 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 390 | evp_pkey.o: ../../include/openssl/opensslconf.h | ||
| 391 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 392 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 393 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 394 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 395 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 396 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | ||
| 397 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 398 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 399 | m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 400 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 401 | m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 402 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 403 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 404 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 405 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 406 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 407 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 408 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 409 | m_dss.o: ../cryptlib.h m_dss.c | ||
| 410 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 411 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 412 | m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 413 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 414 | m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 415 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 416 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 417 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 418 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 419 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 420 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 421 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 422 | m_dss1.o: ../cryptlib.h m_dss1.c | ||
| 423 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 424 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 425 | m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 426 | m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 427 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 428 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 429 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 430 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 431 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 432 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 433 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 434 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 435 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c | ||
| 436 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 437 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 438 | m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 439 | m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 440 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 441 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h | ||
| 442 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 443 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 444 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 445 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 446 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 447 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 448 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c | ||
| 449 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 450 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 451 | m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 452 | m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 453 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 454 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h | ||
| 455 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 456 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 457 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 458 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 459 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 460 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 461 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c | ||
| 462 | m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 463 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 464 | m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 465 | m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 466 | m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 467 | m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 468 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
| 469 | m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 470 | m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 471 | m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 472 | m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 473 | m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 474 | m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 475 | m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 476 | m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c | ||
| 477 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 478 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 479 | m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 480 | m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 481 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 482 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 483 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 484 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 485 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 486 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 487 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 488 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 489 | m_null.o: ../cryptlib.h m_null.c | ||
| 490 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 491 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 492 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 493 | m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 494 | m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 495 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 496 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 497 | m_ripemd.o: ../../include/openssl/opensslconf.h | ||
| 498 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 499 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h | ||
| 500 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 501 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 502 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 503 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c | ||
| 504 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 505 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 506 | m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 507 | m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 508 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 509 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 510 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 511 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 512 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 513 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 514 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 515 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 516 | m_sha.o: ../cryptlib.h m_sha.c | ||
| 517 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 518 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 519 | m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 520 | m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 521 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 522 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 523 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 524 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 525 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 526 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 527 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 528 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 529 | m_sha1.o: ../cryptlib.h m_sha1.c | ||
| 530 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 531 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 532 | names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 533 | names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 534 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 535 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 536 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 537 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 538 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 539 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 540 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 541 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 542 | names.o: ../cryptlib.h names.c | ||
| 543 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 544 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 545 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 546 | p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 547 | p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 548 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 549 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 550 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 551 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 552 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 553 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 554 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 555 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | ||
| 556 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 557 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 558 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 559 | p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 560 | p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 561 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
| 562 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 563 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 564 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 565 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 566 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 567 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 568 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 569 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | ||
| 570 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 571 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 572 | p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 573 | p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 574 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 575 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 576 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 577 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 578 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 579 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 580 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 581 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 582 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | ||
| 583 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 584 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 585 | p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 586 | p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 587 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 588 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 589 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 590 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 591 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 592 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 593 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 594 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 595 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | ||
| 596 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 597 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 598 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 599 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 600 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 601 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 602 | p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 603 | p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 604 | p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 605 | p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 606 | p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 607 | p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 608 | p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 609 | p_lib.o: ../cryptlib.h p_lib.c | ||
| 610 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 611 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 612 | p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 613 | p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 614 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 615 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 616 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 617 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 618 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 619 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 620 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 621 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 622 | p_open.o: ../cryptlib.h p_open.c | ||
| 623 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 624 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 625 | p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 626 | p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 627 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 628 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 629 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 630 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 631 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 632 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 633 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 634 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 635 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | ||
| 636 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 637 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 638 | p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 639 | p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 640 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 641 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 642 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 643 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 644 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 645 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 646 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 647 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 648 | p_sign.o: ../cryptlib.h p_sign.c | ||
| 649 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 650 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 651 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 652 | p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 653 | p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 654 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 655 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 656 | p_verify.o: ../../include/openssl/opensslconf.h | ||
| 657 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 658 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 659 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 660 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 661 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 662 | p_verify.o: ../cryptlib.h p_verify.c | ||
diff --git a/src/lib/libcrypto/hmac/Makefile.ssl b/src/lib/libcrypto/hmac/Makefile.ssl index 7a042b7261..e6cf1a0879 100644 --- a/src/lib/libcrypto/hmac/Makefile.ssl +++ b/src/lib/libcrypto/hmac/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,22 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 83 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 84 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 85 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h | ||
| 86 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 87 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 88 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 89 | hmac.o: ../../include/openssl/symhacks.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile.ssl b/src/lib/libcrypto/idea/Makefile.ssl index 41b42ce03b..a3ac920371 100644 --- a/src/lib/libcrypto/idea/Makefile.ssl +++ b/src/lib/libcrypto/idea/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,24 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 83 | i_cbc.o: i_cbc.c idea_lcl.h | ||
| 84 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 85 | i_cfb64.o: i_cfb64.c idea_lcl.h | ||
| 86 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.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 | ||
| 89 | i_ofb64.o: i_ofb64.c idea_lcl.h | ||
| 90 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 91 | i_skey.o: i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libcrypto/lhash/Makefile.ssl b/src/lib/libcrypto/lhash/Makefile.ssl index cb08547b4f..a6851bcd36 100644 --- a/src/lib/libcrypto/lhash/Makefile.ssl +++ b/src/lib/libcrypto/lhash/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,26 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | lh_stats.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | lh_stats.o: ../cryptlib.h lh_stats.c | ||
| 89 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 90 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
| 91 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 92 | lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 93 | lhash.o: ../../include/openssl/symhacks.h lhash.c | ||
diff --git a/src/lib/libcrypto/md2/Makefile.ssl b/src/lib/libcrypto/md2/Makefile.ssl index d8e7200c83..cd4f42f2ed 100644 --- a/src/lib/libcrypto/md2/Makefile.ssl +++ b/src/lib/libcrypto/md2/Makefile.ssl | |||
| @@ -2,14 +2,17 @@ | |||
| 2 | # SSLeay/crypto/md/Makefile | 2 | # SSLeay/crypto/md/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= md | 5 | DIR= md2 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -20,7 +23,7 @@ TEST=md2test.c | |||
| 20 | APPS= | 23 | APPS= |
| 21 | 24 | ||
| 22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 23 | LIBSRC=md2_dgst.c md5_one.c | 26 | LIBSRC=md2_dgst.c md2_one.c |
| 24 | LIBOBJ=md2_dgst.o md2_one.o | 27 | LIBOBJ=md2_dgst.o md2_one.o |
| 25 | 28 | ||
| 26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,23 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | ||
| 83 | md2_dgst.o: ../../include/openssl/opensslv.h md2_dgst.c | ||
| 84 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 85 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 86 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 87 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 88 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 89 | md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 90 | md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c | ||
diff --git a/src/lib/libcrypto/md4/Makefile.ssl b/src/lib/libcrypto/md4/Makefile.ssl index 5341bf5b46..12eee13608 100644 --- a/src/lib/libcrypto/md4/Makefile.ssl +++ b/src/lib/libcrypto/md4/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 | ||
| @@ -40,7 +41,7 @@ all: lib | |||
| 40 | 41 | ||
| 41 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | $(RANLIB) $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 45 | @touch lib |
| 45 | 46 | ||
| 46 | files: | 47 | files: |
| @@ -79,6 +80,9 @@ clean: | |||
| 79 | 80 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | 82 | ||
| 82 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 83 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
| 83 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_locl.h | 84 | md4_dgst.o: ../../include/openssl/opensslconf.h |
| 84 | md4_one.o: ../../include/openssl/md4.h | 85 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
| 86 | md4_dgst.o: md4_locl.h | ||
| 87 | md4_one.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h | ||
| 88 | md4_one.o: ../../include/openssl/opensslconf.h md4_one.c | ||
diff --git a/src/lib/libcrypto/md5/Makefile.ssl b/src/lib/libcrypto/md5/Makefile.ssl index 47e1ce05ca..fd0d63c339 100644 --- a/src/lib/libcrypto/md5/Makefile.ssl +++ b/src/lib/libcrypto/md5/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -18,9 +21,17 @@ MD5_ASM_OBJ= | |||
| 18 | 21 | ||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 20 | 23 | ||
| 24 | # We let the C compiler driver to take care of .s files. This is done in | ||
| 25 | # order to be excused from maintaining a separate set of architecture | ||
| 26 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
| 27 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
| 28 | # and pass it down to assembler. | ||
| 29 | AS=$(CC) -c | ||
| 30 | ASFLAGS=$(CFLAGS) | ||
| 31 | |||
| 21 | GENERAL=Makefile | 32 | GENERAL=Makefile |
| 22 | TEST=md5test.c | 33 | TEST=md5test.c |
| 23 | APPS=md5.c | 34 | APPS= |
| 24 | 35 | ||
| 25 | LIB=$(TOP)/libcrypto.a | 36 | LIB=$(TOP)/libcrypto.a |
| 26 | LIBSRC=md5_dgst.c md5_one.c | 37 | LIBSRC=md5_dgst.c md5_one.c |
| @@ -40,12 +51,12 @@ all: lib | |||
| 40 | 51 | ||
| 41 | lib: $(LIBOBJ) | 52 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 53 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 54 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 55 | @touch lib |
| 45 | 56 | ||
| 46 | # elf | 57 | # elf |
| 47 | asm/mx86-elf.o: asm/mx86unix.cpp | 58 | asm/mx86-elf.o: asm/mx86unix.cpp |
| 48 | $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o | 59 | $(CPP) -DELF -x c asm/mx86unix.cpp | as -o asm/mx86-elf.o |
| 49 | 60 | ||
| 50 | # solaris | 61 | # solaris |
| 51 | asm/mx86-sol.o: asm/mx86unix.cpp | 62 | asm/mx86-sol.o: asm/mx86unix.cpp |
| @@ -59,26 +70,43 @@ asm/mx86-out.o: asm/mx86unix.cpp | |||
| 59 | 70 | ||
| 60 | # bsdi | 71 | # bsdi |
| 61 | asm/mx86bsdi.o: asm/mx86unix.cpp | 72 | asm/mx86bsdi.o: asm/mx86unix.cpp |
| 62 | $(CPP) -DBSDI asm/mx86unix.cpp | as -o asm/mx86bsdi.o | 73 | $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o |
| 74 | |||
| 75 | asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl | ||
| 76 | (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp) | ||
| 77 | |||
| 78 | asm/md5-sparcv8plus.o: asm/md5-sparcv9.S | ||
| 79 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 80 | -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S | ||
| 63 | 81 | ||
| 64 | asm/mx86unix.cpp: | 82 | # Old GNU assembler doesn't understand V9 instructions, so we |
| 65 | (cd asm; perl md5-586.pl cpp >mx86unix.cpp) | 83 | # hire /usr/ccs/bin/as to do the job. Note that option is called |
| 84 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 85 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 86 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 87 | # or upgrade it. | ||
| 88 | asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S | ||
| 89 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \ | ||
| 90 | /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o | ||
| 91 | |||
| 92 | asm/md5-sparcv9.o: asm/md5-sparcv9.S | ||
| 93 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 94 | -o asm/md5-sparcv9.o asm/md5-sparcv9.S | ||
| 66 | 95 | ||
| 67 | files: | 96 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 97 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | 98 | ||
| 70 | links: | 99 | links: |
| 71 | /bin/rm -f Makefile | 100 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 101 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 102 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 103 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 76 | 104 | ||
| 77 | install: | 105 | install: |
| 78 | @for i in $(EXHEADER) ; \ | 106 | @for i in $(EXHEADER) ; \ |
| 79 | do \ | 107 | do \ |
| 80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 108 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 109 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 82 | done; | 110 | done; |
| 83 | 111 | ||
| 84 | tags: | 112 | tags: |
| @@ -90,15 +118,18 @@ lint: | |||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 91 | 119 | ||
| 92 | depend: | 120 | depend: |
| 93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 121 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 94 | 122 | ||
| 95 | dclean: | 123 | dclean: |
| 96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 97 | mv -f Makefile.new $(MAKEFILE) | 125 | mv -f Makefile.new $(MAKEFILE) |
| 98 | 126 | ||
| 99 | clean: | 127 | clean: |
| 100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 128 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 101 | |||
| 102 | errors: | ||
| 103 | 129 | ||
| 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 130 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 131 | |||
| 132 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
| 133 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c | ||
| 134 | md5_dgst.o: md5_locl.h | ||
| 135 | md5_one.o: ../../include/openssl/md5.h md5_one.c | ||
diff --git a/src/lib/libcrypto/mdc2/Makefile.ssl b/src/lib/libcrypto/mdc2/Makefile.ssl index 495a2789a0..19cd3520eb 100644 --- a/src/lib/libcrypto/mdc2/Makefile.ssl +++ b/src/lib/libcrypto/mdc2/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,31 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 85 | mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 86 | mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
| 87 | mdc2_one.o: ../../include/openssl/opensslconf.h | ||
| 88 | mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 89 | mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 90 | mdc2_one.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 91 | mdc2_one.o: ../cryptlib.h mdc2_one.c | ||
| 92 | mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 93 | mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 94 | mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h | ||
| 95 | mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 96 | mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 98 | mdc2dgst.o: mdc2dgst.c | ||
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl index 320523cea1..efe71eeb35 100644 --- a/src/lib/libcrypto/objects/Makefile.ssl +++ b/src/lib/libcrypto/objects/Makefile.ssl | |||
| @@ -5,29 +5,31 @@ | |||
| 5 | DIR= objects | 5 | DIR= objects |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 18 | PERL= perl | ||
| 15 | 19 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 20 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 21 | ||
| 18 | ERR=objects | ||
| 19 | ERRC=obj_err | ||
| 20 | GENERAL=Makefile README | 22 | GENERAL=Makefile README |
| 21 | TEST= | 23 | TEST= |
| 22 | APPS= | 24 | APPS= |
| 23 | 25 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= obj_dat.c obj_lib.c $(ERRC).c | 27 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c |
| 26 | LIBOBJ= obj_dat.o obj_lib.o $(ERRC).o | 28 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o |
| 27 | 29 | ||
| 28 | SRC= $(LIBSRC) | 30 | SRC= $(LIBSRC) |
| 29 | 31 | ||
| 30 | EXHEADER= objects.h | 32 | EXHEADER= objects.h obj_mac.h |
| 31 | HEADER= $(EXHEADER) obj_dat.h | 33 | HEADER= $(EXHEADER) obj_dat.h |
| 32 | 34 | ||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | 35 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -37,29 +39,32 @@ top: | |||
| 37 | 39 | ||
| 38 | all: obj_dat.h lib | 40 | all: obj_dat.h lib |
| 39 | 41 | ||
| 40 | obj_dat.h: objects.h obj_dat.pl | ||
| 41 | perl ./obj_dat.pl < objects.h > obj_dat.h | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 45 | @touch lib |
| 47 | 46 | ||
| 47 | obj_dat.h: obj_dat.pl obj_mac.h | ||
| 48 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
| 49 | |||
| 50 | # objects.pl both reads and writes obj_mac.num | ||
| 51 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
| 52 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
| 53 | |||
| 48 | files: | 54 | files: |
| 49 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 55 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 50 | 56 | ||
| 51 | links: | 57 | links: |
| 52 | /bin/rm -f Makefile | 58 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 53 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 54 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 55 | $(TOP)/util/mklink.sh ../../test $(TEST) | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 56 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 57 | 62 | ||
| 58 | install: | 63 | install: |
| 59 | @for i in $(EXHEADER) ; \ | 64 | @for i in $(EXHEADER) ; \ |
| 60 | do \ | 65 | do \ |
| 61 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 62 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 63 | done; | 68 | done; |
| 64 | 69 | ||
| 65 | tags: | 70 | tags: |
| @@ -71,17 +76,48 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 77 | ||
| 73 | depend: | 78 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 79 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 75 | 80 | ||
| 76 | dclean: | 81 | dclean: |
| 77 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 78 | mv -f Makefile.new $(MAKEFILE) | 83 | mv -f Makefile.new $(MAKEFILE) |
| 79 | 84 | ||
| 80 | clean: | 85 | clean: |
| 81 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 82 | |||
| 83 | errors: | ||
| 84 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 85 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 86 | 87 | ||
| 87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 88 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 89 | |||
| 90 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 91 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 92 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
| 93 | o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 94 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 95 | o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 96 | o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | o_names.o: o_names.c | ||
| 98 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 99 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 100 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 101 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 102 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 103 | obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 104 | obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 105 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 106 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | ||
| 107 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 108 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 109 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 111 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 112 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 113 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | ||
| 115 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 116 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 117 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 118 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 119 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 120 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 121 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 123 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | ||
diff --git a/src/lib/libcrypto/pem/Makefile.ssl b/src/lib/libcrypto/pem/Makefile.ssl index fc04a88fd9..a051b6fecc 100644 --- a/src/lib/libcrypto/pem/Makefile.ssl +++ b/src/lib/libcrypto/pem/Makefile.ssl | |||
| @@ -5,32 +5,33 @@ | |||
| 5 | DIR= pem | 5 | DIR= pem |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=pem | ||
| 19 | ERRC=pem_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | CTX_SIZE= ctx_size | ||
| 25 | |||
| 26 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 27 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c $(ERRC).c | 26 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ |
| 27 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | ||
| 28 | 28 | ||
| 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o $(ERRC).o | 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ |
| 30 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | ||
| 30 | 31 | ||
| 31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| 32 | 33 | ||
| 33 | EXHEADER= pem.h | 34 | EXHEADER= pem.h pem2.h |
| 34 | HEADER= $(EXHEADER) | 35 | HEADER= $(EXHEADER) |
| 35 | 36 | ||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -38,36 +39,27 @@ ALL= $(GENERAL) $(SRC) $(HEADER) | |||
| 38 | top: | 39 | top: |
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 40 | 41 | ||
| 41 | all: pem.h lib | 42 | all: lib |
| 42 | |||
| 43 | pem.h: $(CTX_SIZE) | ||
| 44 | ./$(CTX_SIZE) <pem.org >pem.new | ||
| 45 | if [ -f pem.h ]; then mv -f pem.h pem.old; fi | ||
| 46 | mv -f pem.new pem.h | ||
| 47 | |||
| 48 | $(CTX_SIZE): $(CTX_SIZE).o | ||
| 49 | $(CC) $(CFLAGS) -o $(CTX_SIZE) $(CTX_SIZE).o | ||
| 50 | 43 | ||
| 51 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 52 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 53 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 54 | @touch lib | 47 | @touch lib |
| 55 | 48 | ||
| 56 | files: | 49 | files: |
| 57 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 58 | 51 | ||
| 59 | links: | 52 | links: $(EXHEADER) |
| 60 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 61 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 62 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 63 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 64 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 65 | 57 | ||
| 66 | install: | 58 | install: |
| 67 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
| 68 | do \ | 60 | do \ |
| 69 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 70 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 71 | done; | 63 | done; |
| 72 | 64 | ||
| 73 | tags: | 65 | tags: |
| @@ -79,18 +71,180 @@ lint: | |||
| 79 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 80 | 72 | ||
| 81 | depend: | 73 | depend: |
| 82 | $(MAKEDEPEND) $(INCLUDES) $(CTX_SIZE).c $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 83 | 75 | ||
| 84 | dclean: | 76 | dclean: |
| 85 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 86 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
| 87 | 79 | ||
| 88 | clean: | 80 | clean: |
| 89 | /bin/rm -f $(CTX_SIZE) *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 90 | |||
| 91 | errors: | ||
| 92 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # SPECIAL CASE .org | ||
| 93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 95 | 82 | ||
| 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | |||
| 85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | ||
| 99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 112 | pem_err.o: pem_err.c | ||
| 113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 120 | pem_info.o: ../../include/openssl/opensslconf.h | ||
| 121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 127 | pem_info.o: ../cryptlib.h pem_info.c | ||
| 128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | ||
| 145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 159 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
| 160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | ||
| 175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 182 | pem_pkey.o: ../../include/openssl/opensslconf.h | ||
| 183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | ||
| 191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 198 | pem_seal.o: ../../include/openssl/opensslconf.h | ||
| 199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | ||
| 206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 213 | pem_sign.o: ../../include/openssl/opensslconf.h | ||
| 214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | ||
| 221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 228 | pem_x509.o: ../../include/openssl/opensslconf.h | ||
| 229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 235 | pem_x509.o: ../cryptlib.h pem_x509.c | ||
| 236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 243 | pem_xaux.o: ../../include/openssl/opensslconf.h | ||
| 244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||
diff --git a/src/lib/libcrypto/pkcs12/Makefile.ssl b/src/lib/libcrypto/pkcs12/Makefile.ssl index ebffab657c..cb815db72f 100644 --- a/src/lib/libcrypto/pkcs12/Makefile.ssl +++ b/src/lib/libcrypto/pkcs12/Makefile.ssl | |||
| @@ -1,17 +1,18 @@ | |||
| 1 | # | 1 | # |
| 2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs12/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= pkcs12 | 5 | DIR= pkcs12 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,12 +23,12 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= p12_add.c p12_attr.c p12_bags.c p12_crpt.c p12_crt.c p12_decr.c \ | 26 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ |
| 26 | p12_init.c p12_key.c p12_kiss.c p12_lib.c p12_mac.c p12_mutl.c\ | 27 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ |
| 27 | p12_sbag.c p12_utl.c pk12err.c | 28 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c |
| 28 | LIBOBJ= p12_add.o p12_attr.o p12_bags.o p12_crpt.o p12_crt.o p12_decr.o \ | 29 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ |
| 29 | p12_init.o p12_key.o p12_kiss.o p12_lib.o p12_mac.o p12_mutl.o\ | 30 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ |
| 30 | p12_sbag.o p12_utl.o pk12err.o | 31 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o |
| 31 | 32 | ||
| 32 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
| 33 | 34 | ||
| @@ -45,7 +46,7 @@ all: lib | |||
| 45 | 46 | ||
| 46 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
| 47 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
| 48 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
| 49 | @touch lib | 50 | @touch lib |
| 50 | 51 | ||
| 51 | files: | 52 | files: |
| @@ -84,263 +85,213 @@ clean: | |||
| 84 | 85 | ||
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 86 | 87 | ||
| 87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 88 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h |
| 88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 89 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 90 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 92 | p12_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 92 | p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 93 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 94 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 95 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 95 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 96 | p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 96 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 97 | p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 97 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 98 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 99 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 100 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 98 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 99 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 103 | p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 100 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 104 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 101 | p12_add.o: ../cryptlib.h p12_add.c |
| 105 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 102 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 106 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 103 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 107 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 104 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 105 | p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 106 | p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 107 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 108 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 109 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 110 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 111 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 112 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 113 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 114 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 115 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
| 116 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 118 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 119 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | p12_attr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 120 | p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 110 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 121 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 111 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 122 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 112 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 123 | p12_attr.o: ../../include/openssl/opensslconf.h |
| 113 | p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 124 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 114 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 125 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 115 | p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 126 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 116 | p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 127 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 117 | p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 128 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 118 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c |
| 119 | p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 130 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h |
| 120 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 131 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 121 | p12_bags.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 132 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 122 | p12_bags.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 123 | p12_bags.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 124 | p12_bags.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 125 | p12_bags.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 126 | p12_bags.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 127 | p12_bags.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 128 | p12_bags.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 129 | p12_bags.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 130 | p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 131 | p12_bags.o: ../../include/openssl/opensslconf.h | ||
| 132 | p12_bags.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | ||
| 133 | p12_bags.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 134 | p12_bags.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 135 | p12_bags.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 136 | p12_bags.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 137 | p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 138 | p12_bags.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | ||
| 139 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 140 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 141 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 142 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 143 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 133 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 144 | p12_crpt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 134 | p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 145 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 135 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 146 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 136 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 147 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 137 | p12_crpt.o: ../../include/openssl/opensslconf.h |
| 148 | p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 138 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 149 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 139 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 150 | p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 140 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 151 | p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 141 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 152 | p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 142 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 153 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 143 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c |
| 154 | p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 144 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h |
| 155 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 145 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 156 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 146 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 157 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 158 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 159 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 160 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 147 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 161 | p12_crt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 148 | p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 162 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 149 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 163 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 150 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 164 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 151 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 165 | p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 152 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 166 | p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 153 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 167 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 168 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 169 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 154 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 155 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 172 | p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 156 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 173 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 157 | p12_crt.o: ../cryptlib.h p12_crt.c |
| 174 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 158 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h |
| 175 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 159 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 176 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 160 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 177 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 161 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 178 | p12_decr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 162 | p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 179 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 163 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 180 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 164 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 181 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 165 | p12_decr.o: ../../include/openssl/opensslconf.h |
| 182 | p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 166 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 183 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 167 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 184 | p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 168 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 185 | p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 169 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 186 | p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 170 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 187 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 171 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c |
| 188 | p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 172 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h |
| 189 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 173 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 190 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 174 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 191 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 192 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 193 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 194 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 175 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 195 | p12_init.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 176 | p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 196 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 177 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 197 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 178 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 179 | p12_init.o: ../../include/openssl/opensslconf.h |
| 199 | p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 180 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 200 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 181 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 201 | p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 182 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 202 | p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 183 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 203 | p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 184 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 204 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 185 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c |
| 205 | p12_init.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 186 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h |
| 206 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 187 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 207 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 188 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 208 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 209 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 210 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 211 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 189 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 212 | p12_key.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 190 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 213 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 191 | p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 214 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 192 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 215 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 193 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 216 | p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 194 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 217 | p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 195 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 218 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 219 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 220 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 221 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 196 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 222 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 197 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 223 | p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 198 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 224 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 199 | p12_key.o: ../cryptlib.h p12_key.c |
| 225 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 200 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h |
| 226 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 201 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 227 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 202 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 228 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 203 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 229 | p12_kiss.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 204 | p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 230 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 205 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 231 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 206 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 232 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 207 | p12_kiss.o: ../../include/openssl/opensslconf.h |
| 233 | p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 208 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 234 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 209 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 235 | p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 210 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 236 | p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 211 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 237 | p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 212 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 238 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 213 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c |
| 239 | p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 214 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 240 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 215 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 241 | p12_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 216 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 242 | p12_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 243 | p12_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 244 | p12_lib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 245 | p12_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 246 | p12_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 247 | p12_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 248 | p12_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 249 | p12_lib.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 250 | p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 251 | p12_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 252 | p12_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 253 | p12_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 254 | p12_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 255 | p12_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 256 | p12_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 257 | p12_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 258 | p12_lib.o: ../cryptlib.h | ||
| 259 | p12_mac.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | ||
| 260 | p12_mac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 261 | p12_mac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 262 | p12_mac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 263 | p12_mac.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 264 | p12_mac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 265 | p12_mac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 266 | p12_mac.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 267 | p12_mac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 268 | p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 269 | p12_mac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 270 | p12_mac.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 271 | p12_mac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 272 | p12_mac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 273 | p12_mac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 274 | p12_mac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 275 | p12_mac.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 276 | p12_mac.o: ../cryptlib.h | ||
| 277 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 278 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 279 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 280 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 281 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 217 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 282 | p12_mutl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 218 | p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 283 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 219 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
| 284 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | 220 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 285 | p12_mutl.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 221 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 286 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 222 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 287 | p12_mutl.o: ../../include/openssl/opensslconf.h | 223 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 288 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 224 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 289 | p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 225 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 290 | p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 226 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 291 | p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 292 | p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 293 | p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 294 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 227 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 295 | p12_mutl.o: ../cryptlib.h | 228 | p12_mutl.o: ../cryptlib.h p12_mutl.c |
| 296 | p12_sbag.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 229 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 297 | p12_sbag.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 230 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 298 | p12_sbag.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 231 | p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 299 | p12_sbag.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 232 | p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 300 | p12_sbag.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 233 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 301 | p12_sbag.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 234 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 302 | p12_sbag.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 235 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 303 | p12_sbag.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 236 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 304 | p12_sbag.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 237 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 305 | p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 238 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 306 | p12_sbag.o: ../../include/openssl/opensslconf.h | 239 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 307 | p12_sbag.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 240 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 308 | p12_sbag.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 241 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 309 | p12_sbag.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 242 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c |
| 310 | p12_sbag.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 243 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h |
| 311 | p12_sbag.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 244 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 312 | p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 245 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 313 | p12_sbag.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 246 | p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 314 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 247 | p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 315 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 248 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 316 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 249 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 317 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 250 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 251 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 252 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 253 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 254 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 255 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 256 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
| 257 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 258 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 259 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 260 | p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 261 | p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 262 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 263 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 264 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 265 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 266 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 267 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 268 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 269 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 270 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
| 271 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 272 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 273 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 318 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 274 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 319 | p12_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 275 | p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 320 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 321 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 277 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 322 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 278 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 323 | p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 324 | p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 280 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 325 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 326 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 327 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 328 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 281 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 329 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 282 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 330 | p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 283 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 284 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
| 331 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 285 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 332 | pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 286 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 333 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 287 | pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 334 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 335 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 288 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 336 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 337 | pk12err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 290 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 338 | pk12err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 339 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 291 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 340 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 292 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 341 | pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 293 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 342 | pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 294 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 343 | pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 295 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 344 | pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 296 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 345 | pk12err.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 297 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c |
| 346 | pk12err.o: ../../include/openssl/x509_vfy.h | ||
diff --git a/src/lib/libcrypto/pkcs7/Makefile.ssl b/src/lib/libcrypto/pkcs7/Makefile.ssl index a88359b320..f606abe440 100644 --- a/src/lib/libcrypto/pkcs7/Makefile.ssl +++ b/src/lib/libcrypto/pkcs7/Makefile.ssl | |||
| @@ -1,29 +1,35 @@ | |||
| 1 | # | 1 | # |
| 2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs7/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= pkcs7 | 5 | DIR= pkcs7 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 19 | PEX_LIBS= | ||
| 20 | EX_LIBS= | ||
| 21 | |||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 23 | ||
| 18 | ERR=pkcs7 | ||
| 19 | ERRC=pkcs7err | ||
| 20 | GENERAL=Makefile README | 24 | GENERAL=Makefile README |
| 21 | TEST= | 25 | TEST= |
| 22 | APPS= | 26 | APPS= |
| 23 | 27 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= pk7_lib.c pkcs7err.c pk7_doit.c | 29 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ |
| 26 | LIBOBJ= pk7_lib.o pkcs7err.o pk7_doit.o | 30 | pk7_mime.c |
| 31 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ | ||
| 32 | pk7_mime.o | ||
| 27 | 33 | ||
| 28 | SRC= $(LIBSRC) | 34 | SRC= $(LIBSRC) |
| 29 | 35 | ||
| @@ -39,26 +45,39 @@ test: | |||
| 39 | 45 | ||
| 40 | all: lib | 46 | all: lib |
| 41 | 47 | ||
| 48 | testapps: enc dec sign verify | ||
| 49 | |||
| 50 | enc: enc.o lib | ||
| 51 | $(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 52 | |||
| 53 | dec: dec.o lib | ||
| 54 | $(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 55 | |||
| 56 | sign: sign.o lib | ||
| 57 | $(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 58 | |||
| 59 | verify: verify.o example.o lib | ||
| 60 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) | ||
| 61 | |||
| 42 | lib: $(LIBOBJ) | 62 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 63 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | sh $(TOP)/util/ranlib.sh $(LIB) | 64 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 65 | @touch lib |
| 46 | 66 | ||
| 47 | files: | 67 | files: |
| 48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 68 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 49 | 69 | ||
| 50 | links: | 70 | links: |
| 51 | /bin/rm -f Makefile | 71 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 56 | 75 | ||
| 57 | install: | 76 | install: |
| 58 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
| 59 | do \ | 78 | do \ |
| 60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 62 | done; | 81 | done; |
| 63 | 82 | ||
| 64 | tags: | 83 | tags: |
| @@ -70,17 +89,107 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 90 | ||
| 72 | depend: | 91 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 93 | ||
| 75 | dclean: | 94 | dclean: |
| 76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 77 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
| 78 | 97 | ||
| 79 | clean: | 98 | clean: |
| 80 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify |
| 81 | |||
| 82 | errors: | ||
| 83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 85 | 100 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | |||
| 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 104 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 105 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 106 | pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 107 | pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 108 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 109 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 110 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 111 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 114 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 115 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 116 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | ||
| 117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 118 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 120 | pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 121 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 122 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 123 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 124 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 126 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 127 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 128 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 130 | pk7_attr.o: pk7_attr.c | ||
| 131 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 132 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 133 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 134 | pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 135 | pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 141 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 142 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 143 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 144 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 145 | pk7_doit.o: ../cryptlib.h pk7_doit.c | ||
| 146 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 149 | pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 150 | pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 151 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 152 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 153 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 154 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 155 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 156 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 157 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 158 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | ||
| 159 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 160 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 161 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 162 | pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 163 | pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 164 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 165 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 166 | pk7_mime.o: ../../include/openssl/opensslconf.h | ||
| 167 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 168 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 169 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 170 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 171 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 172 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | ||
| 173 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 174 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 175 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 176 | pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 177 | pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 178 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 179 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 180 | pk7_smime.o: ../../include/openssl/objects.h | ||
| 181 | pk7_smime.o: ../../include/openssl/opensslconf.h | ||
| 182 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 184 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 185 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 186 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 187 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | ||
| 188 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 189 | pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 190 | pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 191 | pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 192 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 193 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 194 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 195 | pkcs7err.o: pkcs7err.c | ||
diff --git a/src/lib/libcrypto/rand/Makefile.ssl b/src/lib/libcrypto/rand/Makefile.ssl index d04f0a9b43..ccf65f0d78 100644 --- a/src/lib/libcrypto/rand/Makefile.ssl +++ b/src/lib/libcrypto/rand/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -20,8 +23,10 @@ TEST= randtest.c | |||
| 20 | APPS= | 23 | APPS= |
| 21 | 24 | ||
| 22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 23 | LIBSRC=md_rand.c randfile.c | 26 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ |
| 24 | LIBOBJ=md_rand.o randfile.o | 27 | rand_win.c rand_unix.c rand_os2.c |
| 28 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ | ||
| 29 | rand_win.o rand_unix.o rand_os2.o | ||
| 25 | 30 | ||
| 26 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
| 27 | 32 | ||
| @@ -37,24 +42,23 @@ all: lib | |||
| 37 | 42 | ||
| 38 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 46 | @touch lib |
| 42 | 47 | ||
| 43 | files: | 48 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 50 | ||
| 46 | links: | 51 | links: |
| 47 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 56 | ||
| 53 | install: | 57 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 59 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 62 | done; |
| 59 | 63 | ||
| 60 | tags: | 64 | tags: |
| @@ -66,15 +70,88 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 71 | ||
| 68 | depend: | 72 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 74 | ||
| 71 | dclean: | 75 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 78 | ||
| 75 | clean: | 79 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 81 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | |||
| 84 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 85 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 86 | md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 87 | md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 88 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 89 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 90 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 91 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 92 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 93 | md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h | ||
| 94 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 95 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 96 | rand_egd.o: rand_egd.c | ||
| 97 | rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 98 | rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 101 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 102 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | rand_err.o: rand_err.c | ||
| 104 | rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 109 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 110 | rand_lib.o: ../../include/openssl/opensslconf.h | ||
| 111 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 113 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 115 | rand_lib.o: ../cryptlib.h rand_lib.c | ||
| 116 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 118 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 119 | rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 120 | rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 121 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 122 | rand_os2.o: ../../include/openssl/opensslconf.h | ||
| 123 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 124 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 125 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 126 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 127 | rand_os2.o: rand_os2.c | ||
| 128 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 132 | rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 133 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 134 | rand_unix.o: ../../include/openssl/opensslconf.h | ||
| 135 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 137 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 138 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 139 | rand_unix.o: rand_unix.c | ||
| 140 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 141 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 142 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 143 | rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 144 | rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 145 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 146 | rand_win.o: ../../include/openssl/opensslconf.h | ||
| 147 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 148 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 149 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 150 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 151 | rand_win.o: rand_win.c | ||
| 152 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h | ||
| 153 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 154 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 155 | randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 156 | randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 157 | randfile.o: randfile.c | ||
diff --git a/src/lib/libcrypto/rc2/Makefile.ssl b/src/lib/libcrypto/rc2/Makefile.ssl index c5138f13e2..c233b0fa0c 100644 --- a/src/lib/libcrypto/rc2/Makefile.ssl +++ b/src/lib/libcrypto/rc2/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,24 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 83 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | ||
| 84 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 85 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h | ||
| 86 | rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 87 | rc2_skey.o: rc2_locl.h rc2_skey.c | ||
| 88 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 89 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | ||
| 90 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 91 | rc2ofb64.o: rc2_locl.h rc2ofb64.c | ||
diff --git a/src/lib/libcrypto/rc4/Makefile.ssl b/src/lib/libcrypto/rc4/Makefile.ssl index 19c1e980f3..5214e512fc 100644 --- a/src/lib/libcrypto/rc4/Makefile.ssl +++ b/src/lib/libcrypto/rc4/Makefile.ssl | |||
| @@ -5,11 +5,15 @@ | |||
| 5 | DIR= rc4 | 5 | DIR= rc4 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | ||
| 8 | INCLUDES= | 9 | INCLUDES= |
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| @@ -44,12 +48,12 @@ all: lib | |||
| 44 | 48 | ||
| 45 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
| 46 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
| 47 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
| 48 | @touch lib | 52 | @touch lib |
| 49 | 53 | ||
| 50 | # elf | 54 | # elf |
| 51 | asm/rx86-elf.o: asm/rx86unix.cpp | 55 | asm/rx86-elf.o: asm/rx86unix.cpp |
| 52 | $(CPP) -DELF asm/rx86unix.cpp | as -o asm/rx86-elf.o | 56 | $(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o |
| 53 | 57 | ||
| 54 | # solaris | 58 | # solaris |
| 55 | asm/rx86-sol.o: asm/rx86unix.cpp | 59 | asm/rx86-sol.o: asm/rx86unix.cpp |
| @@ -63,26 +67,25 @@ asm/rx86-out.o: asm/rx86unix.cpp | |||
| 63 | 67 | ||
| 64 | # bsdi | 68 | # bsdi |
| 65 | asm/rx86bsdi.o: asm/rx86unix.cpp | 69 | asm/rx86bsdi.o: asm/rx86unix.cpp |
| 66 | $(CPP) -DBSDI asm/rx86unix.cpp | as -o asm/rx86bsdi.o | 70 | $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o |
| 67 | 71 | ||
| 68 | asm/rx86unix.cpp: | 72 | asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl |
| 69 | (cd asm; perl rc4-586.pl cpp >rx86unix.cpp) | 73 | (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp) |
| 70 | 74 | ||
| 71 | files: | 75 | files: |
| 72 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 73 | 77 | ||
| 74 | links: | 78 | links: |
| 75 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 76 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 77 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 78 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 79 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 80 | 83 | ||
| 81 | install: | 84 | install: |
| 82 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
| 83 | do \ | 86 | do \ |
| 84 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 85 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 86 | done; | 89 | done; |
| 87 | 90 | ||
| 88 | tags: | 91 | tags: |
| @@ -94,15 +97,19 @@ lint: | |||
| 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 95 | 98 | ||
| 96 | depend: | 99 | depend: |
| 97 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 98 | 101 | ||
| 99 | dclean: | 102 | dclean: |
| 100 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 101 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
| 102 | 105 | ||
| 103 | clean: | 106 | clean: |
| 104 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 107 | rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
| 105 | |||
| 106 | errors: | ||
| 107 | 108 | ||
| 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 110 | |||
| 111 | rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h | ||
| 112 | rc4_enc.o: rc4_enc.c rc4_locl.h | ||
| 113 | rc4_skey.o: ../../include/openssl/opensslconf.h | ||
| 114 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | ||
| 115 | rc4_skey.o: rc4_locl.h rc4_skey.c | ||
diff --git a/src/lib/libcrypto/rc5/Makefile.ssl b/src/lib/libcrypto/rc5/Makefile.ssl index 5e98ee2348..10deca5ace 100644 --- a/src/lib/libcrypto/rc5/Makefile.ssl +++ b/src/lib/libcrypto/rc5/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -42,12 +45,12 @@ all: lib | |||
| 42 | 45 | ||
| 43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 49 | @touch lib |
| 47 | 50 | ||
| 48 | # elf | 51 | # elf |
| 49 | asm/r586-elf.o: asm/r586unix.cpp | 52 | asm/r586-elf.o: asm/r586unix.cpp |
| 50 | $(CPP) -DELF asm/r586unix.cpp | as -o asm/r586-elf.o | 53 | $(CPP) -DELF -x c asm/r586unix.cpp | as -o asm/r586-elf.o |
| 51 | 54 | ||
| 52 | # solaris | 55 | # solaris |
| 53 | asm/r586-sol.o: asm/r586unix.cpp | 56 | asm/r586-sol.o: asm/r586unix.cpp |
| @@ -61,27 +64,25 @@ asm/r586-out.o: asm/r586unix.cpp | |||
| 61 | 64 | ||
| 62 | # bsdi | 65 | # bsdi |
| 63 | asm/r586bsdi.o: asm/r586unix.cpp | 66 | asm/r586bsdi.o: asm/r586unix.cpp |
| 64 | $(CPP) -DBSDI asm/r586unix.cpp | as -o asm/r586bsdi.o | 67 | $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o |
| 65 | 68 | ||
| 66 | asm/r586unix.cpp: | 69 | asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 67 | (cd asm; perl rc5-586.pl cpp >r586unix.cpp) | 70 | (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp) |
| 68 | 71 | ||
| 69 | files: | 72 | files: |
| 70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 71 | 74 | ||
| 72 | links: | 75 | links: |
| 73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 75 | $(TOP)/util/point.sh ../../doc/rc5.doc rc5.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 77 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 79 | 80 | ||
| 80 | install: | 81 | install: |
| 81 | @for i in $(EXHEADER) ; \ | 82 | @for i in $(EXHEADER) ; \ |
| 82 | do \ | 83 | do \ |
| 83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 84 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 85 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 85 | done; | 86 | done; |
| 86 | 87 | ||
| 87 | tags: | 88 | tags: |
| @@ -93,15 +94,20 @@ lint: | |||
| 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 94 | 95 | ||
| 95 | depend: | 96 | depend: |
| 96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 97 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 97 | 98 | ||
| 98 | dclean: | 99 | dclean: |
| 99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 100 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 100 | mv -f Makefile.new $(MAKEFILE) | 101 | mv -f Makefile.new $(MAKEFILE) |
| 101 | 102 | ||
| 102 | clean: | 103 | clean: |
| 103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 104 | rm -f asm/r586unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 104 | |||
| 105 | errors: | ||
| 106 | 105 | ||
| 107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 107 | |||
| 108 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | ||
| 109 | rc5_ecb.o: rc5_ecb.c 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 rc5_skey.c | ||
| 112 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c | ||
| 113 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c | ||
diff --git a/src/lib/libcrypto/rc5/asm/rc5-586.pl b/src/lib/libcrypto/rc5/asm/rc5-586.pl index 172bd9ee1b..edff1d1e64 100644 --- a/src/lib/libcrypto/rc5/asm/rc5-586.pl +++ b/src/lib/libcrypto/rc5/asm/rc5-586.pl | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #!/usr/bin/perl | 1 | #!/usr/local/bin/perl |
| 2 | 2 | ||
| 3 | push(@INC,"perlasm","../../perlasm"); | 3 | push(@INC,"perlasm","../../perlasm"); |
| 4 | require "x86asm.pl"; | 4 | require "x86asm.pl"; |
diff --git a/src/lib/libcrypto/ripemd/Makefile.ssl b/src/lib/libcrypto/ripemd/Makefile.ssl index 67d47ceb2c..eb819e64f5 100644 --- a/src/lib/libcrypto/ripemd/Makefile.ssl +++ b/src/lib/libcrypto/ripemd/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -20,7 +23,7 @@ CFLAGS= $(INCLUDES) $(CFLAG) | |||
| 20 | 23 | ||
| 21 | GENERAL=Makefile | 24 | GENERAL=Makefile |
| 22 | TEST=rmdtest.c | 25 | TEST=rmdtest.c |
| 23 | APPS=rmd160.c | 26 | APPS= |
| 24 | 27 | ||
| 25 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
| 26 | LIBSRC=rmd_dgst.c rmd_one.c | 29 | LIBSRC=rmd_dgst.c rmd_one.c |
| @@ -40,12 +43,12 @@ all: lib | |||
| 40 | 43 | ||
| 41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 47 | @touch lib |
| 45 | 48 | ||
| 46 | # elf | 49 | # elf |
| 47 | asm/rm86-elf.o: asm/rm86unix.cpp | 50 | asm/rm86-elf.o: asm/rm86unix.cpp |
| 48 | $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o | 51 | $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o |
| 49 | 52 | ||
| 50 | # solaris | 53 | # solaris |
| 51 | asm/rm86-sol.o: asm/rm86unix.cpp | 54 | asm/rm86-sol.o: asm/rm86unix.cpp |
| @@ -59,26 +62,25 @@ asm/rm86-out.o: asm/rm86unix.cpp | |||
| 59 | 62 | ||
| 60 | # bsdi | 63 | # bsdi |
| 61 | asm/rm86bsdi.o: asm/rm86unix.cpp | 64 | asm/rm86bsdi.o: asm/rm86unix.cpp |
| 62 | $(CPP) -DBSDI asm/rm86unix.cpp | as -o asm/rm86bsdi.o | 65 | $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o |
| 63 | 66 | ||
| 64 | asm/rm86unix.cpp: | 67 | asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl |
| 65 | (cd asm; perl rmd-586.pl cpp >rm86unix.cpp) | 68 | (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp) |
| 66 | 69 | ||
| 67 | files: | 70 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | 72 | ||
| 70 | links: | 73 | links: |
| 71 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 76 | 78 | ||
| 77 | install: | 79 | install: |
| 78 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
| 79 | do \ | 81 | do \ |
| 80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 82 | done; | 84 | done; |
| 83 | 85 | ||
| 84 | tags: | 86 | tags: |
| @@ -90,15 +92,19 @@ lint: | |||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 91 | 93 | ||
| 92 | depend: | 94 | depend: |
| 93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 94 | 96 | ||
| 95 | dclean: | 97 | dclean: |
| 96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 97 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
| 98 | 100 | ||
| 99 | clean: | 101 | clean: |
| 100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 102 | rm -f asm/rm86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 101 | |||
| 102 | errors: | ||
| 103 | 103 | ||
| 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 105 | |||
| 106 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 107 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | ||
| 108 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h | ||
| 109 | rmd_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 110 | rmd_one.o: ../../include/openssl/ripemd.h rmd_one.c | ||
diff --git a/src/lib/libcrypto/rsa/Makefile.ssl b/src/lib/libcrypto/rsa/Makefile.ssl index d52f2e609e..f1e93c2fa3 100644 --- a/src/lib/libcrypto/rsa/Makefile.ssl +++ b/src/lib/libcrypto/rsa/Makefile.ssl | |||
| @@ -5,27 +5,30 @@ | |||
| 5 | DIR= rsa | 5 | DIR= rsa |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=rsa | ||
| 19 | ERRC=rsa_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST=rsa_test.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c $(ERRC).c \ | 26 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ |
| 26 | rsa_pk1.c rsa_ssl.c rsa_none.c | 27 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ |
| 27 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o $(ERRC).o \ | 28 | rsa_asn1.c |
| 28 | rsa_pk1.o rsa_ssl.o rsa_none.o | 29 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ |
| 30 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | ||
| 31 | rsa_asn1.o | ||
| 29 | 32 | ||
| 30 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
| 31 | 34 | ||
| @@ -41,24 +44,23 @@ all: lib | |||
| 41 | 44 | ||
| 42 | lib: $(LIBOBJ) | 45 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 46 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | sh $(TOP)/util/ranlib.sh $(LIB) | 47 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 48 | @touch lib |
| 46 | 49 | ||
| 47 | files: | 50 | files: |
| 48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 49 | 52 | ||
| 50 | links: | 53 | links: |
| 51 | /bin/rm -f Makefile | 54 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 56 | 58 | ||
| 57 | install: | 59 | install: |
| 58 | @for i in $(EXHEADER) ; \ | 60 | @for i in $(EXHEADER) ; \ |
| 59 | do \ | 61 | do \ |
| 60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 62 | done; | 64 | done; |
| 63 | 65 | ||
| 64 | tags: | 66 | tags: |
| @@ -70,17 +72,148 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 73 | ||
| 72 | depend: | 74 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 76 | ||
| 75 | dclean: | 77 | dclean: |
| 76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 77 | mv -f Makefile.new $(MAKEFILE) | 79 | mv -f Makefile.new $(MAKEFILE) |
| 78 | 80 | ||
| 79 | clean: | 81 | clean: |
| 80 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 82 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 81 | |||
| 82 | errors: | ||
| 83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 85 | 83 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 85 | |||
| 86 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 87 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 88 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 89 | rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 90 | rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 91 | rsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 92 | rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 93 | rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 94 | rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 95 | rsa_asn1.o: ../cryptlib.h rsa_asn1.c | ||
| 96 | rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 97 | rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 98 | rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 101 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 102 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | rsa_chk.o: rsa_chk.c | ||
| 104 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | rsa_eay.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 109 | rsa_eay.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 110 | rsa_eay.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 111 | rsa_eay.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 112 | rsa_eay.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 113 | rsa_eay.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 114 | rsa_eay.o: ../../include/openssl/ui.h ../cryptlib.h rsa_eay.c | ||
| 115 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 116 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 117 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 119 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 120 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 121 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | rsa_err.o: rsa_err.c | ||
| 123 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 124 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 125 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 126 | rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 127 | rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 128 | rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 129 | rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 130 | rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 131 | rsa_gen.o: ../cryptlib.h rsa_gen.c | ||
| 132 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 133 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 134 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 135 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 136 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 137 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 138 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 139 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 140 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 141 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 142 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | ||
| 143 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 144 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 145 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 146 | rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 147 | rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 148 | rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 149 | rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 150 | rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 151 | rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c | ||
| 152 | rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 153 | rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 154 | rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 155 | rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 156 | rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 160 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | ||
| 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/opensslconf.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | ||
| 173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 175 | rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 176 | rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 177 | rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 178 | rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | ||
| 182 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 183 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 184 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 185 | rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 186 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 188 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 189 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
| 190 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 191 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 192 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 193 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 194 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 195 | rsa_saos.o: ../cryptlib.h rsa_saos.c | ||
| 196 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 197 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 198 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 199 | rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 200 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 201 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 202 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 203 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 204 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 205 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 206 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 207 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 208 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 209 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 210 | rsa_sign.o: ../cryptlib.h rsa_sign.c | ||
| 211 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 212 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 213 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 214 | rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 215 | rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 216 | rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 217 | rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 218 | rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 219 | rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c | ||
diff --git a/src/lib/libcrypto/sha/Makefile.ssl b/src/lib/libcrypto/sha/Makefile.ssl index eeb545d140..51ba7811c4 100644 --- a/src/lib/libcrypto/sha/Makefile.ssl +++ b/src/lib/libcrypto/sha/Makefile.ssl | |||
| @@ -5,11 +5,15 @@ | |||
| 5 | DIR= sha | 5 | DIR= sha |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | ||
| 8 | INCLUDES= | 9 | INCLUDES= |
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| @@ -39,12 +43,12 @@ all: lib | |||
| 39 | 43 | ||
| 40 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 47 | @touch lib |
| 44 | 48 | ||
| 45 | # elf | 49 | # elf |
| 46 | asm/sx86-elf.o: asm/sx86unix.cpp | 50 | asm/sx86-elf.o: asm/sx86unix.cpp |
| 47 | $(CPP) -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o | 51 | $(CPP) -DELF -x c asm/sx86unix.cpp | as -o asm/sx86-elf.o |
| 48 | 52 | ||
| 49 | # solaris | 53 | # solaris |
| 50 | asm/sx86-sol.o: asm/sx86unix.cpp | 54 | asm/sx86-sol.o: asm/sx86unix.cpp |
| @@ -58,26 +62,25 @@ asm/sx86-out.o: asm/sx86unix.cpp | |||
| 58 | 62 | ||
| 59 | # bsdi | 63 | # bsdi |
| 60 | asm/sx86bsdi.o: asm/sx86unix.cpp | 64 | asm/sx86bsdi.o: asm/sx86unix.cpp |
| 61 | $(CPP) -DBSDI asm/sx86unix.cpp | as -o asm/sx86bsdi.o | 65 | $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o |
| 62 | 66 | ||
| 63 | asm/sx86unix.cpp: | 67 | asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl |
| 64 | (cd asm; perl sha1-586.pl cpp >sx86unix.cpp) | 68 | (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp) |
| 65 | 69 | ||
| 66 | files: | 70 | files: |
| 67 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 68 | 72 | ||
| 69 | links: | 73 | links: |
| 70 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 71 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 72 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 73 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 74 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 75 | 78 | ||
| 76 | install: | 79 | install: |
| 77 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
| 78 | do \ | 81 | do \ |
| 79 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 80 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 81 | done; | 84 | done; |
| 82 | 85 | ||
| 83 | tags: | 86 | tags: |
| @@ -89,15 +92,24 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 93 | ||
| 91 | depend: | 94 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 93 | 96 | ||
| 94 | dclean: | 97 | dclean: |
| 95 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 96 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
| 97 | 100 | ||
| 98 | clean: | 101 | clean: |
| 99 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 102 | rm -f asm/sx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
| 100 | |||
| 101 | errors: | ||
| 102 | 103 | ||
| 103 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 105 | |||
| 106 | sha1_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 107 | sha1_one.o: ../../include/openssl/sha.h sha1_one.c | ||
| 108 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 109 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
| 110 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h | ||
| 111 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 112 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
| 113 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | ||
| 114 | sha_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 115 | sha_one.o: ../../include/openssl/sha.h sha_one.c | ||
diff --git a/src/lib/libcrypto/stack/Makefile.ssl b/src/lib/libcrypto/stack/Makefile.ssl index 0d232c08cf..16219af9a9 100644 --- a/src/lib/libcrypto/stack/Makefile.ssl +++ b/src/lib/libcrypto/stack/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -25,7 +28,7 @@ LIBOBJ=stack.o | |||
| 25 | 28 | ||
| 26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 27 | 30 | ||
| 28 | EXHEADER= stack.h | 31 | EXHEADER= stack.h safestack.h |
| 29 | HEADER= $(EXHEADER) | 32 | HEADER= $(EXHEADER) |
| 30 | 33 | ||
| 31 | ALL= $(GENERAL) $(SRC) $(HEADER) | 34 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,21 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | stack.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | stack.o: ../cryptlib.h stack.c | ||
diff --git a/src/lib/libcrypto/txt_db/Makefile.ssl b/src/lib/libcrypto/txt_db/Makefile.ssl index 76e511534f..f681065da3 100644 --- a/src/lib/libcrypto/txt_db/Makefile.ssl +++ b/src/lib/libcrypto/txt_db/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,21 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | txt_db.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c | ||
diff --git a/src/lib/libcrypto/util/pl/Mingw32f.pl b/src/lib/libcrypto/util/pl/Mingw32f.pl index a53c537646..44f5673d7a 100644 --- a/src/lib/libcrypto/util/pl/Mingw32f.pl +++ b/src/lib/libcrypto/util/pl/Mingw32f.pl | |||
| @@ -11,9 +11,9 @@ $rm='del'; | |||
| 11 | 11 | ||
| 12 | $cc='gcc'; | 12 | $cc='gcc'; |
| 13 | if ($debug) | 13 | if ($debug) |
| 14 | { $cflags="-g2 -ggdb"; } | 14 | { $cflags="-g2 -ggdb -DDSO_WIN32"; } |
| 15 | else | 15 | else |
| 16 | { $cflags="-O3 -fomit-frame-pointer"; } | 16 | { $cflags="-O3 -fomit-frame-pointer -DDSO_WIN32"; } |
| 17 | 17 | ||
| 18 | $obj='.o'; | 18 | $obj='.o'; |
| 19 | $ofile='-o '; | 19 | $ofile='-o '; |
diff --git a/src/lib/libcrypto/x509/Makefile.ssl b/src/lib/libcrypto/x509/Makefile.ssl index 1c1ca2ffa0..3063f448c0 100644 --- a/src/lib/libcrypto/x509/Makefile.ssl +++ b/src/lib/libcrypto/x509/Makefile.ssl | |||
| @@ -5,37 +5,36 @@ | |||
| 5 | DIR= x509 | 5 | DIR= x509 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=x509 | ||
| 19 | ERRC=x509_err | ||
| 20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | 26 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ |
| 26 | x509_obj.c x509_req.c x509_vfy.c \ | 27 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ |
| 27 | x509_set.c x509rset.c $(ERRC).c \ | 28 | x509_set.c x509cset.c x509rset.c x509_err.c \ |
| 28 | x509name.c x509_v3.c x509_ext.c x509pack.c \ | 29 | x509name.c x509_v3.c x509_ext.c x509_att.c \ |
| 29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | 30 | x509type.c x509_lu.c x_all.c x509_txt.c \ |
| 30 | by_file.c by_dir.c \ | 31 | x509_trs.c by_file.c by_dir.c |
| 31 | v3_net.c v3_x509.c | ||
| 32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | 32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ |
| 33 | x509_obj.o x509_req.o x509_vfy.o \ | 33 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ |
| 34 | x509_set.o x509rset.o $(ERRC).o \ | 34 | x509_set.o x509cset.o x509rset.o x509_err.o \ |
| 35 | x509name.o x509_v3.o x509_ext.o x509pack.o \ | 35 | x509name.o x509_v3.o x509_ext.o x509_att.o \ |
| 36 | x509type.o x509_lu.o x_all.o x509_txt.o \ | 36 | x509type.o x509_lu.o x_all.o x509_txt.o \ |
| 37 | by_file.o by_dir.o \ | 37 | x509_trs.o by_file.o by_dir.o |
| 38 | v3_net.o v3_x509.o | ||
| 39 | 38 | ||
| 40 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 41 | 40 | ||
| @@ -51,24 +50,23 @@ all: lib | |||
| 51 | 50 | ||
| 52 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
| 53 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
| 54 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
| 55 | @touch lib | 54 | @touch lib |
| 56 | 55 | ||
| 57 | files: | 56 | files: |
| 58 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 59 | 58 | ||
| 60 | links: | 59 | links: |
| 61 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 62 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 63 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 64 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 65 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 66 | 64 | ||
| 67 | install: | 65 | install: |
| 68 | @for i in $(EXHEADER) ; \ | 66 | @for i in $(EXHEADER) ; \ |
| 69 | do \ | 67 | do \ |
| 70 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 71 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 72 | done; | 70 | done; |
| 73 | 71 | ||
| 74 | tags: | 72 | tags: |
| @@ -80,17 +78,333 @@ lint: | |||
| 80 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 81 | 79 | ||
| 82 | depend: | 80 | depend: |
| 83 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 84 | 82 | ||
| 85 | dclean: | 83 | dclean: |
| 86 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 87 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
| 88 | 86 | ||
| 89 | clean: | 87 | clean: |
| 90 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 91 | |||
| 92 | errors: | ||
| 93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 95 | 89 | ||
| 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | |||
| 92 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 93 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 94 | by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 95 | by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 96 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 97 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 98 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 99 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 100 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 101 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 102 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 104 | by_dir.o: ../cryptlib.h by_dir.c | ||
| 105 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 106 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 107 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 109 | by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 111 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 112 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 113 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 114 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 115 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 116 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 117 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 118 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
| 119 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 120 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 121 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 122 | x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 123 | x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 124 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 125 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 126 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 127 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 128 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 129 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 130 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 131 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 132 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
| 133 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 134 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 135 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 136 | x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 137 | x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 138 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 139 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 140 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 141 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 142 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 143 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 144 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 145 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 146 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
| 147 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 148 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 149 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 151 | x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 152 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 153 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 154 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 155 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 156 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 157 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 158 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 159 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
| 160 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 161 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 162 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 164 | x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | x509_def.o: ../../include/openssl/opensslconf.h | ||
| 168 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 170 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 171 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 172 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 173 | x509_def.o: ../cryptlib.h x509_def.c | ||
| 174 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 175 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 176 | x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 177 | x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 178 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 179 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 180 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 181 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 182 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 183 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 184 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 185 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 186 | x509_err.o: x509_err.c | ||
| 187 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 188 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 189 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 190 | x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 191 | x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 192 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 193 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 194 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 195 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 196 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 197 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 198 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 199 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 200 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
| 201 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 202 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 203 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 204 | x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 205 | x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 206 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 207 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 208 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 209 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 210 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 211 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 212 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 213 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 214 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
| 215 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 216 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 217 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 218 | x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 219 | x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 220 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 221 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 222 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
| 223 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 224 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 225 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 226 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 227 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 228 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
| 229 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 230 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 231 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 232 | x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 233 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 234 | x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 235 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 236 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
| 237 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 238 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 239 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 240 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 241 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 242 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
| 243 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 244 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 245 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 246 | x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 247 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 248 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 249 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 250 | x509_req.o: ../../include/openssl/opensslconf.h | ||
| 251 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 252 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 253 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 254 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 255 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 257 | x509_req.o: ../cryptlib.h x509_req.c | ||
| 258 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 259 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 260 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 261 | x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 262 | x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 263 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 264 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 265 | x509_set.o: ../../include/openssl/opensslconf.h | ||
| 266 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 267 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 268 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 269 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 270 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 271 | x509_set.o: ../cryptlib.h x509_set.c | ||
| 272 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 273 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 274 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 275 | x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 276 | x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 277 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 278 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 279 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 280 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 282 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 283 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 284 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 285 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
| 286 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 287 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 288 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 289 | x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 290 | x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 291 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 292 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 293 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
| 294 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 295 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 296 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 297 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 298 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 299 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
| 300 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 301 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 302 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 303 | x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 304 | x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 305 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 306 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 307 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 308 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 309 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 310 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 311 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 312 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 313 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
| 314 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 315 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 316 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 317 | x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 318 | x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 319 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 320 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 321 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 322 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 323 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 324 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 325 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 326 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 327 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
| 328 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 329 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 330 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 331 | x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 332 | x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 333 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 334 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 335 | x509cset.o: ../../include/openssl/opensslconf.h | ||
| 336 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 337 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 338 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 339 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 340 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 341 | x509cset.o: ../cryptlib.h x509cset.c | ||
| 342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 344 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 345 | x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 346 | x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 349 | x509name.o: ../../include/openssl/opensslconf.h | ||
| 350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 352 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 353 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 354 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 355 | x509name.o: ../cryptlib.h x509name.c | ||
| 356 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 357 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 358 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 359 | x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 360 | x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 363 | x509rset.o: ../../include/openssl/opensslconf.h | ||
| 364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 366 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 367 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 368 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 369 | x509rset.o: ../cryptlib.h x509rset.c | ||
| 370 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 371 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 372 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 373 | x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 374 | x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 375 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 376 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 377 | x509spki.o: ../../include/openssl/opensslconf.h | ||
| 378 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 379 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 380 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 381 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 382 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 383 | x509spki.o: ../cryptlib.h x509spki.c | ||
| 384 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 385 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 386 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 387 | x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 388 | x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 389 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 390 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 391 | x509type.o: ../../include/openssl/opensslconf.h | ||
| 392 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 393 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 394 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 395 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 396 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 397 | x509type.o: ../cryptlib.h x509type.c | ||
| 398 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 399 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 400 | x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 401 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 402 | x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 403 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 404 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 405 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 406 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 407 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 408 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 409 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 410 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509v3/Makefile.ssl b/src/lib/libcrypto/x509v3/Makefile.ssl index 57006e6875..da7c859476 100644 --- a/src/lib/libcrypto/x509v3/Makefile.ssl +++ b/src/lib/libcrypto/x509v3/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= x509v3 | 5 | DIR= x509v3 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,12 +23,14 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c \ | 26 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ |
| 26 | v3_lib.c v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c \ | 27 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ |
| 27 | v3_pku.c v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c | 28 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ |
| 29 | v3_ocsp.c v3_akeya.c | ||
| 28 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ | 30 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ |
| 29 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ | 31 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ |
| 30 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o | 32 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ |
| 33 | v3_ocsp.o v3_akeya.o | ||
| 31 | 34 | ||
| 32 | SRC= $(LIBSRC) | 35 | SRC= $(LIBSRC) |
| 33 | 36 | ||
| @@ -43,7 +46,7 @@ all: lib | |||
| 43 | 46 | ||
| 44 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
| 45 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
| 46 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
| 47 | @touch lib | 50 | @touch lib |
| 48 | 51 | ||
| 49 | files: | 52 | files: |
| @@ -82,351 +85,336 @@ clean: | |||
| 82 | 85 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 87 | ||
| 85 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 88 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h |
| 86 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 89 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 87 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 88 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 91 | v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 89 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 90 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 91 | v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 92 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 94 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 93 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 95 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 94 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 95 | v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 97 | v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 97 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 98 | v3_akey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 98 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 99 | v3_akey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 99 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 100 | v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 100 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 101 | v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 102 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 101 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 103 | v3_akey.o: ../cryptlib.h | 102 | v3_akey.o: ../cryptlib.h v3_akey.c |
| 104 | v3_alt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 103 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h |
| 105 | v3_alt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 104 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 106 | v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 105 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 107 | v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 110 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 111 | v3_akeya.o: ../../include/openssl/opensslconf.h | ||
| 112 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 113 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 114 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 115 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 116 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 117 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | ||
| 118 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 119 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 107 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 120 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 108 | v3_alt.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 121 | v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 110 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 122 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 111 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 123 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 112 | v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 124 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 113 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 125 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 114 | v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 126 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 115 | v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 116 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 117 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 118 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 127 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 119 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 120 | v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 129 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 121 | v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h | 130 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 122 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 131 | v3_alt.o: ../cryptlib.h v3_alt.c |
| 123 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 132 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h |
| 133 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 124 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 134 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 125 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 135 | v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 126 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 127 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 136 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 128 | v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 129 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 138 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 130 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 139 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 131 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 132 | v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 133 | v3_bcons.o: ../../include/openssl/opensslconf.h | 140 | v3_bcons.o: ../../include/openssl/opensslconf.h |
| 134 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 141 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 135 | v3_bcons.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 142 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 136 | v3_bcons.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 143 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 137 | v3_bcons.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 144 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 138 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 139 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 145 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 140 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h | 146 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c |
| 141 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 147 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
| 142 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 148 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 143 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 149 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 144 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 150 | v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 145 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 151 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 146 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 152 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 147 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 153 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 148 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 149 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 150 | v3_bitst.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 154 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 152 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 155 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 153 | v3_bitst.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 156 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 154 | v3_bitst.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 157 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 155 | v3_bitst.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 158 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 156 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 157 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 159 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 158 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h | 160 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c |
| 159 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 161 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h |
| 160 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 162 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 161 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 163 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 162 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 164 | v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 163 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 165 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 164 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 166 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 165 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 166 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 168 | v3_conf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 169 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 168 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 170 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 169 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 171 | v3_conf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 170 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 172 | v3_conf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 171 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 173 | v3_conf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 172 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 174 | v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 175 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 173 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 176 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h | 174 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c |
| 177 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 175 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h |
| 178 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 176 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 179 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 177 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 180 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 178 | v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 181 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 182 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 179 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 183 | v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 180 | v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 184 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 181 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 185 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 182 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 186 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 187 | v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 188 | v3_cpols.o: ../../include/openssl/opensslconf.h | 183 | v3_cpols.o: ../../include/openssl/opensslconf.h |
| 189 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 184 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 190 | v3_cpols.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 185 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 191 | v3_cpols.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 186 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 192 | v3_cpols.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 187 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 193 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 194 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 188 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 195 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h | 189 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c |
| 196 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 190 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h |
| 197 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 191 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 198 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 192 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 199 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 193 | v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 200 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 201 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 202 | v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 195 | v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 203 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 196 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 204 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 197 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 205 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 206 | v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 207 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 198 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 208 | v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 199 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 209 | v3_crld.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 200 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 210 | v3_crld.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 201 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 211 | v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 202 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 212 | v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 213 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 203 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 214 | v3_crld.o: ../cryptlib.h | 204 | v3_crld.o: ../cryptlib.h v3_crld.c |
| 215 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 205 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h |
| 216 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 206 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 217 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 207 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 218 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 208 | v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 219 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 209 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 220 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 210 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 221 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 211 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 222 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 223 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 224 | v3_enum.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 225 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 212 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 226 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 213 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 227 | v3_enum.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 214 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 228 | v3_enum.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 215 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 229 | v3_enum.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 216 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 230 | v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 231 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 217 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 232 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h | 218 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c |
| 233 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 219 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h |
| 234 | v3_extku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 220 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 235 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 221 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 236 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 222 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 237 | v3_extku.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 223 | v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 238 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 239 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 224 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 240 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 225 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 241 | v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 226 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 242 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 227 | v3_extku.o: ../../include/openssl/opensslconf.h |
| 243 | v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 228 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 244 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 229 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 245 | v3_extku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 230 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 246 | v3_extku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 231 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 247 | v3_extku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 248 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 249 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 232 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 250 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h | 233 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c |
| 251 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 234 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 252 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 235 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 253 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 236 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 254 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 237 | v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 255 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 256 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 238 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 257 | v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 239 | v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 258 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 240 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 259 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 241 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 260 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 261 | v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 262 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 242 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 263 | v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 243 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 264 | v3_genn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 244 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 265 | v3_genn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 245 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 266 | v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 246 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 267 | v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 268 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 247 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 269 | v3_genn.o: ../cryptlib.h | 248 | v3_genn.o: ../cryptlib.h v3_genn.c |
| 270 | v3_ia5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 249 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 271 | v3_ia5.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 250 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 272 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 273 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 251 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 274 | v3_ia5.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 252 | v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 275 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 276 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 253 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 277 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 254 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 278 | v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 255 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 279 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 256 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 280 | v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 257 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 281 | v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 282 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 283 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 284 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 258 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 285 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 259 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 286 | v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 260 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 287 | v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h | 261 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 288 | v3_int.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 262 | v3_ia5.o: ../cryptlib.h v3_ia5.c |
| 289 | v3_int.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 263 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h |
| 290 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 264 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 265 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 266 | v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 267 | v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 268 | v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 269 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 270 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 271 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 272 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 273 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 274 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 275 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 276 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 277 | v3_info.o: ../cryptlib.h v3_info.c | ||
| 278 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 279 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 291 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 280 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 292 | v3_int.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 281 | v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 293 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 294 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 282 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 295 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 283 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 296 | v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 284 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 297 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 285 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 298 | v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 286 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 299 | v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 300 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 301 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 302 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 287 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 303 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 288 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 304 | v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 289 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 305 | v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h | 290 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 306 | v3_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 291 | v3_int.o: ../cryptlib.h v3_int.c |
| 307 | v3_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 292 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 308 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 293 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 309 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 294 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 310 | v3_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 295 | v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 311 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 312 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 296 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 313 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 297 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 314 | v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 298 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 315 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 299 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 316 | v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 300 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 317 | v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 318 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 319 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 320 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 301 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 321 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 302 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 322 | v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 303 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 323 | v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h | 304 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 324 | v3_pku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 305 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c |
| 325 | v3_pku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 306 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h |
| 307 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 308 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 309 | v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 310 | v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 311 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 312 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 313 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 314 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 315 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 316 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 317 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 318 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 319 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 320 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | ||
| 321 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 322 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 326 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 323 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 327 | v3_pku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 324 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 328 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 329 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 325 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 330 | v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 326 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 331 | v3_pku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 327 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 332 | v3_pku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 328 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 333 | v3_pku.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 334 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 335 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 329 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 336 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 330 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 337 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 331 | v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 338 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 332 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 339 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 333 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 340 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 341 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 334 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 342 | v3_pku.o: ../cryptlib.h | 335 | v3_pku.o: ../cryptlib.h v3_pku.c |
| 343 | v3_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 336 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 344 | v3_prn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 337 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 345 | v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 346 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 338 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 347 | v3_prn.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 339 | v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 348 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 349 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 340 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 350 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 341 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 351 | v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 342 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 352 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 343 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 353 | v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 344 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 354 | v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 355 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 356 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 357 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 345 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 358 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 346 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 359 | v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 347 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 360 | v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h | 348 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 361 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 349 | v3_prn.o: ../cryptlib.h v3_prn.c |
| 362 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 350 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h |
| 363 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 351 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 364 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 352 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 365 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 353 | v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 366 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 354 | v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 367 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 355 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 368 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 356 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 369 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 357 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 370 | v3_skey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 358 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 359 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 360 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 361 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 362 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 363 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | ||
| 364 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 365 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 366 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 367 | v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 368 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 369 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 370 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 373 | v3_skey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 373 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 374 | v3_skey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 374 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 375 | v3_skey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 375 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 376 | v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 377 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 376 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 378 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h | 377 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c |
| 379 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 378 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h |
| 380 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 379 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 381 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 380 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 382 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 381 | v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 383 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 384 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 382 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 385 | v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 383 | v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 386 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 384 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 387 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 385 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 388 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 389 | v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 390 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 386 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
| 391 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 387 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 392 | v3_sxnet.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 388 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 393 | v3_sxnet.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 389 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 394 | v3_sxnet.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 390 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 395 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 396 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 391 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 397 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h | 392 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c |
| 398 | v3_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 393 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 399 | v3_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 394 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 400 | v3_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 401 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 395 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 402 | v3_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 396 | v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 403 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 404 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 397 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 405 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 398 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 406 | v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 399 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 407 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 400 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 408 | v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 401 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 409 | v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 410 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 411 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 412 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 402 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 413 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 403 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 414 | v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 404 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 415 | v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h | 405 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 406 | v3_utl.o: ../cryptlib.h v3_utl.c | ||
| 416 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 407 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 417 | v3err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 408 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 418 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 409 | v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 419 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 420 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 410 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 421 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 411 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 422 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 412 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 423 | v3err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 413 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 424 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 414 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 425 | v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 415 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 426 | v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 427 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 428 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 429 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 416 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 430 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 417 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 431 | v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 418 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 432 | v3err.o: ../../include/openssl/x509v3.h | 419 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 420 | v3err.o: v3err.c | ||
diff --git a/src/lib/libssl/src/Makefile.ssl b/src/lib/libssl/src/Makefile.ssl index da7f885985..adce7d937a 100644 --- a/src/lib/libssl/src/Makefile.ssl +++ b/src/lib/libssl/src/Makefile.ssl | |||
| @@ -1,36 +1,31 @@ | |||
| 1 | # | 1 | ### Generated automatically from Makefile.org by Configure. |
| 2 | # Makefile for all the SSL related library routines and utilities | 2 | |
| 3 | VERSION = 0.9.0a | 3 | ## |
| 4 | # | 4 | ## Makefile for OpenSSL |
| 5 | # make install will install: | 5 | ## |
| 6 | # libraries into $INSTALLTOP/lib | 6 | |
| 7 | # headers into $INSTALLTOP/include | 7 | VERSION=0.9.7-beta1 |
| 8 | # utilities into $INSTALLTOP/bin | 8 | MAJOR=0 |
| 9 | # | 9 | MINOR=9.7 |
| 10 | # By default INSTALLTOP is set to /usr/local/ssl | 10 | SHLIB_VERSION_NUMBER=0.9.7 |
| 11 | # If you want things install elsewere, consider running | 11 | SHLIB_VERSION_HISTORY= |
| 12 | # perl util/ssldir.pl /new/path | 12 | SHLIB_MAJOR=0 |
| 13 | # | 13 | SHLIB_MINOR=9.7 |
| 14 | # Interesting Mailing Lists: | 14 | SHLIB_EXT= |
| 15 | # ssl-bugs@mincom.oz.au | 15 | PLATFORM=dist |
| 16 | # ssl-users@mincom.oz.au | 16 | OPTIONS= no-krb5 |
| 17 | # | 17 | CONFIGURE_ARGS=dist |
| 18 | # To join the Mailing Lists: | 18 | SHLIB_TARGET= |
| 19 | # ssl-bugs-request@mincom.oz.au | 19 | |
| 20 | # ssl-users-request@mincom.oz.au | 20 | # INSTALL_PREFIX is for package builders so that they can configure |
| 21 | # | 21 | # for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/. |
| 22 | # If you must get hold of people directly (we much prefer the above | 22 | # Normally it is left empty. |
| 23 | # lists to be used if the question is of general interest!): | 23 | INSTALL_PREFIX= |
| 24 | # Eric Young <eay@cryptsoft.com> | 24 | INSTALLTOP=/usr/local/ssl |
| 25 | # Tim Hudson <tjh@cryptsoft.com> | 25 | |
| 26 | # or both <ssleay@cryptsoft.com> | 26 | # Do not edit this manually. Use Configure --openssldir=DIR do change this! |
| 27 | # | 27 | OPENSSLDIR=/usr/local/ssl |
| 28 | # The primary distribution of SSLeay is from | 28 | |
| 29 | # ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL | ||
| 30 | # | ||
| 31 | # NOCONST - Define for C compilers that don't like the const key word. | ||
| 32 | # NOPROTO - Define in if your compiler does not support prototypes. | ||
| 33 | # RSAref - Define if we are to link with RSAref. | ||
| 34 | # NO_IDEA - Define to build without the IDEA algorithm | 29 | # NO_IDEA - Define to build without the IDEA algorithm |
| 35 | # NO_RC4 - Define to build without the RC4 algorithm | 30 | # NO_RC4 - Define to build without the RC4 algorithm |
| 36 | # NO_RC2 - Define to build without the RC2 algorithm | 31 | # NO_RC2 - Define to build without the RC2 algorithm |
| @@ -42,9 +37,7 @@ VERSION = 0.9.0a | |||
| 42 | # DEVRANDOM - Give this the value of the 'random device' if your OS supports | 37 | # DEVRANDOM - Give this the value of the 'random device' if your OS supports |
| 43 | # one. 32 bytes will be read from this when the random | 38 | # one. 32 bytes will be read from this when the random |
| 44 | # number generator is initalised. | 39 | # number generator is initalised. |
| 45 | # SSL_ALLOW_ADH - define if you want the server to be able to use the | 40 | # SSL_FORBID_ENULL - define if you want the server to be not able to use the |
| 46 | # SSLv3 anon-DH ciphers. | ||
| 47 | # SSL_ALLOW_ENULL - define if you want the server to be able to use the | ||
| 48 | # NULL encryption ciphers. | 41 | # NULL encryption ciphers. |
| 49 | # | 42 | # |
| 50 | # LOCK_DEBUG - turns on lots of lock debug output :-) | 43 | # LOCK_DEBUG - turns on lots of lock debug output :-) |
| @@ -57,33 +50,46 @@ VERSION = 0.9.0a | |||
| 57 | # MD5_ASM needs to be defined to use the x86 assembler for MD5 | 50 | # MD5_ASM needs to be defined to use the x86 assembler for MD5 |
| 58 | # SHA1_ASM needs to be defined to use the x86 assembler for SHA1 | 51 | # SHA1_ASM needs to be defined to use the x86 assembler for SHA1 |
| 59 | # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160 | 52 | # RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160 |
| 60 | 53 | # Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must | |
| 61 | 54 | # equal 4. | |
| 62 | CC= gcc | 55 | # PKCS1_CHECK - pkcs1 tests. |
| 63 | #CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DMD5_ASM -DSHA1_ASM -DRMD160_ASM | 56 | |
| 64 | CFLAG= -DNO_IDEA -DTERMIOS -DBN_ASM -DL_ENDIAN -D_ANSI_SOURCE -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM | 57 | CC= cc |
| 65 | PEX_LIBS= -L. -L.. -L../.. -L../../.. | 58 | #CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM |
| 59 | CFLAG= -DOPENSSL_NO_KRB5 -O | ||
| 60 | DEPFLAG= | ||
| 61 | PEX_LIBS= | ||
| 66 | EX_LIBS= | 62 | EX_LIBS= |
| 63 | EXE_EXT= | ||
| 67 | AR=ar r | 64 | AR=ar r |
| 68 | 65 | RANLIB= /usr/bin/ranlib | |
| 69 | # Set BN_MULW to bn_mulw.o if you want to use the C version | 66 | PERL= /usr/bin/perl |
| 70 | BN_MULW= asm/bn86-out.o | 67 | TAR= tar |
| 71 | #BN_MULW= bn_mulw.o | 68 | TARFLAGS= --no-recursion |
| 72 | #BN_MULW= asm/bn86-elf.o # elf, linux-elf | 69 | MAKEDEPPROG=makedepend |
| 73 | #BN_MULW= asm/bn86-sol.o # solaris | 70 | |
| 74 | #BN_MULW= asm/bn86-out.o # a.out, FreeBSD | 71 | # Set BN_ASM to bn_asm.o if you want to use the C version |
| 75 | #BN_MULW= asm/bn86bsdi.o # bsdi | 72 | BN_ASM= bn_asm.o |
| 76 | #BN_MULW= asm/alpha.o # DEC Alpha | 73 | #BN_ASM= bn_asm.o |
| 77 | #BN_MULW= asm/pa-risc2.o # HP-UX PA-RISC | 74 | #BN_ASM= asm/bn86-elf.o # elf, linux-elf |
| 78 | #BN_MULW= asm/r3000.o # SGI MIPS cpu | 75 | #BN_ASM= asm/bn86-sol.o # solaris |
| 79 | #BN_MULW= asm/sparc.o # Sun solaris/SunOS | 76 | #BN_ASM= asm/bn86-out.o # a.out, FreeBSD |
| 80 | #BN_MULW= asm/bn-win32.o # Windows 95/NT | 77 | #BN_ASM= asm/bn86bsdi.o # bsdi |
| 81 | #BN_MULW= asm/x86w16.o # 16 bit code for Windows 3.1/DOS | 78 | #BN_ASM= asm/alpha.o # DEC Alpha |
| 82 | #BN_MULW= asm/x86w32.o # 32 bit code for Windows 3.1 | 79 | #BN_ASM= asm/pa-risc2.o # HP-UX PA-RISC |
| 80 | #BN_ASM= asm/r3000.o # SGI MIPS cpu | ||
| 81 | #BN_ASM= asm/sparc.o # Sun solaris/SunOS | ||
| 82 | #BN_ASM= asm/bn-win32.o # Windows 95/NT | ||
| 83 | #BN_ASM= asm/x86w16.o # 16 bit code for Windows 3.1/DOS | ||
| 84 | #BN_ASM= asm/x86w32.o # 32 bit code for Windows 3.1 | ||
| 85 | |||
| 86 | # For x86 assembler: Set PROCESSOR to 386 if you want to support | ||
| 87 | # the 80386. | ||
| 88 | PROCESSOR= | ||
| 83 | 89 | ||
| 84 | # Set DES_ENC to des_enc.o if you want to use the C version | 90 | # Set DES_ENC to des_enc.o if you want to use the C version |
| 85 | #There are 4 x86 assember options. | 91 | #There are 4 x86 assember options. |
| 86 | DES_ENC= asm/dx86-out.o asm/yx86-out.o | 92 | DES_ENC= des_enc.o fcrypt_b.o |
| 87 | #DES_ENC= des_enc.o fcrypt_b.o # C | 93 | #DES_ENC= des_enc.o fcrypt_b.o # C |
| 88 | #DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf | 94 | #DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf |
| 89 | #DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris | 95 | #DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris |
| @@ -92,7 +98,7 @@ DES_ENC= asm/dx86-out.o asm/yx86-out.o | |||
| 92 | 98 | ||
| 93 | # Set BF_ENC to bf_enc.o if you want to use the C version | 99 | # Set BF_ENC to bf_enc.o if you want to use the C version |
| 94 | #There are 4 x86 assember options. | 100 | #There are 4 x86 assember options. |
| 95 | BF_ENC= asm/bx86-out.o | 101 | BF_ENC= bf_enc.o |
| 96 | #BF_ENC= bf_enc.o | 102 | #BF_ENC= bf_enc.o |
| 97 | #BF_ENC= asm/bx86-elf.o # elf | 103 | #BF_ENC= asm/bx86-elf.o # elf |
| 98 | #BF_ENC= asm/bx86-sol.o # solaris | 104 | #BF_ENC= asm/bx86-sol.o # solaris |
| @@ -101,7 +107,7 @@ BF_ENC= asm/bx86-out.o | |||
| 101 | 107 | ||
| 102 | # Set CAST_ENC to c_enc.o if you want to use the C version | 108 | # Set CAST_ENC to c_enc.o if you want to use the C version |
| 103 | #There are 4 x86 assember options. | 109 | #There are 4 x86 assember options. |
| 104 | CAST_ENC= asm/cx86-out.o | 110 | CAST_ENC= c_enc.o |
| 105 | #CAST_ENC= c_enc.o | 111 | #CAST_ENC= c_enc.o |
| 106 | #CAST_ENC= asm/cx86-elf.o # elf | 112 | #CAST_ENC= asm/cx86-elf.o # elf |
| 107 | #CAST_ENC= asm/cx86-sol.o # solaris | 113 | #CAST_ENC= asm/cx86-sol.o # solaris |
| @@ -110,7 +116,7 @@ CAST_ENC= asm/cx86-out.o | |||
| 110 | 116 | ||
| 111 | # Set RC4_ENC to rc4_enc.o if you want to use the C version | 117 | # Set RC4_ENC to rc4_enc.o if you want to use the C version |
| 112 | #There are 4 x86 assember options. | 118 | #There are 4 x86 assember options. |
| 113 | RC4_ENC= asm/rx86-out.o | 119 | RC4_ENC= rc4_enc.o |
| 114 | #RC4_ENC= rc4_enc.o | 120 | #RC4_ENC= rc4_enc.o |
| 115 | #RC4_ENC= asm/rx86-elf.o # elf | 121 | #RC4_ENC= asm/rx86-elf.o # elf |
| 116 | #RC4_ENC= asm/rx86-sol.o # solaris | 122 | #RC4_ENC= asm/rx86-sol.o # solaris |
| @@ -119,7 +125,7 @@ RC4_ENC= asm/rx86-out.o | |||
| 119 | 125 | ||
| 120 | # Set RC5_ENC to rc5_enc.o if you want to use the C version | 126 | # Set RC5_ENC to rc5_enc.o if you want to use the C version |
| 121 | #There are 4 x86 assember options. | 127 | #There are 4 x86 assember options. |
| 122 | RC5_ENC= asm/r586-out.o | 128 | RC5_ENC= rc5_enc.o |
| 123 | #RC5_ENC= rc5_enc.o | 129 | #RC5_ENC= rc5_enc.o |
| 124 | #RC5_ENC= asm/r586-elf.o # elf | 130 | #RC5_ENC= asm/r586-elf.o # elf |
| 125 | #RC5_ENC= asm/r586-sol.o # solaris | 131 | #RC5_ENC= asm/r586-sol.o # solaris |
| @@ -127,205 +133,622 @@ RC5_ENC= asm/r586-out.o | |||
| 127 | #RC5_ENC= asm/r586bsdi.o # bsdi | 133 | #RC5_ENC= asm/r586bsdi.o # bsdi |
| 128 | 134 | ||
| 129 | # Also need MD5_ASM defined | 135 | # Also need MD5_ASM defined |
| 130 | MD5_ASM_OBJ= asm/mx86-out.o | 136 | MD5_ASM_OBJ= |
| 131 | #MD5_ASM_OBJ= asm/mx86-elf.o # elf | 137 | #MD5_ASM_OBJ= asm/mx86-elf.o # elf |
| 132 | #MD5_ASM_OBJ= asm/mx86-sol.o # solaris | 138 | #MD5_ASM_OBJ= asm/mx86-sol.o # solaris |
| 133 | #MD5_ASM_OBJ= asm/mx86-out.o # a.out, FreeBSD | 139 | #MD5_ASM_OBJ= asm/mx86-out.o # a.out, FreeBSD |
| 134 | #MD5_ASM_OBJ= asm/mx86bsdi.o # bsdi | 140 | #MD5_ASM_OBJ= asm/mx86bsdi.o # bsdi |
| 135 | 141 | ||
| 136 | # Also need SHA1_ASM defined | 142 | # Also need SHA1_ASM defined |
| 137 | SHA1_ASM_OBJ= asm/sx86-out.o | 143 | SHA1_ASM_OBJ= |
| 138 | #SHA1_ASM_OBJ= asm/sx86-elf.o # elf | 144 | #SHA1_ASM_OBJ= asm/sx86-elf.o # elf |
| 139 | #SHA1_ASM_OBJ= asm/sx86-sol.o # solaris | 145 | #SHA1_ASM_OBJ= asm/sx86-sol.o # solaris |
| 140 | #SHA1_ASM_OBJ= asm/sx86-out.o # a.out, FreeBSD | 146 | #SHA1_ASM_OBJ= asm/sx86-out.o # a.out, FreeBSD |
| 141 | #SHA1_ASM_OBJ= asm/sx86bsdi.o # bsdi | 147 | #SHA1_ASM_OBJ= asm/sx86bsdi.o # bsdi |
| 142 | 148 | ||
| 143 | # Also need RMD160_ASM defined | 149 | # Also need RMD160_ASM defined |
| 144 | RMD160_ASM_OBJ= asm/rm86-out.o | 150 | RMD160_ASM_OBJ= |
| 145 | #RMD160_ASM_OBJ= asm/rm86-elf.o # elf | 151 | #RMD160_ASM_OBJ= asm/rm86-elf.o # elf |
| 146 | #RMD160_ASM_OBJ= asm/rm86-sol.o # solaris | 152 | #RMD160_ASM_OBJ= asm/rm86-sol.o # solaris |
| 147 | #RMD160_ASM_OBJ= asm/rm86-out.o # a.out, FreeBSD | 153 | #RMD160_ASM_OBJ= asm/rm86-out.o # a.out, FreeBSD |
| 148 | #RMD160_ASM_OBJ= asm/rm86bsdi.o # bsdi | 154 | #RMD160_ASM_OBJ= asm/rm86bsdi.o # bsdi |
| 149 | 155 | ||
| 150 | DIRS= crypto ssl rsaref apps test tools | 156 | # KRB5 stuff |
| 157 | KRB5_INCLUDES= | ||
| 158 | LIBKRB5= | ||
| 159 | |||
| 160 | # When we're prepared to use shared libraries in the programs we link here | ||
| 161 | # we might set SHLIB_MARK to '$(SHARED_LIBS)'. | ||
| 162 | SHLIB_MARK= | ||
| 163 | |||
| 164 | DIRS= crypto ssl $(SHLIB_MARK) apps test tools | ||
| 165 | SHLIBDIRS= crypto ssl | ||
| 166 | |||
| 151 | # dirs in crypto to build | 167 | # dirs in crypto to build |
| 152 | SDIRS= \ | 168 | SDIRS= \ |
| 153 | md2 md5 sha mdc2 hmac ripemd \ | 169 | md2 md4 md5 sha mdc2 hmac ripemd \ |
| 154 | des rc2 rc4 rc5 idea bf cast \ | 170 | des rc2 rc4 rc5 idea bf cast \ |
| 155 | bn rsa dsa dh \ | 171 | bn ec rsa dsa dh dso engine aes \ |
| 156 | buffer bio stack lhash rand err objects \ | 172 | buffer bio stack lhash rand err objects \ |
| 157 | evp pem asn1 x509 conf txt_db pkcs7 | 173 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 |
| 158 | 174 | ||
| 159 | # If you change the INSTALLTOP, make sure to also change the values | 175 | # tests to perform. "alltests" is a special word indicating that all tests |
| 160 | # in crypto/location.h | 176 | # should be performed. |
| 161 | INSTALLTOP=/usr/ssl | 177 | TESTS = alltests |
| 162 | 178 | ||
| 163 | MAKEFILE= Makefile.ssl | 179 | MAKEFILE= Makefile.ssl |
| 164 | MAKE= make -f Makefile.ssl | 180 | MAKE= make -f Makefile.ssl |
| 165 | 181 | ||
| 182 | MANDIR=$(OPENSSLDIR)/man | ||
| 166 | MAN1=1 | 183 | MAN1=1 |
| 167 | MAN3=3 | 184 | MAN3=3 |
| 168 | SHELL=/bin/sh | 185 | SHELL=/bin/sh |
| 169 | 186 | ||
| 170 | TOP= . | 187 | TOP= . |
| 171 | ONEDIRS=out tmp | 188 | ONEDIRS=out tmp |
| 172 | EDIRS= times doc bugs util include certs ms shlib mt demos perl dep | 189 | EDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMS |
| 173 | MISC= COPYRIGHT Configure HISTORY.066 INSTALL Makefile.ssl Makefile \ | ||
| 174 | README TODO HISTORY README.066 README.080 README.090 \ | ||
| 175 | VERSION PROBLEMS MINFO makefile.one e_os.h \ | ||
| 176 | MICROSOFT makevms.com config PATENTS | ||
| 177 | WDIRS= windows | 190 | WDIRS= windows |
| 178 | LIBS= libcrypto.a libssl.a | 191 | LIBS= libcrypto.a libssl.a |
| 192 | SHARED_CRYPTO=libcrypto$(SHLIB_EXT) | ||
| 193 | SHARED_SSL=libssl$(SHLIB_EXT) | ||
| 194 | SHARED_LIBS= | ||
| 195 | SHARED_LIBS_LINK_EXTS= | ||
| 196 | SHARED_LDFLAGS= | ||
| 179 | 197 | ||
| 180 | GENERAL= Makefile | 198 | GENERAL= Makefile |
| 181 | BASENAME= SSLeay | 199 | BASENAME= openssl |
| 182 | NAME= $(BASENAME)-$(VERSION) | 200 | NAME= $(BASENAME)-$(VERSION) |
| 183 | TARFILE= $(NAME).tar | 201 | TARFILE= $(NAME).tar |
| 184 | WTARFILE= $(NAME)-win.tar | 202 | WTARFILE= $(NAME)-win.tar |
| 185 | EXHEADER= e_os.h | 203 | EXHEADER= e_os2.h |
| 186 | HEADER= e_os.h | 204 | HEADER= e_os.h |
| 187 | 205 | ||
| 188 | all: | 206 | # When we're prepared to use shared libraries in the programs we link here |
| 189 | @for i in $(DIRS) ;\ | 207 | # we might remove 'clean-shared' from the targets to perform at this stage |
| 190 | do \ | 208 | |
| 191 | (cd $$i; echo "making $$i..."; \ | 209 | all: Makefile.ssl sub_all |
| 192 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' SDIRS='${SDIRS}' AR='${AR}' all ); \ | ||
| 193 | done; | ||
| 194 | 210 | ||
| 195 | sub_all: | 211 | sub_all: |
| 196 | @for i in $(DIRS) ;\ | 212 | @for i in $(DIRS); \ |
| 197 | do \ | 213 | do \ |
| 198 | (cd $$i; echo "making $$i..."; \ | 214 | if [ -d "$$i" ]; then \ |
| 199 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' all ); \ | 215 | (cd $$i && echo "making all in $$i..." && \ |
| 216 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' all ) || exit 1; \ | ||
| 217 | else \ | ||
| 218 | $(MAKE) $$i; \ | ||
| 219 | fi; \ | ||
| 200 | done; | 220 | done; |
| 201 | 221 | ||
| 222 | libcrypto$(SHLIB_EXT): libcrypto.a | ||
| 223 | @if [ "$(SHLIB_TARGET)" != "" ]; then \ | ||
| 224 | $(MAKE) SHLIBDIRS=crypto build-shared; \ | ||
| 225 | else \ | ||
| 226 | echo "There's no support for shared libraries on this platform" >&2; \ | ||
| 227 | fi | ||
| 228 | |||
| 229 | libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a | ||
| 230 | @if [ "$(SHLIB_TARGET)" != "" ]; then \ | ||
| 231 | $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \ | ||
| 232 | else \ | ||
| 233 | echo "There's no support for shared libraries on this platform" >&2; \ | ||
| 234 | fi | ||
| 235 | |||
| 236 | clean-shared: | ||
| 237 | @for i in $(SHLIBDIRS); do \ | ||
| 238 | if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ | ||
| 239 | tmp="$(SHARED_LIBS_LINK_EXTS)"; \ | ||
| 240 | for j in $${tmp:-x}; do \ | ||
| 241 | ( set -x; rm -f lib$$i$$j ); \ | ||
| 242 | done; \ | ||
| 243 | fi; \ | ||
| 244 | ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \ | ||
| 245 | if [ "$(PLATFORM)" = "Cygwin" ]; then \ | ||
| 246 | ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \ | ||
| 247 | fi; \ | ||
| 248 | done | ||
| 249 | |||
| 250 | link-shared: | ||
| 251 | @if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ | ||
| 252 | tmp="$(SHARED_LIBS_LINK_EXTS)"; \ | ||
| 253 | for i in $(SHLIBDIRS); do \ | ||
| 254 | prev=lib$$i$(SHLIB_EXT); \ | ||
| 255 | for j in $${tmp:-x}; do \ | ||
| 256 | ( set -x; ln -f -s $$prev lib$$i$$j ); \ | ||
| 257 | prev=lib$$i$$j; \ | ||
| 258 | done; \ | ||
| 259 | done; \ | ||
| 260 | fi | ||
| 261 | |||
| 262 | build-shared: clean-shared do_$(SHLIB_TARGET) link-shared | ||
| 263 | |||
| 264 | do_bsd-gcc-shared: do_gnu-shared | ||
| 265 | do_linux-shared: do_gnu-shared | ||
| 266 | do_gnu-shared: | ||
| 267 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 268 | ( set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 269 | -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 270 | -Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 271 | -Wl,-Bsymbolic \ | ||
| 272 | -Wl,--whole-archive lib$$i.a \ | ||
| 273 | -Wl,--no-whole-archive $$libs ${EX_LIBS} -lc ) || exit 1; \ | ||
| 274 | libs="$$libs -l$$i"; \ | ||
| 275 | done | ||
| 276 | |||
| 277 | DETECT_GNU_LD=${CC} -v 2>&1 | grep '^gcc' >/dev/null 2>&1 && \ | ||
| 278 | collect2=`gcc -print-prog-name=collect2 2>&1` && \ | ||
| 279 | [ -n "$$collect2" ] && \ | ||
| 280 | my_ld=`$$collect2 --help 2>&1 | grep Usage: | sed 's/^Usage: *\([^ ][^ ]*\).*/\1/'` && \ | ||
| 281 | [ -n "$$my_ld" ] && \ | ||
| 282 | $$my_ld -v 2>&1 | grep 'GNU ld' >/dev/null 2>&1 | ||
| 283 | |||
| 284 | # For Darwin AKA Mac OS/X (dyld) | ||
| 285 | do_darwin-shared: | ||
| 286 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 287 | ( set -x ; ${CC} --verbose -dynamiclib -o lib$$i${SHLIB_EXT} \ | ||
| 288 | lib$$i.a $$libs -all_load -current_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 289 | -compatibility_version ${SHLIB_MAJOR}.`echo ${SHLIB_MINOR} | cut -d. -f1` \ | ||
| 290 | -install_name ${INSTALLTOP}/lib/lib$$i${SHLIB_EXT} ) || exit 1; \ | ||
| 291 | libs="$$libs -l`basename $$i${SHLIB_EXT} .dylib`"; \ | ||
| 292 | echo "" ; \ | ||
| 293 | done | ||
| 294 | |||
| 295 | do_cygwin-shared: | ||
| 296 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 297 | ( set -x; ${CC} -shared -o cyg$$i.dll \ | ||
| 298 | -Wl,-Bsymbolic \ | ||
| 299 | -Wl,--whole-archive lib$$i.a \ | ||
| 300 | -Wl,--out-implib,lib$$i.dll.a \ | ||
| 301 | -Wl,--no-whole-archive $$libs ) || exit 1; \ | ||
| 302 | libs="$$libs -l$$i"; \ | ||
| 303 | done | ||
| 304 | |||
| 305 | # This assumes that GNU utilities are *not* used | ||
| 306 | do_alpha-osf1-shared: | ||
| 307 | if ${DETECT_GNU_LD}; then \ | ||
| 308 | $(MAKE) do_gnu-shared; \ | ||
| 309 | else \ | ||
| 310 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 311 | ( set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 312 | -shared -o lib$$i.so \ | ||
| 313 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
| 314 | -all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \ | ||
| 315 | libs="$$libs -l$$i"; \ | ||
| 316 | done; \ | ||
| 317 | fi | ||
| 318 | |||
| 319 | # This assumes that GNU utilities are *not* used | ||
| 320 | # The difference between alpha-osf1-shared and tru64-shared is the `-msym' | ||
| 321 | # option passed to the linker. | ||
| 322 | do_tru64-shared: | ||
| 323 | if ${DETECT_GNU_LD}; then \ | ||
| 324 | $(MAKE) do_gnu-shared; \ | ||
| 325 | else \ | ||
| 326 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 327 | ( set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 328 | -shared -msym -o lib$$i.so \ | ||
| 329 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
| 330 | -all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \ | ||
| 331 | libs="$$libs -l$$i"; \ | ||
| 332 | done; \ | ||
| 333 | fi | ||
| 334 | |||
| 335 | # This assumes that GNU utilities are *not* used | ||
| 336 | # The difference between tru64-shared and tru64-shared-rpath is the | ||
| 337 | # -rpath ${INSTALLTOP}/lib passed to the linker. | ||
| 338 | do_tru64-shared-rpath: | ||
| 339 | if ${DETECT_GNU_LD}; then \ | ||
| 340 | $(MAKE) do_gnu-shared; \ | ||
| 341 | else \ | ||
| 342 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 343 | ( set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 344 | -shared -msym -o lib$$i.so \ | ||
| 345 | -rpath ${INSTALLTOP}/lib \ | ||
| 346 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
| 347 | -all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \ | ||
| 348 | libs="$$libs -l$$i"; \ | ||
| 349 | done; \ | ||
| 350 | fi | ||
| 351 | |||
| 352 | |||
| 353 | # This assumes that GNU utilities are *not* used | ||
| 354 | do_solaris-shared: | ||
| 355 | if ${DETECT_GNU_LD}; then \ | ||
| 356 | $(MAKE) do_gnu-shared; \ | ||
| 357 | else \ | ||
| 358 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 359 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | ||
| 360 | set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 361 | -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 362 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 363 | -z allextract lib$$i.a $$libs ${EX_LIBS} -lc ) || exit 1; \ | ||
| 364 | libs="$$libs -l$$i"; \ | ||
| 365 | done; \ | ||
| 366 | fi | ||
| 367 | |||
| 368 | # OpenServer 5 native compilers used | ||
| 369 | do_svr3-shared: | ||
| 370 | if ${DETECT_GNU_LD}; then \ | ||
| 371 | $(MAKE) do_gnu-shared; \ | ||
| 372 | else \ | ||
| 373 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 374 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | ||
| 375 | find . -name "*.o" -print > allobjs ; \ | ||
| 376 | OBJS= ; export OBJS ; \ | ||
| 377 | for obj in `ar t lib$$i.a` ; do \ | ||
| 378 | OBJS="$${OBJS} `grep $$obj allobjs`" ; \ | ||
| 379 | done ; \ | ||
| 380 | set -x; ${CC} -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 381 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 382 | $${OBJS} $$libs ${EX_LIBS} ) || exit 1; \ | ||
| 383 | libs="$$libs -l$$i"; \ | ||
| 384 | done; \ | ||
| 385 | fi | ||
| 386 | |||
| 387 | # UnixWare 7 and OpenUNIX 8 native compilers used | ||
| 388 | do_svr5-shared: | ||
| 389 | if ${DETECT_GNU_LD}; then \ | ||
| 390 | $(MAKE) do_gnu-shared; \ | ||
| 391 | else \ | ||
| 392 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 393 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | ||
| 394 | find . -name "*.o" -print > allobjs ; \ | ||
| 395 | OBJS= ; export OBJS ; \ | ||
| 396 | for obj in `ar t lib$$i.a` ; do \ | ||
| 397 | OBJS="$${OBJS} `grep $$obj allobjs`" ; \ | ||
| 398 | done ; \ | ||
| 399 | set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 400 | -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 401 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 402 | $${OBJS} $$libs ${EX_LIBS} ) || exit 1; \ | ||
| 403 | libs="$$libs -l$$i"; \ | ||
| 404 | done; \ | ||
| 405 | fi | ||
| 406 | |||
| 407 | # This assumes that GNU utilities are *not* used | ||
| 408 | do_irix-shared: | ||
| 409 | if ${DETECT_GNU_LD}; then \ | ||
| 410 | $(MAKE) do_gnu-shared; \ | ||
| 411 | else \ | ||
| 412 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 413 | ( set -x; ${CC} ${SHARED_LDFLAGS} \ | ||
| 414 | -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 415 | -Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 416 | -all lib$$i.a $$libs ${EX_LIBS} -lc) || exit 1; \ | ||
| 417 | libs="$$libs -l$$i"; \ | ||
| 418 | done; \ | ||
| 419 | fi | ||
| 420 | |||
| 421 | # This assumes that GNU utilities are *not* used | ||
| 422 | # HP-UX includes the full pathname of libs we depend on, so we would get | ||
| 423 | # ./libcrypto (with ./ as path information) compiled into libssl, hence | ||
| 424 | # we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto | ||
| 425 | # anyway. | ||
| 426 | # The object modules are loaded from lib$i.a using the undocumented -Fl | ||
| 427 | # option. | ||
| 428 | # | ||
| 429 | # WARNING: Until DSO is fixed to support a search path, we support SHLIB_PATH | ||
| 430 | # by temporarily specifying "+s"! | ||
| 431 | # | ||
| 432 | do_hpux-shared: | ||
| 433 | for i in ${SHLIBDIRS}; do \ | ||
| 434 | ( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \ | ||
| 435 | +vnocompatwarnings \ | ||
| 436 | -b -z +s \ | ||
| 437 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 438 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 439 | -Fl lib$$i.a -ldld -lc ) || exit 1; \ | ||
| 440 | done | ||
| 441 | |||
| 442 | # This assumes that GNU utilities are *not* used | ||
| 443 | # HP-UX includes the full pathname of libs we depend on, so we would get | ||
| 444 | # ./libcrypto (with ./ as path information) compiled into libssl, hence | ||
| 445 | # we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto | ||
| 446 | # anyway. | ||
| 447 | # | ||
| 448 | # HP-UX in 64bit mode has "+s" enabled by default; it will search for | ||
| 449 | # shared libraries along LD_LIBRARY_PATH _and_ SHLIB_PATH. | ||
| 450 | # | ||
| 451 | do_hpux64-shared: | ||
| 452 | for i in ${SHLIBDIRS}; do \ | ||
| 453 | ( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \ | ||
| 454 | -b -z \ | ||
| 455 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 456 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
| 457 | +forceload lib$$i.a -ldl -lc ) || exit 1; \ | ||
| 458 | done | ||
| 459 | |||
| 460 | # The following method is said to work on all platforms. Tests will | ||
| 461 | # determine if that's how it's gong to be used. | ||
| 462 | # This assumes that for all but GNU systems, GNU utilities are *not* used. | ||
| 463 | # ALLSYMSFLAGS would be: | ||
| 464 | # GNU systems: --whole-archive | ||
| 465 | # Tru64 Unix: -all | ||
| 466 | # Solaris: -z allextract | ||
| 467 | # Irix: -all | ||
| 468 | # HP/UX-32bit: -Fl | ||
| 469 | # HP/UX-64bit: +forceload | ||
| 470 | # AIX: -bnogc | ||
| 471 | # SHAREDFLAGS would be: | ||
| 472 | # GNU systems: -shared -Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
| 473 | # Tru64 Unix: -shared \ | ||
| 474 | # -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" | ||
| 475 | # Solaris: -G -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
| 476 | # Irix: -shared -Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
| 477 | # HP/UX-32bit: +vnocompatwarnings -b -z +s \ | ||
| 478 | # +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
| 479 | # HP/UX-64bit: -b -z +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
| 480 | # AIX: -G -bE:lib$$i.exp -bM:SRE | ||
| 481 | # SHAREDCMD would be: | ||
| 482 | # GNU systems: $(CC) | ||
| 483 | # Tru64 Unix: $(CC) | ||
| 484 | # Solaris: $(CC) | ||
| 485 | # Irix: $(CC) | ||
| 486 | # HP/UX-32bit: /usr/ccs/bin/ld | ||
| 487 | # HP/UX-64bit: /usr/ccs/bin/ld | ||
| 488 | # AIX: $(CC) | ||
| 489 | ALLSYMSFLAG=-bnogc | ||
| 490 | SHAREDFLAGS=${SHARED_LDFLAGS} -G -bE:lib$$i.exp -bM:SRE | ||
| 491 | SHAREDCMD=$(CC) | ||
| 492 | do_aix-shared: | ||
| 493 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 494 | ( set -x; \ | ||
| 495 | ld -r -o $$i.o $(ALLSYMSFLAG) lib$$i.a && \ | ||
| 496 | ( nm -Pg lib$$i.o | grep ' [BD] ' | cut -f1 -d' ' > lib$$i.exp; \ | ||
| 497 | $(SHAREDCMD) $(SHAREDFLAG) -o lib$$i.so lib$$i.o \ | ||
| 498 | $$libs ${EX_LIBS} ) ) \ | ||
| 499 | || exit 1; \ | ||
| 500 | libs="$$libs -l$$i"; \ | ||
| 501 | done | ||
| 502 | |||
| 503 | do_reliantunix-shared: | ||
| 504 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
| 505 | tmpdir=/tmp/openssl.$$$$ ; rm -rf $$tmpdir ; \ | ||
| 506 | ( set -x; \ | ||
| 507 | ( Opwd=`pwd` ; mkdir $$tmpdir || exit 1; \ | ||
| 508 | cd $$tmpdir || exit 1 ; ar x $$Opwd/lib$$i.a ; \ | ||
| 509 | ${CC} -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} *.o \ | ||
| 510 | ) || exit 1; \ | ||
| 511 | cp $$tmpdir/lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} . ; \ | ||
| 512 | ) || exit 1; \ | ||
| 513 | rm -rf $$tmpdir ; \ | ||
| 514 | libs="$$libs -l$$i"; \ | ||
| 515 | done | ||
| 516 | |||
| 517 | Makefile.ssl: Makefile.org | ||
| 518 | @echo "Makefile.ssl is older than Makefile.org." | ||
| 519 | @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please." | ||
| 520 | @false | ||
| 521 | |||
| 522 | libclean: | ||
| 523 | rm -f *.a */lib */*/lib | ||
| 524 | |||
| 202 | clean: | 525 | clean: |
| 203 | /bin/rm -f shlib/*.o *.o core a.out fluff *.map | 526 | rm -f shlib/*.o *.o core a.out fluff *.map rehash.time testlog make.log cctest cctest.c |
| 204 | @for i in $(DIRS) ;\ | 527 | @for i in $(DIRS) ;\ |
| 205 | do \ | 528 | do \ |
| 206 | (cd $$i; echo "cleaning $$i..."; \ | 529 | if [ -d "$$i" ]; then \ |
| 207 | $(MAKE) SDIRS='${SDIRS}' clean ); \ | 530 | (cd $$i && echo "making clean in $$i..." && \ |
| 208 | /bin/rm -f $(LIBS); \ | 531 | $(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \ |
| 532 | rm -f $(LIBS); \ | ||
| 533 | fi; \ | ||
| 209 | done; | 534 | done; |
| 210 | /bin/rm -f *.a *.o speed.* *.map *.so .pure core | 535 | rm -f *.a *.o speed.* *.map *.so .pure core |
| 211 | /bin/rm -f $(TARFILE) | 536 | rm -f $(TARFILE) |
| 212 | @for i in $(ONEDIRS) ;\ | 537 | @for i in $(ONEDIRS) ;\ |
| 213 | do \ | 538 | do \ |
| 214 | /bin/rm -fr $$i/*; \ | 539 | rm -fr $$i/*; \ |
| 215 | done | 540 | done |
| 216 | 541 | ||
| 217 | makefile.one: files | 542 | makefile.one: files |
| 218 | perl util/mk1mf.pl >makefile.one; \ | 543 | $(PERL) util/mk1mf.pl >makefile.one; \ |
| 219 | sh util/do_ms.sh | 544 | sh util/do_ms.sh |
| 220 | 545 | ||
| 221 | files: MINFO | 546 | files: |
| 222 | perl $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO | 547 | $(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO |
| 223 | @for i in $(DIRS) ;\ | 548 | @for i in $(DIRS) ;\ |
| 224 | do \ | 549 | do \ |
| 225 | (cd $$i; echo "making 'files' in $$i..."; \ | 550 | if [ -d "$$i" ]; then \ |
| 226 | $(MAKE) SDIRS='${SDIRS}' files ); \ | 551 | (cd $$i && echo "making 'files' in $$i..." && \ |
| 552 | $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \ | ||
| 553 | fi; \ | ||
| 227 | done; | 554 | done; |
| 228 | 555 | ||
| 229 | links: | 556 | links: |
| 230 | /bin/rm -f Makefile; | 557 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 231 | ./util/point.sh Makefile.ssl Makefile; | 558 | @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl |
| 232 | $(TOP)/util/mklink.sh include $(EXHEADER) ; | 559 | @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) |
| 233 | @for i in $(DIRS) ;\ | 560 | @for i in $(DIRS); do \ |
| 234 | do \ | 561 | if [ -d "$$i" ]; then \ |
| 235 | (cd $$i; echo "making links in $$i..."; \ | 562 | (cd $$i && echo "making links in $$i..." && \ |
| 236 | $(MAKE) SDIRS='${SDIRS}' links ); \ | 563 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' links ) || exit 1; \ |
| 564 | fi; \ | ||
| 237 | done; | 565 | done; |
| 238 | # @(cd apps; sh ./mklinks) | ||
| 239 | @( SSLEAY="`pwd`/apps/ssleay"; export SSLEAY; sh tools/c_rehash certs ) | ||
| 240 | 566 | ||
| 241 | dclean: | 567 | dclean: |
| 242 | /bin/rm -f *.bak | 568 | rm -f *.bak |
| 243 | @for i in $(DIRS) ;\ | 569 | @for i in $(DIRS) ;\ |
| 244 | do \ | 570 | do \ |
| 245 | (cd $$i; echo "undoing makedepend in $$i..."; \ | 571 | if [ -d "$$i" ]; then \ |
| 246 | $(MAKE) SDIRS='${SDIRS}' dclean ); \ | 572 | (cd $$i && echo "making dclean in $$i..." && \ |
| 573 | $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \ | ||
| 574 | fi; \ | ||
| 247 | done; | 575 | done; |
| 248 | 576 | ||
| 249 | rehash: | 577 | rehash: rehash.time |
| 250 | @(PATH="`pwd`/apps:${PATH}"; sh tools/c_rehash certs) | 578 | rehash.time: certs |
| 579 | @(OPENSSL="`pwd`/apps/openssl"; OPENSSL_DEBUG_MEMORY=on; \ | ||
| 580 | export OPENSSL OPENSSL_DEBUG_MEMORY; \ | ||
| 581 | LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ | ||
| 582 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | ||
| 583 | $(PERL) tools/c_rehash certs) | ||
| 584 | touch rehash.time | ||
| 251 | 585 | ||
| 252 | test: tests | 586 | test: tests |
| 253 | 587 | ||
| 254 | tests: | 588 | tests: rehash |
| 255 | (cd test; echo "testing $$i..."; \ | 589 | @(cd test && echo "testing..." && \ |
| 256 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' tests ); | 590 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' OPENSSL_DEBUG_MEMORY=on tests ); |
| 257 | @apps/ssleay version -a | 591 | @LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ |
| 592 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | ||
| 593 | apps/openssl version -a | ||
| 594 | |||
| 595 | report: | ||
| 596 | @$(PERL) util/selftest.pl | ||
| 258 | 597 | ||
| 259 | depend: | 598 | depend: |
| 260 | @for i in $(DIRS) ;\ | 599 | @for i in $(DIRS) ;\ |
| 261 | do \ | 600 | do \ |
| 262 | (cd $$i; echo "making dependancies $$i..."; \ | 601 | if [ -d "$$i" ]; then \ |
| 263 | $(MAKE) SDIRS='${SDIRS}' depend ); \ | 602 | (cd $$i && echo "making dependencies $$i..." && \ |
| 603 | $(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' depend ) || exit 1; \ | ||
| 604 | fi; \ | ||
| 264 | done; | 605 | done; |
| 265 | 606 | ||
| 266 | lint: | 607 | lint: |
| 267 | @for i in $(DIRS) ;\ | 608 | @for i in $(DIRS) ;\ |
| 268 | do \ | 609 | do \ |
| 269 | (cd $$i; echo "making lint $$i..."; \ | 610 | if [ -d "$$i" ]; then \ |
| 270 | $(MAKE) SDIRS='${SDIRS}' lint ); \ | 611 | (cd $$i && echo "making lint $$i..." && \ |
| 612 | $(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \ | ||
| 613 | fi; \ | ||
| 271 | done; | 614 | done; |
| 272 | 615 | ||
| 273 | tags: | 616 | tags: |
| 274 | @for i in $(DIRS) ;\ | 617 | @for i in $(DIRS) ;\ |
| 275 | do \ | 618 | do \ |
| 276 | (cd $$i; echo "making tags $$i..."; \ | 619 | if [ -d "$$i" ]; then \ |
| 277 | $(MAKE) SDIRS='${SDIRS}' tags ); \ | 620 | (cd $$i && echo "making tags $$i..." && \ |
| 621 | $(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \ | ||
| 622 | fi; \ | ||
| 278 | done; | 623 | done; |
| 279 | 624 | ||
| 280 | errors: | 625 | errors: |
| 281 | @for i in $(DIRS) ;\ | 626 | $(PERL) util/mkerr.pl -recurse -write |
| 282 | do \ | 627 | (cd crypto/engine; $(MAKE) PERL=$(PERL) errors) |
| 283 | (cd $$i; echo "making errors in $$i..."; \ | 628 | |
| 284 | $(MAKE) SDIRS='${SDIRS}' errors ); \ | 629 | stacks: |
| 285 | done; | 630 | $(PERL) util/mkstack.pl -write |
| 631 | |||
| 632 | util/libeay.num:: | ||
| 633 | $(PERL) util/mkdef.pl crypto update | ||
| 634 | |||
| 635 | util/ssleay.num:: | ||
| 636 | $(PERL) util/mkdef.pl ssl update | ||
| 637 | |||
| 638 | crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h | ||
| 639 | $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h | ||
| 640 | crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num | ||
| 641 | $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h | ||
| 642 | |||
| 643 | TABLE: Configure | ||
| 644 | (echo 'Output of `Configure TABLE'"':"; \ | ||
| 645 | $(PERL) Configure TABLE) > TABLE | ||
| 646 | |||
| 647 | update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h TABLE | ||
| 286 | 648 | ||
| 287 | tar: | 649 | tar: |
| 288 | @(cd ..;\ | 650 | @$(TAR) $(TARFLAGS) -cvf - \ |
| 289 | mv $(BASENAME) $(NAME); \ | 651 | `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort` |\ |
| 290 | export STUFF; \ | 652 | tardy --user_number=0 --user_name=openssl \ |
| 291 | for i in $(MISC) $(DIRS) $(EDIRS) $(ONEDIRS) ;\ | 653 | --group_number=0 --group_name=openssl \ |
| 292 | do \ | 654 | --prefix=openssl-$(VERSION) - |\ |
| 293 | STUFF="$$STUFF $(NAME)/$$i"; \ | 655 | gzip --best >../$(TARFILE).gz; \ |
| 294 | done; \ | 656 | ls -l ../$(TARFILE).gz |
| 295 | tar cf $(NAME)/$(TARFILE) $$STUFF; \ | 657 | |
| 296 | mv $(NAME) $(BASENAME) ) | 658 | tar-snap: |
| 297 | gzip -f $(TARFILE) | 659 | @$(TAR) $(TARFLAGS) -cvf - \ |
| 660 | `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \! -name '*.so' \! -name '*.so.*' \! -name 'openssl' \! -name '*test' \! -name '.#*' \! -name '*~' | sort` |\ | ||
| 661 | tardy --user_number=0 --user_name=openssl \ | ||
| 662 | --group_number=0 --group_name=openssl \ | ||
| 663 | --prefix=openssl-$(VERSION) - > ../$(TARFILE);\ | ||
| 664 | ls -l ../$(TARFILE) | ||
| 298 | 665 | ||
| 299 | dist: | 666 | dist: |
| 300 | perl Configure dist | 667 | $(PERL) Configure dist |
| 301 | perl util/up_ver.pl ${VERSION} | ||
| 302 | @$(MAKE) dist_pem_h | 668 | @$(MAKE) dist_pem_h |
| 303 | @$(MAKE) SDIRS='${SDIRS}' clean | 669 | @$(MAKE) SDIRS='${SDIRS}' clean |
| 304 | @$(MAKE) SDIRS='${SDIRS}' dclean | ||
| 305 | @(cd apps; sh ./rmlinks) | ||
| 306 | @$(MAKE) makefile.one | ||
| 307 | @$(MAKE) tar | 670 | @$(MAKE) tar |
| 308 | 671 | ||
| 309 | dist_pem_h: | 672 | dist_pem_h: |
| 310 | (cd crypto/pem; $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean) | 673 | (cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean) |
| 311 | 674 | ||
| 312 | install: all | 675 | install: all install_docs |
| 313 | @-mkdir -p $(INSTALLTOP)/bin 2>/dev/null | 676 | @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ |
| 314 | @-mkdir -p $(INSTALLTOP)/lib 2>/dev/null | 677 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib \ |
| 315 | @-mkdir -p $(INSTALLTOP)/include 2>/dev/null | 678 | $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \ |
| 316 | @-mkdir -p $(INSTALLTOP)/certs 2>/dev/null | 679 | $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \ |
| 317 | @-mkdir -p $(INSTALLTOP)/private 2>/dev/null | 680 | $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \ |
| 681 | $(INSTALL_PREFIX)$(OPENSSLDIR)/private \ | ||
| 682 | $(INSTALL_PREFIX)$(OPENSSLDIR)/lib | ||
| 683 | @for i in $(EXHEADER) ;\ | ||
| 684 | do \ | ||
| 685 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 686 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 687 | done; | ||
| 318 | @for i in $(DIRS) ;\ | 688 | @for i in $(DIRS) ;\ |
| 319 | do \ | 689 | do \ |
| 320 | (cd $$i; echo "installing $$i..."; \ | 690 | if [ -d "$$i" ]; then \ |
| 321 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' install ); \ | 691 | (cd $$i; echo "installing $$i..."; \ |
| 692 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' RANLIB='${RANLIB}' EXE_EXT='${EXE_EXT}' install ); \ | ||
| 693 | fi; \ | ||
| 322 | done | 694 | done |
| 323 | @for i in $(LIBS) ;\ | 695 | @for i in $(LIBS) ;\ |
| 324 | do \ | 696 | do \ |
| 325 | ( echo installing $$i; \ | 697 | if [ -f "$$i" ]; then \ |
| 326 | cp $$i $(INSTALLTOP)/lib; \ | 698 | ( echo installing $$i; \ |
| 327 | sh util/ranlib.sh $(INSTALLTOP)/lib/$$i; \ | 699 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ |
| 328 | chmod 644 $(INSTALLTOP)/lib/$$i ); \ | 700 | $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ |
| 701 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ | ||
| 702 | fi; \ | ||
| 703 | done; | ||
| 704 | @if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 705 | tmp="$(SHARED_LIBS)"; \ | ||
| 706 | for i in $${tmp:-x}; \ | ||
| 707 | do \ | ||
| 708 | if [ -f "$$i" -o -f "$$i.a" ]; then \ | ||
| 709 | ( echo installing $$i; \ | ||
| 710 | if [ "$(PLATFORM)" != "Cygwin" ]; then \ | ||
| 711 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ | ||
| 712 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ | ||
| 713 | else \ | ||
| 714 | c=`echo $$i | sed 's/^lib/cyg/'`; \ | ||
| 715 | cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ | ||
| 716 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ | ||
| 717 | cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \ | ||
| 718 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \ | ||
| 719 | fi ); \ | ||
| 720 | fi; \ | ||
| 721 | done; \ | ||
| 722 | ( here="`pwd`"; \ | ||
| 723 | cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ | ||
| 724 | make -f $$here/Makefile link-shared ); \ | ||
| 725 | fi | ||
| 726 | |||
| 727 | install_docs: | ||
| 728 | @$(PERL) $(TOP)/util/mkdir-p.pl \ | ||
| 729 | $(INSTALL_PREFIX)$(MANDIR)/man1 \ | ||
| 730 | $(INSTALL_PREFIX)$(MANDIR)/man3 \ | ||
| 731 | $(INSTALL_PREFIX)$(MANDIR)/man5 \ | ||
| 732 | $(INSTALL_PREFIX)$(MANDIR)/man7 | ||
| 733 | @for i in doc/apps/*.pod; do \ | ||
| 734 | fn=`basename $$i .pod`; \ | ||
| 735 | if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \ | ||
| 736 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ | ||
| 737 | (cd `dirname $$i`; \ | ||
| 738 | sh -c "`cd ../../util; ./pod2mantest ignore` \ | ||
| 739 | --section=$$sec --center=OpenSSL \ | ||
| 740 | --release=$(VERSION) `basename $$i`") \ | ||
| 741 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ | ||
| 742 | done | ||
| 743 | @for i in doc/crypto/*.pod doc/ssl/*.pod; do \ | ||
| 744 | fn=`basename $$i .pod`; \ | ||
| 745 | if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \ | ||
| 746 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ | ||
| 747 | (cd `dirname $$i`; \ | ||
| 748 | sh -c "`cd ../../util; ./pod2mantest ignore` \ | ||
| 749 | --section=$$sec --center=OpenSSL \ | ||
| 750 | --release=$(VERSION) `basename $$i`") \ | ||
| 751 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ | ||
| 329 | done | 752 | done |
| 330 | 753 | ||
| 331 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 754 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
diff --git a/src/lib/libssl/src/apps/Makefile.ssl b/src/lib/libssl/src/apps/Makefile.ssl index 1cace40ab7..a70c495ba0 100644 --- a/src/lib/libssl/src/apps/Makefile.ssl +++ b/src/lib/libssl/src/apps/Makefile.ssl | |||
| @@ -1,65 +1,74 @@ | |||
| 1 | # | 1 | # |
| 2 | # SSLeay/apps/Makefile.ssl | 2 | # apps/Makefile.ssl |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= apps | 5 | DIR= apps |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I../include | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG= -g -static | 9 | CFLAG= -g -static |
| 10 | INSTALL_PREFIX= | ||
| 10 | INSTALLTOP= /usr/local/ssl | 11 | INSTALLTOP= /usr/local/ssl |
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | RM= /bin/rm -f | 17 | PERL= perl |
| 18 | RM= rm -f | ||
| 19 | # KRB5 stuff | ||
| 20 | KRB5_INCLUDES= | ||
| 21 | LIBKRB5= | ||
| 15 | 22 | ||
| 16 | PEX_LIBS= | 23 | PEX_LIBS= |
| 17 | EX_LIBS= | 24 | EX_LIBS= |
| 25 | EXE_EXT= | ||
| 26 | |||
| 27 | SHLIB_TARGET= | ||
| 18 | 28 | ||
| 19 | CFLAGS= -DMONOLITH $(INCLUDES) $(CFLAG) | 29 | CFLAGS= -DMONOLITH $(INCLUDES) $(CFLAG) |
| 20 | 30 | ||
| 21 | GENERAL=Makefile | 31 | GENERAL=Makefile makeapps.com install.com |
| 22 | 32 | ||
| 23 | DLIBCRYPTO=../libcrypto.a | 33 | DLIBCRYPTO=../libcrypto.a |
| 24 | DLIBSSL=../libssl.a | 34 | DLIBSSL=../libssl.a |
| 25 | LIBCRYPTO=-L.. -lcrypto | 35 | LIBCRYPTO=-L.. -lcrypto |
| 26 | LIBSSL=-L.. -lssl | 36 | LIBSSL=-L.. -lssl |
| 27 | 37 | ||
| 28 | SSLEAY= ssleay | 38 | PROGRAM= openssl |
| 29 | 39 | ||
| 30 | SCRIPTS=CA.sh der_chop | 40 | SCRIPTS=CA.sh CA.pl der_chop |
| 31 | 41 | ||
| 32 | EXE= $(SSLEAY) | 42 | EXE= $(PROGRAM)$(EXE_EXT) |
| 33 | 43 | ||
| 34 | E_EXE= verify asn1pars req dgst dh enc gendh errstr ca crl \ | 44 | E_EXE= verify asn1pars req dgst dh dhparam enc passwd gendh errstr \ |
| 35 | rsa dsa dsaparam \ | 45 | ca crl rsa rsautl dsa dsaparam \ |
| 36 | x509 genrsa s_server s_client speed \ | 46 | x509 genrsa gendsa s_server s_client speed \ |
| 37 | s_time version pkcs7 crl2pkcs7 sess_id ciphers | 47 | s_time version pkcs7 crl2pkcs7 sess_id ciphers nseq pkcs12 \ |
| 48 | pkcs8 spkac smime rand engine ocsp | ||
| 38 | 49 | ||
| 39 | PROGS= $(SSLEAY).c | 50 | PROGS= $(PROGRAM).c |
| 40 | 51 | ||
| 41 | A_OBJ=apps.o | 52 | A_OBJ=apps.o |
| 42 | A_SRC=apps.c | 53 | A_SRC=apps.c |
| 43 | S_OBJ= s_cb.o s_socket.o | 54 | S_OBJ= s_cb.o s_socket.o |
| 44 | S_SRC= s_cb.c s_socket.c | 55 | S_SRC= s_cb.c s_socket.c |
| 56 | RAND_OBJ=app_rand.o | ||
| 57 | RAND_SRC=app_rand.c | ||
| 45 | 58 | ||
| 46 | E_OBJ= verify.o asn1pars.o req.o dgst.o dh.o enc.o gendh.o errstr.o ca.o \ | 59 | E_OBJ= verify.o asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o \ |
| 47 | pkcs7.o crl2p7.o crl.o \ | 60 | ca.o pkcs7.o crl2p7.o crl.o \ |
| 48 | rsa.o dsa.o dsaparam.o \ | 61 | rsa.o rsautl.o dsa.o dsaparam.o \ |
| 49 | x509.o genrsa.o s_server.o s_client.o speed.o \ | 62 | x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o \ |
| 50 | s_time.o $(A_OBJ) $(S_OBJ) version.o sess_id.o \ | 63 | s_time.o $(A_OBJ) $(S_OBJ) $(RAND_OBJ) version.o sess_id.o \ |
| 51 | ciphers.o | 64 | ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o ocsp.o |
| 52 | |||
| 53 | # pem_mail.o | ||
| 54 | 65 | ||
| 55 | E_SRC= verify.c asn1pars.c req.c dgst.c dh.c enc.c gendh.c errstr.c ca.c \ | 66 | E_SRC= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c ca.c \ |
| 56 | pkcs7.c crl2p7.c crl.c \ | 67 | pkcs7.c crl2p7.c crl.c \ |
| 57 | rsa.c dsa.c dsaparam.c \ | 68 | rsa.c rsautl.c dsa.c dsaparam.c \ |
| 58 | x509.c genrsa.c s_server.c s_client.c speed.c \ | 69 | x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \ |
| 59 | s_time.c $(A_SRC) $(S_SRC) version.c sess_id.c \ | 70 | s_time.c $(A_SRC) $(S_SRC) $(RAND_SRC) version.c sess_id.c \ |
| 60 | ciphers.c | 71 | ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c ocsp.c |
| 61 | |||
| 62 | # pem_mail.c | ||
| 63 | 72 | ||
| 64 | SRC=$(E_SRC) | 73 | SRC=$(E_SRC) |
| 65 | 74 | ||
| @@ -75,29 +84,32 @@ top: | |||
| 75 | 84 | ||
| 76 | all: exe | 85 | all: exe |
| 77 | 86 | ||
| 78 | exe: $(EXE) | 87 | exe: $(PROGRAM) |
| 79 | 88 | ||
| 80 | req: sreq.o $(A_OBJ) $(DLIBCRYPTO) | 89 | req: sreq.o $(A_OBJ) $(DLIBCRYPTO) |
| 81 | $(CC) -o req $(CFLAG) sreq.o $(A_OBJ) $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 90 | $(CC) -o req $(CFLAG) sreq.o $(A_OBJ) $(RAND_OBJ) $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 82 | 91 | ||
| 83 | sreq.o: req.c | 92 | sreq.o: req.c |
| 84 | $(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c | 93 | $(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c |
| 85 | 94 | ||
| 86 | files: | 95 | files: |
| 87 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 96 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 88 | 97 | ||
| 89 | install: mklinks | 98 | install: |
| 90 | @for i in $(EXE) $(SCRIPTS) mklinks; \ | 99 | @for i in $(EXE); \ |
| 100 | do \ | ||
| 101 | (echo installing $$i; \ | ||
| 102 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \ | ||
| 103 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \ | ||
| 104 | done; | ||
| 105 | @for i in $(SCRIPTS); \ | ||
| 91 | do \ | 106 | do \ |
| 92 | (echo installing $$i; \ | 107 | (echo installing $$i; \ |
| 93 | cp $$i $(INSTALLTOP)/bin/$$i; \ | 108 | cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i; \ |
| 94 | chmod 755 $(INSTALLTOP)/bin/$$i ); \ | 109 | chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \ |
| 95 | done; \ | 110 | done |
| 96 | cp ssleay.cnf $(INSTALLTOP)/lib | 111 | @cp openssl.cnf $(INSTALL_PREFIX)$(OPENSSLDIR); \ |
| 97 | chmod 644 $(INSTALLTOP)/lib/ssleay.cnf | 112 | chmod 644 $(INSTALL_PREFIX)$(OPENSSLDIR)/openssl.cnf |
| 98 | cd $(INSTALLTOP)/bin; \ | ||
| 99 | /bin/sh ./mklinks; \ | ||
| 100 | /bin/rm -f ./mklinks | ||
| 101 | 113 | ||
| 102 | tags: | 114 | tags: |
| 103 | ctags $(SRC) | 115 | ctags $(SRC) |
| @@ -105,24 +117,21 @@ tags: | |||
| 105 | tests: | 117 | tests: |
| 106 | 118 | ||
| 107 | links: | 119 | links: |
| 108 | /bin/rm -f Makefile | 120 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 109 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 110 | 121 | ||
| 111 | lint: | 122 | lint: |
| 112 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 123 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 113 | 124 | ||
| 114 | depend: | 125 | depend: |
| 115 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(SRC) | 126 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 116 | 127 | ||
| 117 | dclean: | 128 | dclean: |
| 118 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 129 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 119 | mv -f Makefile.new $(MAKEFILE) | 130 | mv -f Makefile.new $(MAKEFILE) |
| 120 | 131 | ||
| 121 | errors: | ||
| 122 | |||
| 123 | clean: | 132 | clean: |
| 124 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) | 133 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) |
| 125 | /bin/rm -f req | 134 | rm -f req |
| 126 | 135 | ||
| 127 | $(DLIBSSL): | 136 | $(DLIBSSL): |
| 128 | (cd ../ssl; $(MAKE)) | 137 | (cd ../ssl; $(MAKE)) |
| @@ -130,15 +139,718 @@ $(DLIBSSL): | |||
| 130 | $(DLIBCRYPTO): | 139 | $(DLIBCRYPTO): |
| 131 | (cd ../crypto; $(MAKE)) | 140 | (cd ../crypto; $(MAKE)) |
| 132 | 141 | ||
| 133 | $(SSLEAY): progs.h $(E_OBJ) $(SSLEAY).o $(DLIBCRYPTO) $(DLIBSSL) | 142 | $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) |
| 134 | $(RM) $(SSLEAY) | 143 | $(RM) $(PROGRAM) |
| 135 | $(CC) -o $(SSLEAY) $(CFLAGS) $(SSLEAY).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBCRYPTO) $(EX_LIBS) | 144 | if [ "$(SHLIB_TARGET)" = "hpux-shared" ] ; then \ |
| 136 | 145 | $(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \ | |
| 137 | progs.h: | 146 | else \ |
| 138 | perl ./g_ssleay.pl $(E_EXE) >progs.h | 147 | $(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ |
| 139 | $(RM) $(SSLEAY).o | 148 | fi |
| 140 | 149 | -(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; \ | |
| 141 | mklinks: | 150 | LIBPATH="`pwd`"; LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; \ |
| 142 | perl ./g_ssleay.pl $(E_EXE) >progs.h | 151 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 152 | $(PERL) tools/c_rehash certs) | ||
| 153 | |||
| 154 | progs.h: progs.pl | ||
| 155 | $(PERL) progs.pl $(E_EXE) >progs.h | ||
| 156 | $(RM) $(PROGRAM).o | ||
| 143 | 157 | ||
| 144 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 158 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 159 | |||
| 160 | app_rand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 161 | app_rand.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 162 | app_rand.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 163 | app_rand.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 164 | app_rand.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 165 | app_rand.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 166 | app_rand.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 167 | app_rand.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 168 | app_rand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 169 | app_rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 170 | app_rand.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 171 | app_rand.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 172 | app_rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 173 | app_rand.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 174 | app_rand.o: ../include/openssl/x509_vfy.h app_rand.c apps.h | ||
| 175 | apps.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 176 | apps.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 177 | apps.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 178 | apps.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 179 | apps.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 180 | apps.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 181 | apps.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 182 | apps.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 183 | apps.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 184 | apps.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 185 | apps.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | ||
| 186 | apps.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 187 | apps.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 188 | apps.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 189 | apps.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 190 | apps.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 191 | apps.o: ../include/openssl/x509v3.h apps.c apps.h | ||
| 192 | asn1pars.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 193 | asn1pars.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 194 | asn1pars.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 195 | asn1pars.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 196 | asn1pars.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 197 | asn1pars.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 198 | asn1pars.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 199 | asn1pars.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 200 | asn1pars.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 201 | asn1pars.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 202 | asn1pars.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 203 | asn1pars.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 204 | asn1pars.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 205 | asn1pars.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 206 | asn1pars.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 207 | asn1pars.o: ../include/openssl/x509_vfy.h apps.h asn1pars.c | ||
| 208 | ca.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 209 | ca.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 210 | ca.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 211 | ca.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 212 | ca.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 213 | ca.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 214 | ca.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 215 | ca.o: ../include/openssl/objects.h ../include/openssl/ocsp.h | ||
| 216 | ca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 217 | ca.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 218 | ca.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 219 | ca.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 220 | ca.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 221 | ca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 222 | ca.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 223 | ca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 224 | ca.o: ../include/openssl/x509v3.h apps.h ca.c | ||
| 225 | ciphers.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 226 | ciphers.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 227 | ciphers.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 228 | ciphers.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 229 | ciphers.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 230 | ciphers.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 231 | ciphers.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 232 | ciphers.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 233 | ciphers.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 234 | ciphers.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 235 | ciphers.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 236 | ciphers.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 237 | ciphers.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 238 | ciphers.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 239 | ciphers.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 240 | ciphers.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 241 | ciphers.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 242 | ciphers.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 243 | ciphers.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 244 | ciphers.o: ciphers.c | ||
| 245 | crl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 246 | crl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 247 | crl.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 248 | crl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 249 | crl.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 250 | crl.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 251 | crl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 252 | crl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 253 | crl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 254 | crl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 255 | crl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 256 | crl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 257 | crl.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 258 | crl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 259 | crl.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 260 | crl.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h crl.c | ||
| 261 | crl2p7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 262 | crl2p7.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 263 | crl2p7.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 264 | crl2p7.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 265 | crl2p7.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 266 | crl2p7.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 267 | crl2p7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 268 | crl2p7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 269 | crl2p7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 270 | crl2p7.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 271 | crl2p7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 272 | crl2p7.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 273 | crl2p7.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 274 | crl2p7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 275 | crl2p7.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 276 | crl2p7.o: ../include/openssl/x509_vfy.h apps.h crl2p7.c | ||
| 277 | dgst.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 278 | dgst.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 279 | dgst.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 280 | dgst.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 281 | dgst.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 282 | dgst.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 283 | dgst.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 284 | dgst.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 285 | dgst.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 286 | dgst.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 287 | dgst.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 288 | dgst.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 289 | dgst.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 290 | dgst.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 291 | dgst.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 292 | dgst.o: ../include/openssl/x509_vfy.h apps.h dgst.c | ||
| 293 | dh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 294 | dh.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 295 | dh.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 296 | dh.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 297 | dh.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 298 | dh.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 299 | dh.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 300 | dh.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 301 | dh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 302 | dh.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 303 | dh.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 304 | dh.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 305 | dh.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 306 | dh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 307 | dh.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 308 | dh.o: ../include/openssl/x509_vfy.h apps.h dh.c | ||
| 309 | dsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 310 | dsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 311 | dsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 312 | dsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 313 | dsa.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 314 | dsa.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 315 | dsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 316 | dsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 317 | dsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 318 | dsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 319 | dsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 320 | dsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 321 | dsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 322 | dsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 323 | dsa.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 324 | dsa.o: ../include/openssl/x509_vfy.h apps.h dsa.c | ||
| 325 | dsaparam.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 326 | dsaparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 327 | dsaparam.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 328 | dsaparam.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 329 | dsaparam.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 330 | dsaparam.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 331 | dsaparam.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 332 | dsaparam.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 333 | dsaparam.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 334 | dsaparam.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 335 | dsaparam.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 336 | dsaparam.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 337 | dsaparam.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 338 | dsaparam.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 339 | dsaparam.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 340 | dsaparam.o: ../include/openssl/x509_vfy.h apps.h dsaparam.c | ||
| 341 | enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 342 | enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 343 | enc.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 344 | enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 345 | enc.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 346 | enc.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 347 | enc.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 348 | enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 349 | enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 350 | enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 351 | enc.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 352 | enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 353 | enc.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 354 | enc.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 355 | enc.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 356 | enc.o: ../include/openssl/x509_vfy.h apps.h enc.c | ||
| 357 | engine.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 358 | engine.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 359 | engine.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 360 | engine.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 361 | engine.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 362 | engine.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 363 | engine.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 364 | engine.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 365 | engine.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 366 | engine.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 367 | engine.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 368 | engine.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 369 | engine.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 370 | engine.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 371 | engine.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 372 | engine.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 373 | engine.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 374 | engine.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 375 | engine.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 376 | engine.o: engine.c | ||
| 377 | errstr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 378 | errstr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 379 | errstr.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 380 | errstr.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 381 | errstr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 382 | errstr.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 383 | errstr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 384 | errstr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 385 | errstr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 386 | errstr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 387 | errstr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 388 | errstr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 389 | errstr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 390 | errstr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 391 | errstr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 392 | errstr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 393 | errstr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 394 | errstr.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 395 | errstr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 396 | errstr.o: errstr.c | ||
| 397 | gendh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 398 | gendh.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 399 | gendh.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 400 | gendh.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 401 | gendh.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 402 | gendh.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 403 | gendh.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 404 | gendh.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 405 | gendh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 406 | gendh.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 407 | gendh.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 408 | gendh.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 409 | gendh.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 410 | gendh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 411 | gendh.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 412 | gendh.o: ../include/openssl/x509_vfy.h apps.h gendh.c | ||
| 413 | gendsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 414 | gendsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 415 | gendsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 416 | gendsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 417 | gendsa.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 418 | gendsa.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 419 | gendsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 420 | gendsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 421 | gendsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 422 | gendsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 423 | gendsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 424 | gendsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 425 | gendsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 426 | gendsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 427 | gendsa.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 428 | gendsa.o: ../include/openssl/x509_vfy.h apps.h gendsa.c | ||
| 429 | genrsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 430 | genrsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 431 | genrsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 432 | genrsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 433 | genrsa.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 434 | genrsa.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 435 | genrsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 436 | genrsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 437 | genrsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 438 | genrsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 439 | genrsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 440 | genrsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 441 | genrsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 442 | genrsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 443 | genrsa.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 444 | genrsa.o: ../include/openssl/x509_vfy.h apps.h genrsa.c | ||
| 445 | nseq.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 446 | nseq.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 447 | nseq.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 448 | nseq.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 449 | nseq.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 450 | nseq.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 451 | nseq.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 452 | nseq.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 453 | nseq.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 454 | nseq.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 455 | nseq.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 456 | nseq.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 457 | nseq.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 458 | nseq.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 459 | nseq.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 460 | nseq.o: ../include/openssl/x509_vfy.h apps.h nseq.c | ||
| 461 | ocsp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 462 | ocsp.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 463 | ocsp.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 464 | ocsp.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 465 | ocsp.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 466 | ocsp.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 467 | ocsp.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 468 | ocsp.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 469 | ocsp.o: ../include/openssl/objects.h ../include/openssl/ocsp.h | ||
| 470 | ocsp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 471 | ocsp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 472 | ocsp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 473 | ocsp.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 474 | ocsp.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 475 | ocsp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 476 | ocsp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 477 | ocsp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 478 | ocsp.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h | ||
| 479 | ocsp.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 480 | ocsp.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h ocsp.c | ||
| 481 | openssl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 482 | openssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 483 | openssl.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 484 | openssl.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 485 | openssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 486 | openssl.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 487 | openssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 488 | openssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 489 | openssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 490 | openssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 491 | openssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 492 | openssl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 493 | openssl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 494 | openssl.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 495 | openssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 496 | openssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 497 | openssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 498 | openssl.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 499 | openssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 500 | openssl.o: openssl.c progs.h s_apps.h | ||
| 501 | passwd.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 502 | passwd.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 503 | passwd.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 504 | passwd.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 505 | passwd.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 506 | passwd.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 507 | passwd.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 508 | passwd.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
| 509 | passwd.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 510 | passwd.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 511 | passwd.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 512 | passwd.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 513 | passwd.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 514 | passwd.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 515 | passwd.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 516 | passwd.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 517 | passwd.o: ../include/openssl/x509_vfy.h apps.h passwd.c | ||
| 518 | pkcs12.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 519 | pkcs12.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 520 | pkcs12.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 521 | pkcs12.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 522 | pkcs12.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 523 | pkcs12.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 524 | pkcs12.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 525 | pkcs12.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 526 | pkcs12.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 527 | pkcs12.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 528 | pkcs12.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | ||
| 529 | pkcs12.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 530 | pkcs12.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 531 | pkcs12.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 532 | pkcs12.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 533 | pkcs12.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 534 | pkcs12.o: pkcs12.c | ||
| 535 | pkcs7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 536 | pkcs7.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 537 | pkcs7.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 538 | pkcs7.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 539 | pkcs7.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 540 | pkcs7.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 541 | pkcs7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 542 | pkcs7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 543 | pkcs7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 544 | pkcs7.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 545 | pkcs7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 546 | pkcs7.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 547 | pkcs7.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 548 | pkcs7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 549 | pkcs7.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 550 | pkcs7.o: ../include/openssl/x509_vfy.h apps.h pkcs7.c | ||
| 551 | pkcs8.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 552 | pkcs8.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 553 | pkcs8.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 554 | pkcs8.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 555 | pkcs8.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 556 | pkcs8.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 557 | pkcs8.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 558 | pkcs8.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 559 | pkcs8.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 560 | pkcs8.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 561 | pkcs8.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | ||
| 562 | pkcs8.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 563 | pkcs8.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 564 | pkcs8.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 565 | pkcs8.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 566 | pkcs8.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h pkcs8.c | ||
| 567 | rand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 568 | rand.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 569 | rand.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 570 | rand.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 571 | rand.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 572 | rand.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 573 | rand.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 574 | rand.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 575 | rand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 576 | rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 577 | rand.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 578 | rand.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 579 | rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 580 | rand.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 581 | rand.o: ../include/openssl/x509_vfy.h apps.h rand.c | ||
| 582 | req.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 583 | req.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 584 | req.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 585 | req.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 586 | req.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 587 | req.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 588 | req.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 589 | req.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 590 | req.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 591 | req.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 592 | req.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 593 | req.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 594 | req.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 595 | req.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 596 | req.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 597 | req.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h req.c | ||
| 598 | rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 599 | rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 600 | rsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 601 | rsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 602 | rsa.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 603 | rsa.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 604 | rsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 605 | rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 606 | rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 607 | rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 608 | rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 609 | rsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 610 | rsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 611 | rsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 612 | rsa.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 613 | rsa.o: ../include/openssl/x509_vfy.h apps.h rsa.c | ||
| 614 | rsautl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 615 | rsautl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 616 | rsautl.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 617 | rsautl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 618 | rsautl.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 619 | rsautl.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 620 | rsautl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 621 | rsautl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 622 | rsautl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 623 | rsautl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 624 | rsautl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 625 | rsautl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 626 | rsautl.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 627 | rsautl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 628 | rsautl.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 629 | rsautl.o: ../include/openssl/x509_vfy.h apps.h rsautl.c | ||
| 630 | s_cb.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 631 | s_cb.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 632 | s_cb.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 633 | s_cb.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 634 | s_cb.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 635 | s_cb.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 636 | s_cb.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 637 | s_cb.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 638 | s_cb.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 639 | s_cb.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 640 | s_cb.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 641 | s_cb.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 642 | s_cb.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 643 | s_cb.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 644 | s_cb.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 645 | s_cb.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 646 | s_cb.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 647 | s_cb.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 648 | s_cb.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h s_apps.h | ||
| 649 | s_cb.o: s_cb.c | ||
| 650 | s_client.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 651 | s_client.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 652 | s_client.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 653 | s_client.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 654 | s_client.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 655 | s_client.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 656 | s_client.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 657 | s_client.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 658 | s_client.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 659 | s_client.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 660 | s_client.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 661 | s_client.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 662 | s_client.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 663 | s_client.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 664 | s_client.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 665 | s_client.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 666 | s_client.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 667 | s_client.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 668 | s_client.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 669 | s_client.o: s_apps.h s_client.c | ||
| 670 | s_server.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 671 | s_server.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 672 | s_server.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 673 | s_server.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 674 | s_server.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 675 | s_server.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 676 | s_server.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 677 | s_server.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 678 | s_server.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 679 | s_server.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 680 | s_server.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 681 | s_server.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 682 | s_server.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 683 | s_server.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 684 | s_server.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 685 | s_server.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 686 | s_server.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 687 | s_server.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 688 | s_server.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 689 | s_server.o: s_apps.h s_server.c | ||
| 690 | s_socket.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 691 | s_socket.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 692 | s_socket.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 693 | s_socket.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 694 | s_socket.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 695 | s_socket.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 696 | s_socket.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 697 | s_socket.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 698 | s_socket.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 699 | s_socket.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 700 | s_socket.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 701 | s_socket.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 702 | s_socket.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 703 | s_socket.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 704 | s_socket.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 705 | s_socket.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 706 | s_socket.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 707 | s_socket.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 708 | s_socket.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 709 | s_socket.o: s_apps.h s_socket.c | ||
| 710 | s_time.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 711 | s_time.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 712 | s_time.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 713 | s_time.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 714 | s_time.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 715 | s_time.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 716 | s_time.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 717 | s_time.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 718 | s_time.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 719 | s_time.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 720 | s_time.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 721 | s_time.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 722 | s_time.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 723 | s_time.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 724 | s_time.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 725 | s_time.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 726 | s_time.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 727 | s_time.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 728 | s_time.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 729 | s_time.o: s_apps.h s_time.c | ||
| 730 | sess_id.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 731 | sess_id.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 732 | sess_id.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 733 | sess_id.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 734 | sess_id.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 735 | sess_id.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 736 | sess_id.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 737 | sess_id.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 738 | sess_id.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 739 | sess_id.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 740 | sess_id.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 741 | sess_id.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 742 | sess_id.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 743 | sess_id.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 744 | sess_id.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 745 | sess_id.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 746 | sess_id.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 747 | sess_id.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 748 | sess_id.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 749 | sess_id.o: sess_id.c | ||
| 750 | smime.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 751 | smime.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 752 | smime.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 753 | smime.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 754 | smime.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 755 | smime.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 756 | smime.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 757 | smime.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 758 | smime.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 759 | smime.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 760 | smime.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 761 | smime.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 762 | smime.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 763 | smime.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 764 | smime.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 765 | smime.o: ../include/openssl/x509_vfy.h apps.h smime.c | ||
| 766 | speed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 767 | speed.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 768 | speed.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 769 | speed.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
| 770 | speed.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 771 | speed.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 772 | speed.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 773 | speed.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 774 | speed.o: ../include/openssl/evp.h ../include/openssl/hmac.h | ||
| 775 | speed.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
| 776 | speed.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 777 | speed.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 778 | speed.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 779 | speed.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 780 | speed.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 781 | speed.o: ../include/openssl/rand.h ../include/openssl/rc2.h | ||
| 782 | speed.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 783 | speed.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 784 | speed.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 785 | speed.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 786 | speed.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
| 787 | speed.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 788 | speed.o: ../include/openssl/x509_vfy.h apps.h speed.c testdsa.h testrsa.h | ||
| 789 | spkac.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 790 | spkac.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 791 | spkac.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 792 | spkac.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 793 | spkac.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 794 | spkac.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 795 | spkac.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 796 | spkac.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 797 | spkac.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 798 | spkac.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 799 | spkac.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 800 | spkac.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 801 | spkac.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 802 | spkac.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 803 | spkac.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 804 | spkac.o: ../include/openssl/x509_vfy.h apps.h spkac.c | ||
| 805 | verify.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 806 | verify.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 807 | verify.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 808 | verify.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 809 | verify.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 810 | verify.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 811 | verify.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 812 | verify.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 813 | verify.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 814 | verify.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 815 | verify.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 816 | verify.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 817 | verify.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 818 | verify.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 819 | verify.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 820 | verify.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h | ||
| 821 | verify.o: verify.c | ||
| 822 | version.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 823 | version.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 824 | version.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 825 | version.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 826 | version.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 827 | version.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 828 | version.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 829 | version.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 830 | version.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 831 | version.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 832 | version.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 833 | version.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 834 | version.o: ../include/openssl/rand.h ../include/openssl/rc4.h | ||
| 835 | version.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 836 | version.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 837 | version.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 838 | version.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 839 | version.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
| 840 | version.o: version.c | ||
| 841 | x509.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 842 | x509.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 843 | x509.o: ../include/openssl/conf.h ../include/openssl/crypto.h | ||
| 844 | x509.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 845 | x509.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 846 | x509.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 847 | x509.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 848 | x509.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 849 | x509.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 850 | x509.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 851 | x509.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 852 | x509.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 853 | x509.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 854 | x509.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
| 855 | x509.o: ../include/openssl/ui.h ../include/openssl/x509.h | ||
| 856 | x509.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h x509.c | ||
diff --git a/src/lib/libssl/src/apps/der_chop b/src/lib/libssl/src/apps/der_chop index 4639330c10..2ee9d6bfd4 100644 --- a/src/lib/libssl/src/apps/der_chop +++ b/src/lib/libssl/src/apps/der_chop | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #!/usr/local/bin/perl | 1 | #!/usr/bin/perl |
| 2 | # | 2 | # |
| 3 | # der_chop ... this is one total hack that Eric is really not proud of | 3 | # der_chop ... this is one total hack that Eric is really not proud of |
| 4 | # so don't look at it and don't ask for support | 4 | # so don't look at it and don't ask for support |
| @@ -42,13 +42,13 @@ $md4_cmd="md4"; | |||
| 42 | $rsa_cmd="rsa -des -inform der "; | 42 | $rsa_cmd="rsa -des -inform der "; |
| 43 | 43 | ||
| 44 | # this was the 0.5.x way of doing things ... | 44 | # this was the 0.5.x way of doing things ... |
| 45 | $cmd="ssleay asn1parse"; | 45 | $cmd="openssl asn1parse"; |
| 46 | $x509_cmd="ssleay x509"; | 46 | $x509_cmd="openssl x509"; |
| 47 | $crl_cmd="ssleay crl"; | 47 | $crl_cmd="openssl crl"; |
| 48 | $rc4_cmd="ssleay rc4"; | 48 | $rc4_cmd="openssl rc4"; |
| 49 | $md2_cmd="ssleay md2"; | 49 | $md2_cmd="openssl md2"; |
| 50 | $md4_cmd="ssleay md4"; | 50 | $md4_cmd="openssl md4"; |
| 51 | $rsa_cmd="ssleay rsa -des -inform der "; | 51 | $rsa_cmd="openssl rsa -des -inform der "; |
| 52 | 52 | ||
| 53 | &Getopts('vd:') || die "usage:$0 [-v] [-d num] file"; | 53 | &Getopts('vd:') || die "usage:$0 [-v] [-d num] file"; |
| 54 | $depth=($opt_d =~ /^\d+$/)?$opt_d:0; | 54 | $depth=($opt_d =~ /^\d+$/)?$opt_d:0; |
diff --git a/src/lib/libssl/src/certs/ca-cert.pem b/src/lib/libssl/src/certs/ca-cert.pem index 6dd974d70d..bcba68aefa 100644 --- a/src/lib/libssl/src/certs/ca-cert.pem +++ b/src/lib/libssl/src/certs/ca-cert.pem | |||
| @@ -1,18 +1,20 @@ | |||
| 1 | issuer= /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test PCA (1024 bit) | ||
| 2 | subject=/C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test CA (1024 bit) | ||
| 3 | -----BEGIN CERTIFICATE----- | 1 | -----BEGIN CERTIFICATE----- |
| 4 | MIICJjCCAY8CAQAwDQYJKoZIhvcNAQEEBQAwXDELMAkGA1UEBhMCQVUxEzARBgNV | 2 | MIIC5TCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQQFADBcMQswCQYDVQQGEwJBVTET |
| 5 | BAgTClF1ZWVuc2xhbmQxGjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRwwGgYD | 3 | MBEGA1UECBMKUXVlZW5zbGFuZDEaMBgGA1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQx |
| 6 | VQQDExNUZXN0IFBDQSAoMTAyNCBiaXQpMB4XDTk3MDYwOTEzNTc0M1oXDTAxMDYw | 4 | HDAaBgNVBAMTE1Rlc3QgUENBICgxMDI0IGJpdCkwHhcNOTkxMjAyMjEzODUxWhcN |
| 7 | OTEzNTc0M1owWzELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQxGjAY | 5 | MDUwNzEwMjEzODUxWjBbMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFu |
| 8 | BgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRswGQYDVQQDExJUZXN0IENBICgxMDI0 | 6 | ZDEaMBgGA1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxGzAZBgNVBAMTElRlc3QgQ0Eg |
| 9 | IGJpdCkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKO7o8t116VP6cgybTsZ | 7 | KDEwMjQgYml0KTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAo7ujy3XXpU/p |
| 10 | DCZhr95nYlZuya3aCi1IKoztqwWnjbmDFIriOqGFPrZQ+moMETC9D59iRW/dFXSv | 8 | yDJtOxkMJmGv3mdiVm7JrdoKLUgqjO2rBaeNuYMUiuI6oYU+tlD6agwRML0Pn2JF |
| 11 | 1F65ka/XY2hLh9exCCo7XuUcDs53Qp3bI3AmMqHjgzE8oO3ajyJAzJkTTOUecQU2 | 9 | b90VdK/UXrmRr9djaEuH17EIKjte5RwOzndCndsjcCYyoeODMTyg7dqPIkDMmRNM |
| 12 | mw/gI4tMM0LqWMQS7luTy4+xAgMBAAEwDQYJKoZIhvcNAQEEBQADgYEAM7achv3v | 10 | 5R5xBTabD+Aji0wzQupYxBLuW5PLj7ECAwEAAaOBtzCBtDAdBgNVHQ4EFgQU1WWA |
| 13 | hLQJcv/65eGEpBXM40ZDVoFQFFJWaY5p883HTqLB1x4FdzsXHH0QKBTcKpWwqyu4 | 11 | U42mkhi3ecgey1dsJjU61+UwgYQGA1UdIwR9MHuAFE0RaEcrj18q1dw+G6nJbsTW |
| 14 | YDm3fb8oDugw72bCzfyZK/zVZPR/hVlqI/fvU109Qoc+7oPvIXWky71HfcK6ZBCA | 12 | R213oWCkXjBcMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFuZDEaMBgG |
| 15 | q30KIqGM/uoM60INq97qjDmCJapagcNBGQs= | 13 | A1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxHDAaBgNVBAMTE1Rlc3QgUENBICgxMDI0 |
| 14 | IGJpdCmCAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQBb39BRphHL | ||
| 15 | 6aRAQyymsvBvPSCiG9+kR0R1L23aTpNbhXp2BebyFjbEQYZc2kWGiKKcHkNECA35 | ||
| 16 | 3d4LoqUlVey8DFyafOIJd9hxdZfg+rxlHMxnL7uCJRmx9+xB411Jtsol9/wg1uCK | ||
| 17 | sleGpgB4j8cG2SVCz7V2MNZNK+d5QCnR7A== | ||
| 16 | -----END CERTIFICATE----- | 18 | -----END CERTIFICATE----- |
| 17 | -----BEGIN RSA PRIVATE KEY----- | 19 | -----BEGIN RSA PRIVATE KEY----- |
| 18 | MIICXQIBAAKBgQCju6PLddelT+nIMm07GQwmYa/eZ2JWbsmt2gotSCqM7asFp425 | 20 | MIICXQIBAAKBgQCju6PLddelT+nIMm07GQwmYa/eZ2JWbsmt2gotSCqM7asFp425 |
diff --git a/src/lib/libssl/src/certs/pca-cert.pem b/src/lib/libssl/src/certs/pca-cert.pem index 140e9a6b43..9d754d460d 100644 --- a/src/lib/libssl/src/certs/pca-cert.pem +++ b/src/lib/libssl/src/certs/pca-cert.pem | |||
| @@ -1,18 +1,20 @@ | |||
| 1 | issuer= /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test PCA (1024 bit) | ||
| 2 | subject=/C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test PCA (1024 bit) | ||
| 3 | -----BEGIN CERTIFICATE----- | 1 | -----BEGIN CERTIFICATE----- |
| 4 | MIICJzCCAZACAQAwDQYJKoZIhvcNAQEEBQAwXDELMAkGA1UEBhMCQVUxEzARBgNV | 2 | MIIC5jCCAk+gAwIBAgIBADANBgkqhkiG9w0BAQQFADBcMQswCQYDVQQGEwJBVTET |
| 5 | BAgTClF1ZWVuc2xhbmQxGjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRwwGgYD | 3 | MBEGA1UECBMKUXVlZW5zbGFuZDEaMBgGA1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQx |
| 6 | VQQDExNUZXN0IFBDQSAoMTAyNCBiaXQpMB4XDTk3MDYwOTEzNTczN1oXDTAxMDYw | 4 | HDAaBgNVBAMTE1Rlc3QgUENBICgxMDI0IGJpdCkwHhcNOTkxMjAyMjEzNTQ4WhcN |
| 7 | OTEzNTczN1owXDELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQxGjAY | 5 | MDUwNzExMjEzNTQ4WjBcMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFu |
| 6 | ZDEaMBgGA1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxHDAaBgNVBAMTE1Rlc3QgUENB | ||
| 7 | ICgxMDI0IGJpdCkwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAJ2haT/f5Zwy | ||
| 8 | V+MiuSDjSR62adBoSiBB7Usty44lXqsp9RICw+DCCxpsn/CfxPEDXLLd4olsWXc6 | ||
| 9 | JRcxGynbYmnzk+Z6aIPPJQhK3CTvaqGnWKZsA1m+WaUIUqJCuNTK4N+7hMAGaf6S | ||
| 10 | S3e9HVgEQ4a34gXJ7VQFVIBNV1EnZRWHAgMBAAGjgbcwgbQwHQYDVR0OBBYEFE0R | ||
| 11 | aEcrj18q1dw+G6nJbsTWR213MIGEBgNVHSMEfTB7gBRNEWhHK49fKtXcPhupyW7E | ||
| 12 | 1kdtd6FgpF4wXDELMAkGA1UEBhMCQVUxEzARBgNVBAgTClF1ZWVuc2xhbmQxGjAY | ||
| 8 | BgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRwwGgYDVQQDExNUZXN0IFBDQSAoMTAy | 13 | BgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRwwGgYDVQQDExNUZXN0IFBDQSAoMTAy |
| 9 | NCBiaXQpMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCdoWk/3+WcMlfjIrkg | 14 | NCBiaXQpggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAUa8B3pho |
| 10 | 40ketmnQaEogQe1LLcuOJV6rKfUSAsPgwgsabJ/wn8TxA1yy3eKJbFl3OiUXMRsp | 15 | +Mvxeq9HsEzJxHIFQla05S5J/e/V+DQTYoKiRFchKPrDAdrzYSEvP3h4QJEtsNqQ |
| 11 | 22Jp85PmemiDzyUIStwk72qhp1imbANZvlmlCFKiQrjUyuDfu4TABmn+kkt3vR1Y | 16 | JfOxg5M42uLFq7aPGWkF6ZZqZsYS+zA9IVT14g7gNA6Ne+5QtJqQtH9HA24st0T0 |
| 12 | BEOGt+IFye1UBVSATVdRJ2UVhwIDAQABMA0GCSqGSIb3DQEBBAUAA4GBABNA1u/S | 17 | Tga/lZ9M2ovImovaxSL/kRHbpCWcqWVxpOw= |
| 13 | Cg/LJZWb7GliiKJsvuhxlE4E5JxQF2zMub/CSNbF97//tYSyj96sxeFQxZXbcjm9 | ||
| 14 | xt6mr/xNLA4szNQMJ4P+L7b5e/jC5DSqlwS+CUYJgaFs/SP+qJoCSu1bR3IM9XWO | ||
| 15 | cRBpDmcBbYLkSyB92WURvsZ1LtjEcn+cdQVI | ||
| 16 | -----END CERTIFICATE----- | 18 | -----END CERTIFICATE----- |
| 17 | -----BEGIN RSA PRIVATE KEY----- | 19 | -----BEGIN RSA PRIVATE KEY----- |
| 18 | MIICXAIBAAKBgQCdoWk/3+WcMlfjIrkg40ketmnQaEogQe1LLcuOJV6rKfUSAsPg | 20 | MIICXAIBAAKBgQCdoWk/3+WcMlfjIrkg40ketmnQaEogQe1LLcuOJV6rKfUSAsPg |
diff --git a/src/lib/libssl/src/certs/vsign2.pem b/src/lib/libssl/src/certs/vsign2.pem index 2386e149d0..d8bdd8c812 100644 --- a/src/lib/libssl/src/certs/vsign2.pem +++ b/src/lib/libssl/src/certs/vsign2.pem | |||
| @@ -1,31 +1,18 @@ | |||
| 1 | subject=/L=Internet/O=VeriSign, Inc./OU=VeriSign Class 2 CA - Individual Subscriber | 1 | subject=/C=US/O=VeriSign, Inc./OU=Class 2 Public Primary Certification Authority |
| 2 | issuer= /L=Internet/O=VeriSign, Inc./OU=VeriSign Class 2 CA - Individual Subscriber | 2 | notBefore=Jan 29 00:00:00 1996 GMT |
| 3 | 3 | notAfter=Jan 7 23:59:59 2004 GMT | |
| 4 | -----BEGIN CERTIFICATE----- | 4 | -----BEGIN CERTIFICATE----- |
| 5 | MIIEkzCCA/ygAwIBAgIRANDTUpSRL3nTFeMrMayFSPAwDQYJKoZIhvcNAQECBQAw | 5 | MIICPTCCAaYCEQC6WslMBTuS1qe2307QU5INMA0GCSqGSIb3DQEBAgUAMF8xCzAJ |
| 6 | YjERMA8GA1UEBxMISW50ZXJuZXQxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTQw | 6 | BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE3MDUGA1UECxMuQ2xh |
| 7 | MgYDVQQLEytWZXJpU2lnbiBDbGFzcyAyIENBIC0gSW5kaXZpZHVhbCBTdWJzY3Jp | 7 | c3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw05 |
| 8 | YmVyMB4XDTk2MDYwNDAwMDAwMFoXDTk4MDYwNDIzNTk1OVowYjERMA8GA1UEBxMI | 8 | NjAxMjkwMDAwMDBaFw0wNDAxMDcyMzU5NTlaMF8xCzAJBgNVBAYTAlVTMRcwFQYD |
| 9 | SW50ZXJuZXQxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTQwMgYDVQQLEytWZXJp | 9 | VQQKEw5WZXJpU2lnbiwgSW5jLjE3MDUGA1UECxMuQ2xhc3MgMiBQdWJsaWMgUHJp |
| 10 | U2lnbiBDbGFzcyAyIENBIC0gSW5kaXZpZHVhbCBTdWJzY3JpYmVyMIGfMA0GCSqG | 10 | bWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCBnzANBgkqhkiG9w0BAQEFAAOB |
| 11 | SIb3DQEBAQUAA4GNADCBiQKBgQC6A+2czKGRcYMfm8gdnk+0de99TDDzsqo0v5nb | 11 | jQAwgYkCgYEAtlqLow1qI4OAa885h/QhEzMGTCWi7VUSl8WngLn6g8EgoPovFQ18 |
| 12 | RsbUmMcdRQ7nsMbRWe0SAb/9QoLTZ/cJ0iOBqdrkz7UpqqKarVoTSdlSMVM92tWp | 12 | oWBrfnks+gYPOq72G2+x0v8vKFJfg31LxHq3+GYfgFT8t8KOWUoUV0bRmpO+QZED |
| 13 | 3bJncZHQD1t4xd6lQVdI1/T6R+5J0T1ukOdsI9Jmf+F28S6g3R3L1SFwiHKeZKZv | 13 | uxWAk1zr58wIbD8+s0r8/0tsI9VQgiZEGY4jw3HqGSRHBJ51v8imAB8CAwEAATAN |
| 14 | z+793wIDAQABo4ICRzCCAkMwggIpBgNVHQMBAf8EggIdMIICGTCCAhUwggIRBgtg | 14 | BgkqhkiG9w0BAQIFAAOBgQC2AB+TV6QHp0DOZUA/VV7t7/pUSaUw1iF8YYfug5ML |
| 15 | hkgBhvhFAQcBATCCAgAWggGrVGhpcyBjZXJ0aWZpY2F0ZSBpbmNvcnBvcmF0ZXMg | 15 | v7Qz8pisnwa/TqjOFIFMywROWMPPX+5815pvy0GKt3+BuP+EYcYnQ2UdDOyxAArd |
| 16 | YnkgcmVmZXJlbmNlLCBhbmQgaXRzIHVzZSBpcyBzdHJpY3RseSBzdWJqZWN0IHRv | 16 | G6S7x3ggKLKi3TaVLuFUT79guXdoEZkj6OpS6KoATmdOu5C1RZtG644W78QzWzM9 |
| 17 | LCB0aGUgVmVyaVNpZ24gQ2VydGlmaWNhdGlvbiBQcmFjdGljZSBTdGF0ZW1lbnQg | 17 | 1Q== |
| 18 | KENQUyksIGF2YWlsYWJsZSBhdDogaHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL0NQ | ||
| 19 | Uy0xLjA7IGJ5IEUtbWFpbCBhdCBDUFMtcmVxdWVzdHNAdmVyaXNpZ24uY29tOyBv | ||
| 20 | ciBieSBtYWlsIGF0IFZlcmlTaWduLCBJbmMuLCAyNTkzIENvYXN0IEF2ZS4sIE1v | ||
| 21 | dW50YWluIFZpZXcsIENBIDk0MDQzIFVTQSBUZWwuICsxICg0MTUpIDk2MS04ODMw | ||
| 22 | IENvcHlyaWdodCAoYykgMTk5NiBWZXJpU2lnbiwgSW5jLiAgQWxsIFJpZ2h0cyBS | ||
| 23 | ZXNlcnZlZC4gQ0VSVEFJTiBXQVJSQU5USUVTIERJU0NMQUlNRUQgYW5kIExJQUJJ | ||
| 24 | TElUWSBMSU1JVEVELqAOBgxghkgBhvhFAQcBAQGhDgYMYIZIAYb4RQEHAQECMC8w | ||
| 25 | LRYraHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3JlcG9zaXRvcnkvQ1BTLTEuMDAU | ||
| 26 | BglghkgBhvhCAQEBAf8EBAMCAgQwDQYJKoZIhvcNAQECBQADgYEApRJRkNBqLLgs | ||
| 27 | 53IR/d18ODdLOWMTZ+QOOxBrq460iBEdUwgF8vmPRX1ku7UiDeNzaLlurE6eFqHq | ||
| 28 | 2zPyK5j60zfTLVJMWKcQWwTJLjHtXrW8pxhNtFc6Fdvy5ZkHnC/9NIl7/t4U6WqB | ||
| 29 | p4y+p7SdMIkEwIZfds0VbnQyX5MRUJY= | ||
| 30 | -----END CERTIFICATE----- | 18 | -----END CERTIFICATE----- |
| 31 | |||
diff --git a/src/lib/libssl/src/crypto/Makefile.ssl b/src/lib/libssl/src/crypto/Makefile.ssl index efdbba38ac..dd755f49fb 100644 --- a/src/lib/libssl/src/crypto/Makefile.ssl +++ b/src/lib/libssl/src/crypto/Makefile.ssl | |||
| @@ -5,157 +5,210 @@ | |||
| 5 | DIR= crypto | 5 | DIR= crypto |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDE= -I. -I../include | 8 | INCLUDE= -I. -I$(TOP) -I../include |
| 9 | INCLUDES= -I.. -I../../include | 9 | INCLUDES= -I.. -I../.. -I../../include |
| 10 | CFLAG= -g | 10 | CFLAG= -g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP= /usr/local/ssl | 13 | INSTALLTOP= /usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | RM= /bin/rm -f | 18 | RM= rm -f |
| 16 | AR= ar r | 19 | AR= ar r |
| 17 | 20 | ||
| 18 | MAKE= make -f Makefile.ssl | ||
| 19 | MAKEDEPEND= makedepend -f Makefile.ssl | ||
| 20 | MAKEFILE= Makefile.ssl | ||
| 21 | |||
| 22 | PEX_LIBS= | 21 | PEX_LIBS= |
| 23 | EX_LIBS= | 22 | EX_LIBS= |
| 24 | 23 | ||
| 25 | CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS=" \"$(CC) $(CFLAG)\" " | 24 | CFLAGS= $(INCLUDE) $(CFLAG) |
| 26 | 25 | ||
| 27 | ERR=crypto | ||
| 28 | ERRC=cpt_err | ||
| 29 | 26 | ||
| 30 | LIBS= | 27 | LIBS= |
| 31 | 28 | ||
| 32 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ | 29 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ |
| 33 | des rc2 rc4 rc5 idea bf cast \ | 30 | des rc2 rc4 rc5 idea bf cast \ |
| 34 | bn rsa dsa dh \ | 31 | bn ec rsa dsa dh dso engine aes \ |
| 35 | buffer bio stack lhash rand err objects \ | 32 | buffer bio stack lhash rand err objects \ |
| 36 | evp pem x509 \ | 33 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 |
| 37 | asn1 conf txt_db pkcs7 | ||
| 38 | 34 | ||
| 39 | GENERAL=Makefile README | 35 | GENERAL=Makefile README crypto-lib.com install.com |
| 40 | 36 | ||
| 41 | LIB= $(TOP)/libcrypto.a | 37 | LIB= $(TOP)/libcrypto.a |
| 42 | LIBSRC= cryptlib.c mem.c cversion.c ex_data.c $(ERRC).c | 38 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
| 43 | LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o $(ERRC).o | 39 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c |
| 40 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o | ||
| 44 | 41 | ||
| 45 | SRC= $(LIBSRC) | 42 | SRC= $(LIBSRC) |
| 46 | 43 | ||
| 47 | EXHEADER= crypto.h cryptall.h | 44 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \ |
| 48 | HEADER= cryptlib.h date.h $(EXHEADER) | 45 | ossl_typ.h |
| 46 | HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER) | ||
| 49 | 47 | ||
| 50 | ALL= $(GENERAL) $(SRC) $(HEADER) | 48 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 51 | 49 | ||
| 52 | top: | 50 | top: |
| 53 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | 51 | @(cd ..; $(MAKE) DIRS=$(DIR) all) |
| 54 | 52 | ||
| 55 | all: date.h lib subdirs | 53 | all: buildinf.h lib subdirs shared |
| 54 | |||
| 55 | buildinf.h: ../Makefile.ssl | ||
| 56 | ( echo "#ifndef MK1MF_BUILD"; \ | ||
| 57 | echo ' /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */'; \ | ||
| 58 | echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \ | ||
| 59 | echo ' #define PLATFORM "$(PLATFORM)"'; \ | ||
| 60 | echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \ | ||
| 61 | echo '#endif' ) >buildinf.h | ||
| 56 | 62 | ||
| 57 | date.h: ../Makefile.ssl ../VERSION | 63 | testapps: |
| 58 | echo "#define DATE \"`date`\"" >date.h | 64 | if echo ${SDIRS} | fgrep ' des '; \ |
| 65 | then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi | ||
| 66 | cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps | ||
| 59 | 67 | ||
| 60 | subdirs: | 68 | subdirs: |
| 61 | @for i in $(SDIRS) ;\ | 69 | @for i in $(SDIRS) ;\ |
| 62 | do \ | 70 | do \ |
| 63 | (cd $$i; echo "making all in $$i..."; \ | 71 | (cd $$i && echo "making all in crypto/$$i..." && \ |
| 64 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' all ); \ | 72 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ |
| 65 | done; | 73 | done; |
| 66 | 74 | ||
| 67 | files: | 75 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | @for i in $(SDIRS) ;\ | 77 | @for i in $(SDIRS) ;\ |
| 70 | do \ | 78 | do \ |
| 71 | (cd $$i; echo "making 'files' in $$i..."; \ | 79 | (cd $$i && echo "making 'files' in crypto/$$i..." && \ |
| 72 | $(MAKE) files ); \ | 80 | $(MAKE) PERL='${PERL}' files ); \ |
| 73 | done; | 81 | done; |
| 74 | 82 | ||
| 75 | links: | 83 | links: |
| 76 | /bin/rm -f Makefile | 84 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 85 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../include $(HEADER) ; | 86 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../test $(TEST) ; | 87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
| 80 | $(TOP)/util/mklink.sh ../apps $(APPS) ; | 88 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 81 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 89 | @for i in $(SDIRS); do \ |
| 82 | @for i in $(SDIRS) ;\ | 90 | (cd $$i && echo "making links in crypto/$$i..." && \ |
| 83 | do \ | 91 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ |
| 84 | (cd $$i; echo "making links in $$i..."; \ | ||
| 85 | $(MAKE) links ); \ | ||
| 86 | done; | 92 | done; |
| 87 | 93 | ||
| 88 | lib: $(LIBOBJ) | 94 | lib: $(LIBOBJ) |
| 89 | $(AR) $(LIB) $(LIBOBJ) | 95 | $(AR) $(LIB) $(LIBOBJ) |
| 90 | sh $(TOP)/util/ranlib.sh $(LIB) | 96 | $(RANLIB) $(LIB) || echo Never mind. |
| 91 | @touch lib | 97 | @touch lib |
| 92 | 98 | ||
| 99 | shared: | ||
| 100 | if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 101 | (cd ..; make $(SHARED_LIB)); \ | ||
| 102 | fi | ||
| 103 | |||
| 93 | libs: | 104 | libs: |
| 94 | @for i in $(SDIRS) ;\ | 105 | @for i in $(SDIRS) ;\ |
| 95 | do \ | 106 | do \ |
| 96 | (cd $$i; echo "making libs in $$i..."; \ | 107 | (cd $$i && echo "making libs in crypto/$$i..." && \ |
| 97 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ | 108 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ |
| 98 | done; | 109 | done; |
| 99 | 110 | ||
| 100 | tests: | 111 | tests: |
| 101 | @for i in $(SDIRS) ;\ | 112 | @for i in $(SDIRS) ;\ |
| 102 | do \ | 113 | do \ |
| 103 | (cd $$i; echo "making tests in $$i..."; \ | 114 | (cd $$i && echo "making tests in crypto/$$i..." && \ |
| 104 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ | 115 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ |
| 105 | done; | 116 | done; |
| 106 | 117 | ||
| 107 | install: | 118 | install: |
| 108 | @for i in $(EXHEADER) ;\ | 119 | @for i in $(EXHEADER) ;\ |
| 109 | do \ | 120 | do \ |
| 110 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 111 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 112 | done; | 123 | done; |
| 113 | @for i in $(SDIRS) ;\ | 124 | @for i in $(SDIRS) ;\ |
| 114 | do \ | 125 | do \ |
| 115 | (cd $$i; echo "making install in $$i..."; \ | 126 | (cd $$i && echo "making install in crypto/$$i..." && \ |
| 116 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ | 127 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ |
| 117 | done; | 128 | done; |
| 118 | 129 | ||
| 119 | lint: | 130 | lint: |
| 120 | @for i in $(SDIRS) ;\ | 131 | @for i in $(SDIRS) ;\ |
| 121 | do \ | 132 | do \ |
| 122 | (cd $$i; echo "making lint in $$i..."; \ | 133 | (cd $$i && echo "making lint in crypto/$$i..." && \ |
| 123 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ | 134 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ |
| 124 | done; | 135 | done; |
| 125 | 136 | ||
| 126 | depend: | 137 | depend: |
| 127 | $(MAKEDEPEND) $(INCLUDE) $(PROGS) $(LIBSRC) | 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
| 139 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | ||
| 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | ||
| 128 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
| 129 | do \ | 142 | do \ |
| 130 | (cd $$i; echo "making depend in $$i..."; \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
| 131 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' MAKEDEPEND='${MAKEDEPEND}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ |
| 132 | done; | 145 | done; |
| 133 | 146 | ||
| 134 | clean: | 147 | clean: |
| 135 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 148 | rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 136 | @for i in $(SDIRS) ;\ | 149 | @for i in $(SDIRS) ;\ |
| 137 | do \ | 150 | do \ |
| 138 | (cd $$i; echo "making clean in $$i..."; \ | 151 | (cd $$i && echo "making clean in crypto/$$i..." && \ |
| 139 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ | 152 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ |
| 140 | done; | 153 | done; |
| 141 | 154 | ||
| 142 | dclean: | 155 | dclean: |
| 143 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 156 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 144 | mv -f Makefile.new $(MAKEFILE) | 157 | mv -f Makefile.new $(MAKEFILE) |
| 145 | @for i in $(SDIRS) ;\ | 158 | @for i in $(SDIRS) ;\ |
| 146 | do \ | 159 | do \ |
| 147 | (cd $$i; echo "making dclean in $$i..."; \ | 160 | (cd $$i && echo "making dclean in crypto/$$i..." && \ |
| 148 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ | 161 | $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ |
| 149 | done; | ||
| 150 | |||
| 151 | errors: | ||
| 152 | perl ./err/err_code.pl -conf err/ssleay.ec *.c */*.c ../ssl/*.c ../rsaref/*.c | ||
| 153 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 154 | perl err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 155 | @for i in $(SDIRS) ;\ | ||
| 156 | do \ | ||
| 157 | (cd $$i; echo "making errors in $$i..."; \ | ||
| 158 | $(MAKE) errors ); \ | ||
| 159 | done; | 162 | done; |
| 160 | 163 | ||
| 161 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 164 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 165 | |||
| 166 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 167 | cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 168 | cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 169 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | ||
| 170 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c | ||
| 171 | cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 172 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 173 | cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 174 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 175 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 176 | cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h | ||
| 177 | cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 178 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 179 | cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | ||
| 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c | ||
| 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 187 | ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 188 | ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 189 | ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c | ||
| 190 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 191 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 192 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 193 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 194 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 195 | mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c | ||
| 196 | mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 197 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 198 | mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 199 | mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 200 | mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 201 | mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c | ||
| 202 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c | ||
| 203 | o_time.o: o_time.h | ||
| 204 | tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 205 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 206 | tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 207 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 208 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 209 | tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h | ||
| 210 | tmdiff.o: tmdiff.c | ||
| 211 | uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 212 | uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 213 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 214 | uid.o: ../include/openssl/symhacks.h uid.c | ||
diff --git a/src/lib/libssl/src/crypto/asn1/Makefile.ssl b/src/lib/libssl/src/crypto/asn1/Makefile.ssl index 30751bd156..09d4cb4896 100644 --- a/src/lib/libssl/src/crypto/asn1/Makefile.ssl +++ b/src/lib/libssl/src/crypto/asn1/Makefile.ssl | |||
| @@ -5,57 +5,52 @@ | |||
| 5 | DIR= asn1 | 5 | DIR= asn1 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=asn1 | ||
| 19 | ERRC=asn1_err | ||
| 20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ | 26 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ |
| 26 | a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | 27 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ |
| 27 | a_sign.c a_digest.c a_verify.c \ | 28 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ |
| 28 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ | 29 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ |
| 29 | x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ | 30 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ |
| 30 | d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \ | ||
| 31 | d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \ | ||
| 32 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | 31 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ |
| 33 | t_req.c t_x509.c t_pkey.c \ | 32 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ |
| 34 | p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ | 33 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ |
| 35 | p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ | 34 | f_int.c f_string.c n_pkey.c \ |
| 36 | f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ | 35 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ |
| 37 | a_hdr.c x_pkey.c a_bool.c x_exten.c \ | 36 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ |
| 38 | asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ | 37 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
| 39 | evp_asn1.c | 38 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
| 40 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ | 39 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
| 41 | a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | 40 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ |
| 42 | a_sign.o a_digest.o a_verify.o \ | 41 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ |
| 43 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ | 42 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ |
| 44 | x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \ | ||
| 45 | d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \ | ||
| 46 | d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \ | ||
| 47 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | 43 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ |
| 48 | t_req.o t_x509.o t_pkey.o \ | 44 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ |
| 49 | p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ | 45 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
| 50 | p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ | 46 | f_int.o f_string.o n_pkey.o \ |
| 51 | f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ | 47 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ |
| 52 | a_hdr.o x_pkey.o a_bool.o x_exten.o \ | 48 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ |
| 53 | asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ | 49 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o |
| 54 | evp_asn1.o | ||
| 55 | 50 | ||
| 56 | SRC= $(LIBSRC) | 51 | SRC= $(LIBSRC) |
| 57 | 52 | ||
| 58 | EXHEADER= asn1.h asn1_mac.h | 53 | EXHEADER= asn1.h asn1_mac.h asn1t.h |
| 59 | HEADER= $(EXHEADER) | 54 | HEADER= $(EXHEADER) |
| 60 | 55 | ||
| 61 | ALL= $(GENERAL) $(SRC) $(HEADER) | 56 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -75,24 +70,23 @@ all: lib | |||
| 75 | 70 | ||
| 76 | lib: $(LIBOBJ) | 71 | lib: $(LIBOBJ) |
| 77 | $(AR) $(LIB) $(LIBOBJ) | 72 | $(AR) $(LIB) $(LIBOBJ) |
| 78 | sh $(TOP)/util/ranlib.sh $(LIB) | 73 | $(RANLIB) $(LIB) || echo Never mind. |
| 79 | @touch lib | 74 | @touch lib |
| 80 | 75 | ||
| 81 | files: | 76 | files: |
| 82 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 77 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 83 | 78 | ||
| 84 | links: | 79 | links: |
| 85 | /bin/rm -f Makefile | 80 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 86 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 87 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 88 | $(TOP)/util/mklink.sh ../../test $(TEST) | 83 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 89 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 90 | 84 | ||
| 91 | install: | 85 | install: |
| 92 | @for i in $(EXHEADER) ; \ | 86 | @for i in $(EXHEADER) ; \ |
| 93 | do \ | 87 | do \ |
| 94 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 88 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 95 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 89 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 96 | done; | 90 | done; |
| 97 | 91 | ||
| 98 | tags: | 92 | tags: |
| @@ -104,17 +98,789 @@ lint: | |||
| 104 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 105 | 99 | ||
| 106 | depend: | 100 | depend: |
| 107 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 101 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 108 | 102 | ||
| 109 | dclean: | 103 | dclean: |
| 110 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 111 | mv -f Makefile.new $(MAKEFILE) | 105 | mv -f Makefile.new $(MAKEFILE) |
| 112 | 106 | ||
| 113 | clean: | 107 | clean: |
| 114 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 108 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 115 | 109 | ||
| 116 | errors: | ||
| 117 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 118 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 119 | 110 | ||
| 120 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 112 | |||
| 113 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 118 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 119 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 120 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
| 121 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 122 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 123 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 124 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 125 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 126 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 127 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 128 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | a_bool.o: ../cryptlib.h a_bool.c | ||
| 130 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 131 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 132 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 133 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 134 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 135 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 137 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
| 138 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 139 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 140 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 141 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 142 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 143 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
| 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
| 147 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 148 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 149 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 151 | a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 152 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 153 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 154 | a_digest.o: ../../include/openssl/opensslconf.h | ||
| 155 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 157 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 158 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 159 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 160 | a_digest.o: ../cryptlib.h a_digest.c | ||
| 161 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 162 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 163 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 164 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 165 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 166 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 167 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 168 | a_dup.o: ../cryptlib.h a_dup.c | ||
| 169 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 170 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 171 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 172 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 173 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 174 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 175 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 176 | a_enum.o: ../cryptlib.h a_enum.c | ||
| 177 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 178 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 179 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 180 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 181 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 182 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 184 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
| 185 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 186 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 187 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 188 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 189 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 190 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 191 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 192 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 193 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
| 194 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 195 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 196 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 197 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 198 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 199 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 200 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 201 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
| 202 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 203 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 204 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 205 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 206 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 207 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 208 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 209 | a_int.o: ../cryptlib.h a_int.c | ||
| 210 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 211 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 212 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 213 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 214 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 215 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 216 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 217 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
| 218 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 219 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 220 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 221 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 222 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 223 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 224 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 225 | a_meth.o: ../cryptlib.h a_meth.c | ||
| 226 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 227 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 228 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 229 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 230 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 231 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 232 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 233 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 234 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
| 235 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 236 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 237 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 238 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 239 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 240 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 241 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
| 243 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 244 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 245 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 246 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 247 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 248 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 249 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 250 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
| 251 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 252 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 253 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 254 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 255 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 256 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 257 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 258 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 259 | a_set.o: ../cryptlib.h a_set.c | ||
| 260 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 261 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 262 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 263 | a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 264 | a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 265 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 266 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 267 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 268 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 269 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 270 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 271 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 272 | a_sign.o: ../cryptlib.h a_sign.c | ||
| 273 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 274 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 275 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 276 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 277 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 278 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 279 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 280 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 281 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 282 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 283 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 284 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h | ||
| 285 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 286 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 287 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 288 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 289 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 290 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 291 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 292 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 293 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
| 294 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 295 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 296 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 297 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 298 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 299 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 300 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 301 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 302 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
| 303 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 304 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 305 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 306 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 307 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 308 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 309 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 310 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 311 | a_type.o: ../cryptlib.h a_type.c | ||
| 312 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 313 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 314 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 315 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 316 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 317 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 318 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 319 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
| 320 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 321 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 322 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 323 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 324 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 325 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 326 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 327 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
| 328 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 329 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 330 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 331 | a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 332 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 333 | a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 334 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 335 | a_verify.o: ../../include/openssl/opensslconf.h | ||
| 336 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 337 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 338 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 339 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 340 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 341 | a_verify.o: ../cryptlib.h a_verify.c | ||
| 342 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 343 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 344 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 345 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 346 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 347 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 348 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
| 349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 350 | asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
| 357 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 358 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 359 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 360 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 361 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 362 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
| 366 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 367 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 368 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 369 | asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 370 | asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 371 | asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 372 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 373 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 374 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
| 375 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 376 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 377 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 378 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 379 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 380 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
| 381 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 382 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 383 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 384 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 385 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 386 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 387 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 388 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
| 389 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 390 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 391 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 392 | d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 393 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 394 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 395 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 396 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 397 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 398 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 399 | d2i_pr.o: ../cryptlib.h d2i_pr.c | ||
| 400 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 401 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 402 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 403 | d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 404 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 405 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 406 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 407 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 408 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 409 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 410 | d2i_pu.o: ../cryptlib.h d2i_pu.c | ||
| 411 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 412 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 413 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 414 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 415 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 416 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
| 417 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 418 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 419 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
| 420 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 421 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 422 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 423 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 424 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 425 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 426 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 427 | f_enum.o: ../cryptlib.h f_enum.c | ||
| 428 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 429 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 430 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 431 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 432 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 433 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 434 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 435 | f_int.o: ../cryptlib.h f_int.c | ||
| 436 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 437 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 438 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 439 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 440 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 441 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 442 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 443 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
| 444 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 445 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 446 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 447 | i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 448 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 449 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 450 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 451 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 452 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 453 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 454 | i2d_pr.o: ../cryptlib.h i2d_pr.c | ||
| 455 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 456 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 457 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 458 | i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 459 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 460 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 461 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 462 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 463 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 464 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 465 | i2d_pu.o: ../cryptlib.h i2d_pu.c | ||
| 466 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 467 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
| 468 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 469 | n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 470 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 471 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 472 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 473 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 474 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 475 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 476 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 477 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 478 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 479 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | ||
| 480 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 481 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 482 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 483 | nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 484 | nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 485 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 486 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 487 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 488 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 489 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 490 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 491 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
| 492 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 493 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 494 | p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 495 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 496 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 497 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 498 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 499 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 500 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 501 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 502 | p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 503 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 504 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 505 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | ||
| 506 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 507 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 508 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 509 | p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 510 | p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 511 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 512 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 513 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 514 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 515 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 516 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 517 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 518 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 519 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
| 520 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 521 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 522 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 523 | p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 524 | p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 525 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 526 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 527 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 528 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 529 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 530 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 531 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 532 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 533 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
| 534 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 535 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 536 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 537 | t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 538 | t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 539 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 540 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 541 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 542 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 543 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 544 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 545 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 546 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 547 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
| 548 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 549 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 550 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 551 | t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 552 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 553 | t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 554 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 555 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 556 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 557 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 558 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 559 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 560 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 561 | t_crl.o: ../cryptlib.h t_crl.c | ||
| 562 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 563 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 564 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 565 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 566 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 567 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 568 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
| 569 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 570 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
| 571 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 572 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 573 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 574 | t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 575 | t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 576 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 577 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 578 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 579 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 580 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 581 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 582 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 583 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 584 | t_req.o: ../cryptlib.h t_req.c | ||
| 585 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 586 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 587 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 588 | t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 589 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 590 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 591 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 592 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 593 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 594 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 595 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 596 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 597 | t_spki.o: ../cryptlib.h t_spki.c | ||
| 598 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 599 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 600 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 601 | t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 602 | t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 603 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 604 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 605 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 606 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 607 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 608 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 609 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 610 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 611 | t_x509.o: ../cryptlib.h t_x509.c | ||
| 612 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 613 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 614 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 615 | t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 616 | t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 617 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 618 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 619 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 620 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 621 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 622 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 623 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 624 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
| 625 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 626 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 627 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 628 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 629 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 630 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 631 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 632 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 633 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
| 634 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 635 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 636 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 637 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 638 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
| 639 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 640 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 641 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
| 642 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 643 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 644 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 645 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 646 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
| 647 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 648 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 649 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
| 650 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 651 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 652 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 653 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 654 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 655 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
| 656 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 657 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 658 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
| 659 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 660 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 661 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 662 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
| 663 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 664 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 665 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
| 666 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 667 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 668 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 669 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 670 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 671 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
| 672 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 673 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 674 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
| 675 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 676 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 677 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 678 | x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 679 | x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 680 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 681 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 682 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 683 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 684 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 685 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 686 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 687 | x_algor.o: x_algor.c | ||
| 688 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 689 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 690 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 691 | x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 692 | x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 693 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 694 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 695 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 696 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 697 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 698 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 699 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 700 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 701 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
| 702 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 703 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 704 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 705 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 706 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 707 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
| 708 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 709 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 710 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
| 711 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 712 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 713 | x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 714 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 715 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 716 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 717 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 718 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 719 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 720 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 721 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 722 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 723 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 724 | x_crl.o: ../cryptlib.h x_crl.c | ||
| 725 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 726 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 727 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 728 | x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 729 | x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 730 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 731 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 732 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 733 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 734 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 735 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 736 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 737 | x_exten.o: x_exten.c | ||
| 738 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 739 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 740 | x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 741 | x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 742 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 743 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 744 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 745 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 746 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 747 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 748 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 749 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 750 | x_info.o: ../cryptlib.h x_info.c | ||
| 751 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 752 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 753 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 754 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 755 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 756 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 757 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 758 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 759 | x_long.o: ../cryptlib.h x_long.c | ||
| 760 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 761 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 762 | x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 763 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 764 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 765 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 766 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 767 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 768 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 769 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 770 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 771 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 772 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 773 | x_name.o: ../cryptlib.h x_name.c | ||
| 774 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 775 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 776 | x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 777 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 778 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 779 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 780 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 781 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 782 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 783 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 784 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 785 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 786 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 787 | x_pkey.o: ../cryptlib.h x_pkey.c | ||
| 788 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 789 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 790 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 791 | x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 792 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 793 | x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 794 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 795 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 796 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 797 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 798 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 799 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 800 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 801 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
| 802 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 803 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 804 | x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 805 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 806 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 807 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 808 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 809 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 810 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 811 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 812 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 813 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 814 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 815 | x_req.o: ../cryptlib.h x_req.c | ||
| 816 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 817 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 818 | x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 819 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 820 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 821 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 822 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 823 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 824 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 825 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 826 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 827 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 828 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 829 | x_sig.o: ../cryptlib.h x_sig.c | ||
| 830 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 831 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 832 | x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 833 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 834 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 835 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 836 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 837 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 838 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 839 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 840 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 841 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 842 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 843 | x_spki.o: ../cryptlib.h x_spki.c | ||
| 844 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 845 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 846 | x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 847 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 848 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 849 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 850 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 851 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 852 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 853 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 854 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 855 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 856 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 857 | x_val.o: ../cryptlib.h x_val.c | ||
| 858 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 859 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 860 | x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 861 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 862 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 863 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 864 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 865 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 866 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 867 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 868 | x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 869 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 870 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 871 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 872 | x_x509.o: ../cryptlib.h x_x509.c | ||
| 873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 875 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 876 | x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 877 | x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 883 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 884 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 885 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 886 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libssl/src/crypto/asn1/f.c b/src/lib/libssl/src/crypto/asn1/f.c index 2ab3a262ac..82bccdfd51 100644 --- a/src/lib/libssl/src/crypto/asn1/f.c +++ b/src/lib/libssl/src/crypto/asn1/f.c | |||
| @@ -56,8 +56,8 @@ | |||
| 56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
| 57 | */ | 57 | */ |
| 58 | #include <stdio.h> | 58 | #include <stdio.h> |
| 59 | #include "asn1.h" | 59 | #include <openssl/asn1.h> |
| 60 | #include "err.h" | 60 | #include <openssl/err.h> |
| 61 | 61 | ||
| 62 | main() | 62 | main() |
| 63 | { | 63 | { |
diff --git a/src/lib/libssl/src/crypto/asn1/x_cinf.c b/src/lib/libssl/src/crypto/asn1/x_cinf.c index 4fc2cc9f6e..339a110eef 100644 --- a/src/lib/libssl/src/crypto/asn1/x_cinf.c +++ b/src/lib/libssl/src/crypto/asn1/x_cinf.c | |||
| @@ -58,16 +58,10 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
| 61 | #include "asn1_mac.h" | 61 | #include <openssl/asn1_mac.h> |
| 62 | #include <openssl/x509.h> | ||
| 62 | 63 | ||
| 63 | /* | 64 | int i2d_X509_CINF(X509_CINF *a, unsigned char **pp) |
| 64 | * ASN1err(ASN1_F_D2I_X509_CINF,ASN1_R_LENGTH_MISMATCH); | ||
| 65 | * ASN1err(ASN1_F_X509_CINF_NEW,ASN1_R_LENGTH_MISMATCH); | ||
| 66 | */ | ||
| 67 | |||
| 68 | int i2d_X509_CINF(a,pp) | ||
| 69 | X509_CINF *a; | ||
| 70 | unsigned char **pp; | ||
| 71 | { | 65 | { |
| 72 | int v1=0,v2=0; | 66 | int v1=0,v2=0; |
| 73 | M_ASN1_I2D_vars(a); | 67 | M_ASN1_I2D_vars(a); |
| @@ -81,7 +75,9 @@ unsigned char **pp; | |||
| 81 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); | 75 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); |
| 82 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); | 76 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); |
| 83 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); | 77 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); |
| 84 | M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 78 | M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
| 79 | i2d_X509_EXTENSION,3, | ||
| 80 | V_ASN1_SEQUENCE,v2); | ||
| 85 | 81 | ||
| 86 | M_ASN1_I2D_seq_total(); | 82 | M_ASN1_I2D_seq_total(); |
| 87 | 83 | ||
| @@ -94,15 +90,14 @@ unsigned char **pp; | |||
| 94 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); | 90 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); |
| 95 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); | 91 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); |
| 96 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); | 92 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); |
| 97 | M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 93 | M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
| 94 | i2d_X509_EXTENSION,3, | ||
| 95 | V_ASN1_SEQUENCE,v2); | ||
| 98 | 96 | ||
| 99 | M_ASN1_I2D_finish(); | 97 | M_ASN1_I2D_finish(); |
| 100 | } | 98 | } |
| 101 | 99 | ||
| 102 | X509_CINF *d2i_X509_CINF(a,pp,length) | 100 | X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length) |
| 103 | X509_CINF **a; | ||
| 104 | unsigned char **pp; | ||
| 105 | long length; | ||
| 106 | { | 101 | { |
| 107 | int ver=0; | 102 | int ver=0; |
| 108 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); | 103 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); |
| @@ -120,7 +115,7 @@ long length; | |||
| 120 | { | 115 | { |
| 121 | if (ret->version != NULL) | 116 | if (ret->version != NULL) |
| 122 | { | 117 | { |
| 123 | ASN1_INTEGER_free(ret->version); | 118 | M_ASN1_INTEGER_free(ret->version); |
| 124 | ret->version=NULL; | 119 | ret->version=NULL; |
| 125 | } | 120 | } |
| 126 | } | 121 | } |
| @@ -134,38 +129,48 @@ long length; | |||
| 134 | { | 129 | { |
| 135 | if (ret->issuerUID != NULL) | 130 | if (ret->issuerUID != NULL) |
| 136 | { | 131 | { |
| 137 | ASN1_BIT_STRING_free(ret->issuerUID); | 132 | M_ASN1_BIT_STRING_free(ret->issuerUID); |
| 138 | ret->issuerUID=NULL; | 133 | ret->issuerUID=NULL; |
| 139 | } | 134 | } |
| 140 | if (ret->subjectUID != NULL) | 135 | if (ret->subjectUID != NULL) |
| 141 | { | 136 | { |
| 142 | ASN1_BIT_STRING_free(ret->subjectUID); | 137 | M_ASN1_BIT_STRING_free(ret->subjectUID); |
| 143 | ret->issuerUID=NULL; | 138 | ret->subjectUID=NULL; |
| 144 | } | 139 | } |
| 145 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, | 140 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, |
| 146 | V_ASN1_BIT_STRING); | 141 | V_ASN1_BIT_STRING); |
| 147 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, | 142 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, |
| 148 | V_ASN1_BIT_STRING); | 143 | V_ASN1_BIT_STRING); |
| 149 | } | 144 | } |
| 145 | /* Note: some broken certificates include extensions but don't set | ||
| 146 | * the version number properly. By bypassing this check they can | ||
| 147 | * be parsed. | ||
| 148 | */ | ||
| 149 | |||
| 150 | #ifdef VERSION_EXT_CHECK | ||
| 150 | if (ver >= 2) /* version 3 extensions */ | 151 | if (ver >= 2) /* version 3 extensions */ |
| 152 | #endif | ||
| 151 | { | 153 | { |
| 152 | if (ret->extensions != NULL) | 154 | if (ret->extensions != NULL) |
| 153 | while (sk_num(ret->extensions)) | 155 | while (sk_X509_EXTENSION_num(ret->extensions)) |
| 154 | X509_EXTENSION_free((X509_EXTENSION *) | 156 | X509_EXTENSION_free( |
| 155 | sk_pop(ret->extensions)); | 157 | sk_X509_EXTENSION_pop(ret->extensions)); |
| 156 | M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,3, | 158 | M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions, |
| 157 | V_ASN1_SEQUENCE); | 159 | d2i_X509_EXTENSION, |
| 160 | X509_EXTENSION_free,3, | ||
| 161 | V_ASN1_SEQUENCE); | ||
| 158 | } | 162 | } |
| 159 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); | 163 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); |
| 160 | } | 164 | } |
| 161 | 165 | ||
| 162 | X509_CINF *X509_CINF_new() | 166 | X509_CINF *X509_CINF_new(void) |
| 163 | { | 167 | { |
| 164 | X509_CINF *ret=NULL; | 168 | X509_CINF *ret=NULL; |
| 169 | ASN1_CTX c; | ||
| 165 | 170 | ||
| 166 | M_ASN1_New_Malloc(ret,X509_CINF); | 171 | M_ASN1_New_Malloc(ret,X509_CINF); |
| 167 | ret->version=NULL; | 172 | ret->version=NULL; |
| 168 | M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new); | 173 | M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new); |
| 169 | M_ASN1_New(ret->signature,X509_ALGOR_new); | 174 | M_ASN1_New(ret->signature,X509_ALGOR_new); |
| 170 | M_ASN1_New(ret->issuer,X509_NAME_new); | 175 | M_ASN1_New(ret->issuer,X509_NAME_new); |
| 171 | M_ASN1_New(ret->validity,X509_VAL_new); | 176 | M_ASN1_New(ret->validity,X509_VAL_new); |
| @@ -178,20 +183,19 @@ X509_CINF *X509_CINF_new() | |||
| 178 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); | 183 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); |
| 179 | } | 184 | } |
| 180 | 185 | ||
| 181 | void X509_CINF_free(a) | 186 | void X509_CINF_free(X509_CINF *a) |
| 182 | X509_CINF *a; | ||
| 183 | { | 187 | { |
| 184 | if (a == NULL) return; | 188 | if (a == NULL) return; |
| 185 | ASN1_INTEGER_free(a->version); | 189 | M_ASN1_INTEGER_free(a->version); |
| 186 | ASN1_INTEGER_free(a->serialNumber); | 190 | M_ASN1_INTEGER_free(a->serialNumber); |
| 187 | X509_ALGOR_free(a->signature); | 191 | X509_ALGOR_free(a->signature); |
| 188 | X509_NAME_free(a->issuer); | 192 | X509_NAME_free(a->issuer); |
| 189 | X509_VAL_free(a->validity); | 193 | X509_VAL_free(a->validity); |
| 190 | X509_NAME_free(a->subject); | 194 | X509_NAME_free(a->subject); |
| 191 | X509_PUBKEY_free(a->key); | 195 | X509_PUBKEY_free(a->key); |
| 192 | ASN1_BIT_STRING_free(a->issuerUID); | 196 | M_ASN1_BIT_STRING_free(a->issuerUID); |
| 193 | ASN1_BIT_STRING_free(a->subjectUID); | 197 | M_ASN1_BIT_STRING_free(a->subjectUID); |
| 194 | sk_pop_free(a->extensions,X509_EXTENSION_free); | 198 | sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free); |
| 195 | Free((char *)a); | 199 | OPENSSL_free(a); |
| 196 | } | 200 | } |
| 197 | 201 | ||
diff --git a/src/lib/libssl/src/crypto/bf/Makefile.ssl b/src/lib/libssl/src/crypto/bf/Makefile.ssl index 236671f238..1b1cb8842f 100644 --- a/src/lib/libssl/src/crypto/bf/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bf/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -42,12 +45,12 @@ all: lib | |||
| 42 | 45 | ||
| 43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 49 | @touch lib |
| 47 | 50 | ||
| 48 | # elf | 51 | # elf |
| 49 | asm/bx86-elf.o: asm/bx86unix.cpp | 52 | asm/bx86-elf.o: asm/bx86unix.cpp |
| 50 | $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o | 53 | $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o |
| 51 | 54 | ||
| 52 | # solaris | 55 | # solaris |
| 53 | asm/bx86-sol.o: asm/bx86unix.cpp | 56 | asm/bx86-sol.o: asm/bx86unix.cpp |
| @@ -61,27 +64,27 @@ asm/bx86-out.o: asm/bx86unix.cpp | |||
| 61 | 64 | ||
| 62 | # bsdi | 65 | # bsdi |
| 63 | asm/bx86bsdi.o: asm/bx86unix.cpp | 66 | asm/bx86bsdi.o: asm/bx86unix.cpp |
| 64 | $(CPP) -DBSDI asm/bx86unix.cpp | as -o asm/bx86bsdi.o | 67 | $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o |
| 65 | 68 | ||
| 66 | asm/bx86unix.cpp: | 69 | asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 67 | (cd asm; perl bf-586.pl cpp >bx86unix.cpp) | 70 | (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp) |
| 68 | 71 | ||
| 69 | files: | 72 | files: |
| 70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 71 | 74 | ||
| 72 | links: | 75 | links: |
| 73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 75 | $(TOP)/util/point.sh ../../doc/blowfish.doc blowfish.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 77 | $(TOP)/util/mklink.sh ../../test $(TEST) | 80 | |
| 78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 81 | install: installs |
| 79 | 82 | ||
| 80 | install: | 83 | installs: |
| 81 | @for i in $(EXHEADER) ; \ | 84 | @for i in $(EXHEADER) ; \ |
| 82 | do \ | 85 | do \ |
| 83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 87 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 85 | done; | 88 | done; |
| 86 | 89 | ||
| 87 | tags: | 90 | tags: |
| @@ -93,15 +96,25 @@ lint: | |||
| 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 94 | 97 | ||
| 95 | depend: | 98 | depend: |
| 96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 97 | 100 | ||
| 98 | dclean: | 101 | dclean: |
| 99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 100 | mv -f Makefile.new $(MAKEFILE) | 103 | mv -f Makefile.new $(MAKEFILE) |
| 101 | 104 | ||
| 102 | clean: | 105 | clean: |
| 103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 106 | rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 104 | |||
| 105 | errors: | ||
| 106 | 107 | ||
| 107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 109 | |||
| 110 | bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 111 | bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h | ||
| 112 | bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 113 | bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 114 | bf_ecb.o: bf_ecb.c bf_locl.h | ||
| 115 | bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 116 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | ||
| 117 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 118 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | ||
| 119 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
| 120 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libssl/src/crypto/bio/Makefile.ssl b/src/lib/libssl/src/crypto/bio/Makefile.ssl index 42e11e1c94..103a051c03 100644 --- a/src/lib/libssl/src/crypto/bio/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bio/Makefile.ssl | |||
| @@ -5,38 +5,41 @@ | |||
| 5 | DIR= bio | 5 | DIR= bio |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=bio | ||
| 19 | ERRC=bio_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= bio_lib.c bio_cb.c $(ERRC).c \ | 26 | LIBSRC= bio_lib.c bio_cb.c bio_err.c \ |
| 26 | bss_mem.c bss_null.c bss_fd.c \ | 27 | bss_mem.c bss_null.c bss_fd.c \ |
| 27 | bss_file.c bss_sock.c bss_conn.c \ | 28 | bss_file.c bss_sock.c bss_conn.c \ |
| 28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | 29 | bf_null.c bf_buff.c b_print.c b_dump.c \ |
| 29 | b_sock.c bss_acpt.c bf_nbio.c | 30 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c |
| 30 | LIBOBJ= bio_lib.o bio_cb.o $(ERRC).o \ | 31 | # bf_lbuf.c |
| 32 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | ||
| 31 | bss_mem.o bss_null.o bss_fd.o \ | 33 | bss_mem.o bss_null.o bss_fd.o \ |
| 32 | bss_file.o bss_sock.o bss_conn.o \ | 34 | bss_file.o bss_sock.o bss_conn.o \ |
| 33 | bf_null.o bf_buff.o b_print.o b_dump.o \ | 35 | bf_null.o bf_buff.o b_print.o b_dump.o \ |
| 34 | b_sock.o bss_acpt.o bf_nbio.o | 36 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o |
| 37 | # bf_lbuf.o | ||
| 35 | 38 | ||
| 36 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 37 | 40 | ||
| 38 | EXHEADER= bio.h bss_file.c | 41 | EXHEADER= bio.h |
| 39 | HEADER= $(EXHEADER) | 42 | HEADER= bss_file.c $(EXHEADER) |
| 40 | 43 | ||
| 41 | ALL= $(GENERAL) $(SRC) $(HEADER) | 44 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 42 | 45 | ||
| @@ -47,24 +50,23 @@ all: lib | |||
| 47 | 50 | ||
| 48 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
| 49 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
| 50 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
| 51 | @touch lib | 54 | @touch lib |
| 52 | 55 | ||
| 53 | files: | 56 | files: |
| 54 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 55 | 58 | ||
| 56 | links: | 59 | links: |
| 57 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 58 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 59 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 60 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 61 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 62 | 64 | ||
| 63 | install: | 65 | install: |
| 64 | @for i in $(EXHEADER) bss_file.c ; \ | 66 | @for i in $(EXHEADER); \ |
| 65 | do \ | 67 | do \ |
| 66 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 67 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 68 | done; | 70 | done; |
| 69 | 71 | ||
| 70 | tags: | 72 | tags: |
| @@ -76,17 +78,139 @@ lint: | |||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 77 | 79 | ||
| 78 | depend: | 80 | depend: |
| 79 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 80 | 82 | ||
| 81 | dclean: | 83 | dclean: |
| 82 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 83 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
| 84 | 86 | ||
| 85 | clean: | 87 | clean: |
| 86 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 87 | |||
| 88 | errors: | ||
| 89 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 90 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 91 | 89 | ||
| 92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | |||
| 92 | b_dump.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 93 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 94 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 95 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 96 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 97 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 98 | b_dump.o: ../cryptlib.h b_dump.c | ||
| 99 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 100 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 101 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 102 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 103 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 104 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 105 | b_print.o: ../cryptlib.h b_print.c | ||
| 106 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 107 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 110 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 111 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | b_sock.o: ../cryptlib.h b_sock.c | ||
| 113 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 114 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 115 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 116 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 117 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 118 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 119 | bf_buff.o: ../cryptlib.h bf_buff.c | ||
| 120 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 121 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 122 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 123 | bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 124 | bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 126 | bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 127 | bf_nbio.o: ../cryptlib.h bf_nbio.c | ||
| 128 | bf_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 129 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 130 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 131 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 132 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 133 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 134 | bf_null.o: ../cryptlib.h bf_null.c | ||
| 135 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 136 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 137 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 138 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 139 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 140 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 141 | bio_cb.o: ../cryptlib.h bio_cb.c | ||
| 142 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 143 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 144 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 145 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 146 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 147 | bio_err.o: bio_err.c | ||
| 148 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 149 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 151 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 152 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 153 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 154 | bio_lib.o: ../cryptlib.h bio_lib.c | ||
| 155 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 156 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 157 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 158 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 159 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 160 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 161 | bss_acpt.o: ../cryptlib.h bss_acpt.c | ||
| 162 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 163 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 164 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 165 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 166 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 167 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | ||
| 168 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 169 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 170 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 171 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 172 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 173 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 174 | bss_conn.o: ../cryptlib.h bss_conn.c | ||
| 175 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 176 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 177 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 178 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 179 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 180 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 181 | bss_fd.o: ../cryptlib.h bss_fd.c | ||
| 182 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 183 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 184 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 185 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 186 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 187 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | bss_file.o: ../cryptlib.h bss_file.c | ||
| 189 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 190 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 191 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 192 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 193 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 194 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 195 | bss_log.o: ../cryptlib.h bss_log.c | ||
| 196 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 197 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 198 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 199 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 200 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 201 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 202 | bss_mem.o: ../cryptlib.h bss_mem.c | ||
| 203 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 204 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 205 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 206 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 207 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 208 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 209 | bss_null.o: ../cryptlib.h bss_null.c | ||
| 210 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 211 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 212 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 213 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 214 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 215 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 216 | bss_sock.o: ../cryptlib.h bss_sock.c | ||
diff --git a/src/lib/libssl/src/crypto/bn/Makefile.ssl b/src/lib/libssl/src/crypto/bn/Makefile.ssl index 9809d26cbc..605cb17577 100644 --- a/src/lib/libssl/src/crypto/bn/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bn/Makefile.ssl | |||
| @@ -5,37 +5,46 @@ | |||
| 5 | DIR= bn | 5 | DIR= bn |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| 16 | BN_MULW= bn_mulw.o | 20 | BN_ASM= bn_asm.o |
| 17 | # or use | 21 | # or use |
| 18 | #BN_MULW= bn86-elf.o | 22 | #BN_ASM= bn86-elf.o |
| 19 | 23 | ||
| 20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 21 | 25 | ||
| 22 | ERR=bn | 26 | # We let the C compiler driver to take care of .s files. This is done in |
| 23 | ERRC=bn_err | 27 | # order to be excused from maintaining a separate set of architecture |
| 28 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
| 29 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
| 30 | # and pass it down to assembler. | ||
| 31 | AS=$(CC) -c | ||
| 32 | ASFLAGS=$(CFLAGS) | ||
| 33 | |||
| 24 | GENERAL=Makefile | 34 | GENERAL=Makefile |
| 25 | TEST=bntest.c exptest.c | 35 | TEST=bntest.c exptest.c |
| 26 | APPS= | 36 | APPS= |
| 27 | 37 | ||
| 28 | LIB=$(TOP)/libcrypto.a | 38 | LIB=$(TOP)/libcrypto.a |
| 29 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c bn_mul.c \ | 39 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ |
| 30 | bn_print.c bn_rand.c bn_shift.c bn_sub.c bn_word.c bn_blind.c \ | 40 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
| 31 | bn_gcd.c bn_prime.c $(ERRC).c bn_sqr.c bn_mulw.c bn_recp.c bn_mont.c \ | 41 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ |
| 32 | bn_mpi.c | 42 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c |
| 33 | |||
| 34 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mod.o bn_mul.o \ | ||
| 35 | bn_print.o bn_rand.o bn_shift.o bn_sub.o bn_word.o bn_blind.o \ | ||
| 36 | bn_gcd.o bn_prime.o $(ERRC).o bn_sqr.o $(BN_MULW) bn_recp.o bn_mont.o \ | ||
| 37 | bn_mpi.o | ||
| 38 | 43 | ||
| 44 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
| 45 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
| 46 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
| 47 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o | ||
| 39 | 48 | ||
| 40 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
| 41 | 50 | ||
| @@ -49,21 +58,26 @@ top: | |||
| 49 | 58 | ||
| 50 | all: lib | 59 | all: lib |
| 51 | 60 | ||
| 52 | knuth: bn_knuth.c | 61 | bn_prime.h: bn_prime.pl |
| 53 | cc -pg -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 62 | $(PERL) bn_prime.pl >bn_prime.h |
| 54 | 63 | ||
| 55 | knuth.fast: bn_knuth.c | 64 | divtest: divtest.c ../../libcrypto.a |
| 56 | cc -pg -fast -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 65 | cc -I../../include divtest.c -o divtest ../../libcrypto.a |
| 57 | 66 | ||
| 67 | bnbug: bnbug.c ../../libcrypto.a top | ||
| 68 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
| 58 | 69 | ||
| 59 | lib: $(LIBOBJ) | 70 | lib: $(LIBOBJ) |
| 60 | $(AR) $(LIB) $(LIBOBJ) | 71 | $(AR) $(LIB) $(LIBOBJ) |
| 61 | sh $(TOP)/util/ranlib.sh $(LIB) | 72 | $(RANLIB) $(LIB) || echo Never mind. |
| 62 | @touch lib | 73 | @touch lib |
| 63 | 74 | ||
| 64 | # elf | 75 | # elf |
| 65 | asm/bn86-elf.o: asm/bn86unix.cpp | 76 | asm/bn86-elf.o: asm/bn86unix.cpp |
| 66 | $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o | 77 | $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o |
| 78 | |||
| 79 | asm/co86-elf.o: asm/co86unix.cpp | ||
| 80 | $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o | ||
| 67 | 81 | ||
| 68 | # solaris | 82 | # solaris |
| 69 | asm/bn86-sol.o: asm/bn86unix.cpp | 83 | asm/bn86-sol.o: asm/bn86unix.cpp |
| @@ -71,40 +85,79 @@ asm/bn86-sol.o: asm/bn86unix.cpp | |||
| 71 | as -o asm/bn86-sol.o asm/bn86-sol.s | 85 | as -o asm/bn86-sol.o asm/bn86-sol.s |
| 72 | rm -f asm/bn86-sol.s | 86 | rm -f asm/bn86-sol.s |
| 73 | 87 | ||
| 88 | asm/co86-sol.o: asm/co86unix.cpp | ||
| 89 | $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s | ||
| 90 | as -o asm/co86-sol.o asm/co86-sol.s | ||
| 91 | rm -f asm/co86-sol.s | ||
| 92 | |||
| 74 | # a.out | 93 | # a.out |
| 75 | asm/bn86-out.o: asm/bn86unix.cpp | 94 | asm/bn86-out.o: asm/bn86unix.cpp |
| 76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | 95 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o |
| 77 | 96 | ||
| 97 | asm/co86-out.o: asm/co86unix.cpp | ||
| 98 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | ||
| 99 | |||
| 78 | # bsdi | 100 | # bsdi |
| 79 | asm/bn86bsdi.o: asm/bn86unix.cpp | 101 | asm/bn86bsdi.o: asm/bn86unix.cpp |
| 80 | $(CPP) -DBSDI asm/bn86unix.cpp | as -o asm/bn86bsdi.o | 102 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o |
| 103 | |||
| 104 | asm/co86bsdi.o: asm/co86unix.cpp | ||
| 105 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | ||
| 106 | |||
| 107 | asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl | ||
| 108 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | ||
| 109 | |||
| 110 | asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl | ||
| 111 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | ||
| 81 | 112 | ||
| 82 | asm/bn86unix.cpp: | 113 | asm/sparcv8.o: asm/sparcv8.S |
| 83 | (cd asm; perl bn-586.pl cpp >bn86unix.cpp ) | 114 | |
| 115 | asm/sparcv8plus.o: asm/sparcv8plus.S | ||
| 116 | |||
| 117 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
| 118 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
| 119 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 120 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 121 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 122 | # or upgrade it. | ||
| 123 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | ||
| 124 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | ||
| 125 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | ||
| 126 | |||
| 127 | |||
| 128 | asm/ia64.o: asm/ia64.S | ||
| 129 | |||
| 130 | # Some compiler drivers (most notably HP-UX and Intel C++) don't | ||
| 131 | # understand .S extension:-( I wish I could pipe output from cc -E, | ||
| 132 | # but it's too compiler driver/ABI dependent to cover with a single | ||
| 133 | # rule... <appro@fy.chalmers.se> | ||
| 134 | asm/ia64-cpp.o: asm/ia64.S | ||
| 135 | $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ | ||
| 136 | $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ | ||
| 137 | rm -f /tmp/ia64.$$$$.s | ||
| 84 | 138 | ||
| 85 | files: | 139 | files: |
| 86 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 140 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 87 | 141 | ||
| 88 | links: | 142 | links: |
| 89 | /bin/rm -f Makefile | 143 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 90 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 144 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 91 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 145 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 92 | $(TOP)/util/mklink.sh ../../test $(TEST) | 146 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 93 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 94 | 147 | ||
| 95 | install: | 148 | install: |
| 96 | @for i in $(EXHEADER) ; \ | 149 | @for i in $(EXHEADER) ; \ |
| 97 | do \ | 150 | do \ |
| 98 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 151 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 99 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 152 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 100 | done; | 153 | done; |
| 101 | 154 | ||
| 102 | exptest: | 155 | exptest: |
| 103 | /bin/rm -f exptest | 156 | rm -f exptest |
| 104 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | 157 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a |
| 105 | 158 | ||
| 106 | div: | 159 | div: |
| 107 | /bin/rm -f a.out | 160 | rm -f a.out |
| 108 | gcc -I.. -g div.c ../../libcrypto.a | 161 | gcc -I.. -g div.c ../../libcrypto.a |
| 109 | 162 | ||
| 110 | tags: | 163 | tags: |
| @@ -116,18 +169,171 @@ lint: | |||
| 116 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 117 | 170 | ||
| 118 | depend: | 171 | depend: |
| 119 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 172 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 120 | 173 | ||
| 121 | dclean: | 174 | dclean: |
| 122 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 123 | mv -f Makefile.new $(MAKEFILE) | 176 | mv -f Makefile.new $(MAKEFILE) |
| 124 | 177 | ||
| 125 | clean: | 178 | clean: |
| 126 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_mulw.s | 179 | rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s |
| 127 | |||
| 128 | errors: | ||
| 129 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # special case .org | ||
| 130 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 131 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 132 | 180 | ||
| 133 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 181 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 182 | |||
| 183 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 184 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 185 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 186 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 187 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 188 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 189 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h | ||
| 190 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 191 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 192 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 193 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 194 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 195 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 196 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h | ||
| 197 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 198 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 199 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 200 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 201 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 202 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 203 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h | ||
| 204 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 205 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 206 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 207 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 208 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 209 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 210 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h | ||
| 211 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 212 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 213 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 214 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 215 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 216 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h | ||
| 218 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 219 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 220 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 221 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 222 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 223 | bn_err.o: ../../include/openssl/symhacks.h bn_err.c | ||
| 224 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 225 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 226 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 227 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 228 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 229 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 230 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h | ||
| 231 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 232 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 233 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 234 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 235 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 236 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 237 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h | ||
| 238 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 239 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 240 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 241 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 242 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 243 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 244 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h | ||
| 245 | bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
| 246 | bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h | ||
| 247 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 248 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 249 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 250 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 251 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 252 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 253 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c | ||
| 254 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 255 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 256 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 257 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 258 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 259 | bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 260 | bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c | ||
| 261 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 262 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 263 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 264 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 265 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 266 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 267 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c | ||
| 268 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 269 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 270 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 271 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 272 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 273 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 274 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c | ||
| 275 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 276 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 277 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 278 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 279 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 280 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 281 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c | ||
| 282 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 283 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 284 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 285 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 286 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 287 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 288 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 289 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
| 290 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 291 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 292 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 293 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 294 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 295 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 296 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c | ||
| 297 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 298 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 299 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 300 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 301 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 302 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 303 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 304 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
| 305 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 306 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 307 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 308 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 309 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 310 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 311 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c | ||
| 312 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 313 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 314 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 315 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 316 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 317 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 318 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c | ||
| 319 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 320 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 321 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 322 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 323 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 324 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 325 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c | ||
| 326 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 327 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 328 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 329 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 330 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 331 | bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 332 | bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
| 333 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 334 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 335 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 336 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 337 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 338 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 339 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c | ||
diff --git a/src/lib/libssl/src/crypto/buffer/Makefile.ssl b/src/lib/libssl/src/crypto/buffer/Makefile.ssl index a5f150e523..1ee63940d0 100644 --- a/src/lib/libssl/src/crypto/buffer/Makefile.ssl +++ b/src/lib/libssl/src/crypto/buffer/Makefile.ssl | |||
| @@ -5,25 +5,26 @@ | |||
| 5 | DIR= buffer | 5 | DIR= buffer |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=buffer | ||
| 19 | ERRC=buf_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= buffer.c $(ERRC).c | 26 | LIBSRC= buffer.c buf_err.c |
| 26 | LIBOBJ= buffer.o $(ERRC).o | 27 | LIBOBJ= buffer.o buf_err.o |
| 27 | 28 | ||
| 28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 29 | 30 | ||
| @@ -39,24 +40,23 @@ all: lib | |||
| 39 | 40 | ||
| 40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 44 | @touch lib |
| 44 | 45 | ||
| 45 | files: | 46 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 48 | ||
| 48 | links: | 49 | links: |
| 49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 54 | ||
| 55 | install: | 55 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 57 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 60 | done; |
| 61 | 61 | ||
| 62 | tags: | 62 | tags: |
| @@ -68,17 +68,27 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 76 | ||
| 77 | clean: | 77 | clean: |
| 78 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 79 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 83 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 84 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 85 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 86 | buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 87 | buf_err.o: ../../include/openssl/symhacks.h buf_err.c | ||
| 88 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 89 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 90 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 91 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 92 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 93 | buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 94 | buffer.o: ../cryptlib.h buffer.c | ||
diff --git a/src/lib/libssl/src/crypto/cast/Makefile.ssl b/src/lib/libssl/src/crypto/cast/Makefile.ssl index 0143827ae5..75d97b0fbe 100644 --- a/src/lib/libssl/src/crypto/cast/Makefile.ssl +++ b/src/lib/libssl/src/crypto/cast/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -45,12 +48,12 @@ all: lib | |||
| 45 | 48 | ||
| 46 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
| 47 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
| 48 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
| 49 | @touch lib | 52 | @touch lib |
| 50 | 53 | ||
| 51 | # elf | 54 | # elf |
| 52 | asm/cx86-elf.o: asm/cx86unix.cpp | 55 | asm/cx86-elf.o: asm/cx86unix.cpp |
| 53 | $(CPP) -DELF asm/cx86unix.cpp | as -o asm/cx86-elf.o | 56 | $(CPP) -DELF -x c asm/cx86unix.cpp | as -o asm/cx86-elf.o |
| 54 | 57 | ||
| 55 | # solaris | 58 | # solaris |
| 56 | asm/cx86-sol.o: asm/cx86unix.cpp | 59 | asm/cx86-sol.o: asm/cx86unix.cpp |
| @@ -64,26 +67,25 @@ asm/cx86-out.o: asm/cx86unix.cpp | |||
| 64 | 67 | ||
| 65 | # bsdi | 68 | # bsdi |
| 66 | asm/cx86bsdi.o: asm/cx86unix.cpp | 69 | asm/cx86bsdi.o: asm/cx86unix.cpp |
| 67 | $(CPP) -DBSDI asm/cx86unix.cpp | as -o asm/cx86bsdi.o | 70 | $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o |
| 68 | 71 | ||
| 69 | asm/cx86unix.cpp: | 72 | asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 70 | (cd asm; perl cast-586.pl cpp >cx86unix.cpp) | 73 | (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp) |
| 71 | 74 | ||
| 72 | files: | 75 | files: |
| 73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 74 | 77 | ||
| 75 | links: | 78 | links: |
| 76 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 81 | 83 | ||
| 82 | install: | 84 | install: |
| 83 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
| 84 | do \ | 86 | do \ |
| 85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 87 | done; | 89 | done; |
| 88 | 90 | ||
| 89 | tags: | 91 | tags: |
| @@ -95,15 +97,29 @@ lint: | |||
| 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 96 | 98 | ||
| 97 | depend: | 99 | depend: |
| 98 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 99 | 101 | ||
| 100 | dclean: | 102 | dclean: |
| 101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 102 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
| 103 | 105 | ||
| 104 | clean: | 106 | clean: |
| 105 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 107 | rm -f asm/cx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 106 | |||
| 107 | errors: | ||
| 108 | 108 | ||
| 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 110 | |||
| 111 | c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 112 | c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 113 | c_cfb64.o: c_cfb64.c cast_lcl.h | ||
| 114 | c_ecb.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 115 | c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 116 | c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h | ||
| 117 | c_enc.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 118 | c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 119 | c_enc.o: c_enc.c cast_lcl.h | ||
| 120 | c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 121 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 122 | c_ofb64.o: c_ofb64.c cast_lcl.h | ||
| 123 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | ||
| 124 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 125 | c_skey.o: c_skey.c cast_lcl.h cast_s.h | ||
diff --git a/src/lib/libssl/src/crypto/comp/Makefile.ssl b/src/lib/libssl/src/crypto/comp/Makefile.ssl index d946bcbafa..11d728eca9 100644 --- a/src/lib/libssl/src/crypto/comp/Makefile.ssl +++ b/src/lib/libssl/src/crypto/comp/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= comp | 5 | DIR= comp |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,10 +23,10 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= comp_lib.c \ | 26 | LIBSRC= comp_lib.c comp_err.c \ |
| 26 | c_rle.c c_zlib.c | 27 | c_rle.c c_zlib.c |
| 27 | 28 | ||
| 28 | LIBOBJ= comp_lib.o \ | 29 | LIBOBJ= comp_lib.o comp_err.o \ |
| 29 | c_rle.o c_zlib.o | 30 | c_rle.o c_zlib.o |
| 30 | 31 | ||
| 31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| @@ -42,7 +43,7 @@ all: lib | |||
| 42 | 43 | ||
| 43 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | $(RANLIB) $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 47 | @touch lib |
| 47 | 48 | ||
| 48 | files: | 49 | files: |
| @@ -83,17 +84,31 @@ clean: | |||
| 83 | 84 | ||
| 84 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 85 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 85 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 86 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 86 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 87 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 88 | c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 89 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 88 | c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 90 | c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 91 | c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c | ||
| 89 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 92 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 90 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 93 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 91 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 94 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 95 | c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 92 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 93 | c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 97 | c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 98 | c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | c_zlib.o: c_zlib.c | ||
| 100 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h | ||
| 101 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 102 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 103 | comp_err.o: ../../include/openssl/opensslconf.h | ||
| 104 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 106 | comp_err.o: comp_err.c | ||
| 94 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 95 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 108 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
| 96 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 109 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 110 | comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 97 | comp_lib.o: ../../include/openssl/opensslconf.h | 111 | comp_lib.o: ../../include/openssl/opensslconf.h |
| 98 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 112 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 99 | comp_lib.o: ../../include/openssl/stack.h | 113 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 114 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | ||
diff --git a/src/lib/libssl/src/crypto/conf/Makefile.ssl b/src/lib/libssl/src/crypto/conf/Makefile.ssl index 00e917aa44..4a85c07b55 100644 --- a/src/lib/libssl/src/crypto/conf/Makefile.ssl +++ b/src/lib/libssl/src/crypto/conf/Makefile.ssl | |||
| @@ -5,31 +5,34 @@ | |||
| 5 | DIR= conf | 5 | DIR= conf |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=conf | ||
| 19 | ERRC=conf_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= conf.c $(ERRC).c | 26 | LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \ |
| 27 | conf_mall.c conf_sap.c | ||
| 26 | 28 | ||
| 27 | LIBOBJ= conf.o $(ERRC).o | 29 | LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \ |
| 30 | conf_mall.o conf_sap.o | ||
| 28 | 31 | ||
| 29 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| 30 | 33 | ||
| 31 | EXHEADER= conf.h | 34 | EXHEADER= conf.h conf_api.h |
| 32 | HEADER= conf_lcl.h $(EXHEADER) | 35 | HEADER= conf_def.h $(EXHEADER) |
| 33 | 36 | ||
| 34 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 35 | 38 | ||
| @@ -40,24 +43,23 @@ all: lib | |||
| 40 | 43 | ||
| 41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 47 | @touch lib |
| 45 | 48 | ||
| 46 | files: | 49 | files: |
| 47 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 48 | 51 | ||
| 49 | links: | 52 | links: |
| 50 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 51 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 52 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 53 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 54 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 55 | 57 | ||
| 56 | install: | 58 | install: |
| 57 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
| 58 | do \ | 60 | do \ |
| 59 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 60 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 61 | done; | 63 | done; |
| 62 | 64 | ||
| 63 | tags: | 65 | tags: |
| @@ -69,17 +71,91 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 72 | ||
| 71 | depend: | 73 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 73 | 75 | ||
| 74 | dclean: | 76 | dclean: |
| 75 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 76 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
| 77 | 79 | ||
| 78 | clean: | 80 | clean: |
| 79 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 80 | |||
| 81 | errors: | ||
| 82 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 83 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 84 | 82 | ||
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | |||
| 85 | conf_api.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 86 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
| 87 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 88 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 91 | conf_api.o: conf_api.c | ||
| 92 | conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 93 | conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
| 94 | conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 95 | conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 96 | conf_def.o: ../../include/openssl/opensslconf.h | ||
| 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 99 | conf_def.o: conf_def.c conf_def.h | ||
| 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 103 | conf_err.o: ../../include/openssl/opensslconf.h | ||
| 104 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 105 | conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 106 | conf_err.o: conf_err.c | ||
| 107 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
| 108 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | ||
| 109 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 113 | conf_lib.o: conf_lib.c | ||
| 114 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 115 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 116 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 117 | conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 118 | conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 119 | conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 120 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 121 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 122 | conf_mall.o: ../../include/openssl/objects.h | ||
| 123 | conf_mall.o: ../../include/openssl/opensslconf.h | ||
| 124 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 126 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 127 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 128 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 129 | conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 130 | conf_mall.o: ../cryptlib.h conf_mall.c | ||
| 131 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 132 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 133 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 134 | conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 135 | conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 136 | conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 137 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 138 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 139 | conf_mod.o: ../../include/openssl/opensslconf.h | ||
| 140 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 141 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 142 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 143 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 144 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 145 | conf_mod.o: ../cryptlib.h conf_mod.c | ||
| 146 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 149 | conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 150 | conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 151 | conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 152 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 153 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 154 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 155 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 157 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 158 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 159 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 160 | conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 161 | conf_sap.o: ../cryptlib.h conf_sap.c | ||
diff --git a/src/lib/libssl/src/crypto/des/Makefile.ssl b/src/lib/libssl/src/crypto/des/Makefile.ssl index 78b5189ee3..c1080b000f 100644 --- a/src/lib/libssl/src/crypto/des/Makefile.ssl +++ b/src/lib/libssl/src/crypto/des/Makefile.ssl | |||
| @@ -6,20 +6,24 @@ DIR= des | |||
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES=-I$(TOP) -I../../include |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 19 | RANLIB= ranlib | ||
| 16 | DES_ENC= des_enc.o fcrypt_b.o | 20 | DES_ENC= des_enc.o fcrypt_b.o |
| 17 | # or use | 21 | # or use |
| 18 | #DES_ENC= dx86-elf.o yx86-elf.o | 22 | #DES_ENC= dx86-elf.o yx86-elf.o |
| 19 | 23 | ||
| 20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 21 | 25 | ||
| 22 | GENERAL=Makefile des.org des_locl.org | 26 | GENERAL=Makefile |
| 23 | TEST=destest.c | 27 | TEST=destest.c |
| 24 | APPS= | 28 | APPS= |
| 25 | 29 | ||
| @@ -27,22 +31,24 @@ LIB=$(TOP)/libcrypto.a | |||
| 27 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 31 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
| 28 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 32 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
| 29 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 33 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ |
| 30 | qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \ | 34 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
| 31 | des_enc.c fcrypt_b.c read2pwd.c \ | 35 | des_enc.c fcrypt_b.c \ |
| 32 | fcrypt.c xcbc_enc.c \ | 36 | xcbc_enc.c \ |
| 33 | str2key.c cfb64ede.c ofb64ede.c supp.c | 37 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ |
| 38 | read2pwd.c | ||
| 34 | 39 | ||
| 35 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ | 40 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ |
| 36 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ | 41 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ |
| 37 | enc_read.o enc_writ.o ofb64enc.o \ | 42 | enc_read.o enc_writ.o ofb64enc.o \ |
| 38 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ | 43 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ |
| 39 | ${DES_ENC} read2pwd.o \ | 44 | ${DES_ENC} \ |
| 40 | fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o supp.o | 45 | fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \ |
| 46 | ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o | ||
| 41 | 47 | ||
| 42 | SRC= $(LIBSRC) | 48 | SRC= $(LIBSRC) |
| 43 | 49 | ||
| 44 | EXHEADER= des.h | 50 | EXHEADER= des.h des_old.h |
| 45 | HEADER= des_locl.h rpc_des.h podd.h sk.h spr.h des_ver.h $(EXHEADER) | 51 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) |
| 46 | 52 | ||
| 47 | ALL= $(GENERAL) $(SRC) $(HEADER) | 53 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 48 | 54 | ||
| @@ -53,15 +59,18 @@ all: lib | |||
| 53 | 59 | ||
| 54 | lib: $(LIBOBJ) | 60 | lib: $(LIBOBJ) |
| 55 | $(AR) $(LIB) $(LIBOBJ) | 61 | $(AR) $(LIB) $(LIBOBJ) |
| 56 | sh $(TOP)/util/ranlib.sh $(LIB) | 62 | $(RANLIB) $(LIB) || echo Never mind. |
| 57 | @touch lib | 63 | @touch lib |
| 58 | 64 | ||
| 65 | des: des.o cbc3_enc.o lib | ||
| 66 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) | ||
| 67 | |||
| 59 | # elf | 68 | # elf |
| 60 | asm/dx86-elf.o: asm/dx86unix.cpp | 69 | asm/dx86-elf.o: asm/dx86unix.cpp |
| 61 | $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o | 70 | $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o |
| 62 | 71 | ||
| 63 | asm/yx86-elf.o: asm/yx86unix.cpp | 72 | asm/yx86-elf.o: asm/yx86unix.cpp |
| 64 | $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o | 73 | $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o |
| 65 | 74 | ||
| 66 | # solaris | 75 | # solaris |
| 67 | asm/dx86-sol.o: asm/dx86unix.cpp | 76 | asm/dx86-sol.o: asm/dx86unix.cpp |
| @@ -83,38 +92,34 @@ asm/yx86-out.o: asm/yx86unix.cpp | |||
| 83 | 92 | ||
| 84 | # bsdi | 93 | # bsdi |
| 85 | asm/dx86bsdi.o: asm/dx86unix.cpp | 94 | asm/dx86bsdi.o: asm/dx86unix.cpp |
| 86 | $(CPP) -DBSDI asm/dx86unix.cpp | as -o asm/dx86bsdi.o | 95 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o |
| 87 | 96 | ||
| 88 | asm/yx86bsdi.o: asm/yx86unix.cpp | 97 | asm/yx86bsdi.o: asm/yx86unix.cpp |
| 89 | $(CPP) -DBSDI asm/yx86unix.cpp | as -o asm/yx86bsdi.o | 98 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o |
| 90 | 99 | ||
| 91 | asm/dx86unix.cpp: | 100 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 92 | (cd asm; perl des-586.pl cpp >dx86unix.cpp) | 101 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) |
| 93 | 102 | ||
| 94 | asm/yx86unix.cpp: | 103 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl |
| 95 | (cd asm; perl crypt586.pl cpp >yx86unix.cpp) | 104 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) |
| 96 | 105 | ||
| 97 | files: | 106 | files: |
| 98 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 107 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 99 | 108 | ||
| 100 | links: | 109 | links: |
| 101 | /bin/rm -f Makefile | 110 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 102 | $(TOP)/util/point.sh Makefile.ssl Makefile | 111 | @$(TOP)/util/point.sh ../../perlasm asm/perlasm |
| 103 | /bin/rm -f des.doc | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 104 | /bin/rm -fr asm/perlasm | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 105 | $(TOP)/util/point.sh ../../perlasm asm/perlasm | 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 106 | $(TOP)/util/point.sh ../../doc/des.doc des.doc | ||
| 107 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | ||
| 108 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 109 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 110 | 115 | ||
| 111 | install: installs | 116 | install: installs |
| 112 | 117 | ||
| 113 | installs: | 118 | installs: |
| 114 | @for i in $(EXHEADER) ; \ | 119 | @for i in $(EXHEADER) ; \ |
| 115 | do \ | 120 | do \ |
| 116 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 117 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 118 | done; | 123 | done; |
| 119 | 124 | ||
| 120 | tags: | 125 | tags: |
| @@ -126,15 +131,195 @@ lint: | |||
| 126 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 127 | 132 | ||
| 128 | depend: | 133 | depend: |
| 129 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 130 | 135 | ||
| 131 | dclean: | 136 | dclean: |
| 132 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 133 | mv -f Makefile.new $(MAKEFILE) | 138 | mv -f Makefile.new $(MAKEFILE) |
| 134 | 139 | ||
| 135 | clean: | 140 | clean: |
| 136 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 141 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff |
| 137 | |||
| 138 | errors: | ||
| 139 | 142 | ||
| 140 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 143 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 144 | |||
| 145 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 146 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 147 | cbc_cksm.o: ../../include/openssl/opensslconf.h | ||
| 148 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 149 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 150 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 151 | cbc_cksm.o: cbc_cksm.c des_locl.h | ||
| 152 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 153 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 154 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 155 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 157 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | ||
| 158 | cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 159 | cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 160 | cfb64ede.o: ../../include/openssl/opensslconf.h | ||
| 161 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 162 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 163 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 164 | cfb64ede.o: cfb64ede.c des_locl.h | ||
| 165 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 166 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 167 | cfb64enc.o: ../../include/openssl/opensslconf.h | ||
| 168 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 169 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 170 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 171 | cfb64enc.o: cfb64enc.c des_locl.h | ||
| 172 | cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 174 | cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 175 | cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 176 | cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 177 | cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h | ||
| 178 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 179 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 180 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 181 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 182 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 183 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | ||
| 184 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 185 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 186 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 187 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 188 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 189 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 190 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | ||
| 191 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 192 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 193 | des_old2.o: ../../include/openssl/opensslconf.h | ||
| 194 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 195 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 196 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 197 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 198 | des_old2.o: des_old2.c | ||
| 199 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 200 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 201 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
| 202 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 203 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 204 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 205 | ecb3_enc.o: des_locl.h ecb3_enc.c | ||
| 206 | ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 207 | ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 208 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 209 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 210 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 211 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h | ||
| 212 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 213 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 214 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | ||
| 215 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h | ||
| 216 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 217 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 218 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | ||
| 219 | enc_read.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 220 | enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 221 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 222 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 223 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 224 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 225 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 226 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | ||
| 228 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 229 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 230 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 231 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 232 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 233 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 234 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 235 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 236 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 237 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | ||
| 238 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 239 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 240 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 241 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 242 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 243 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | ||
| 244 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 245 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 246 | fcrypt_b.o: ../../include/openssl/opensslconf.h | ||
| 247 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 248 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 250 | fcrypt_b.o: des_locl.h fcrypt_b.c | ||
| 251 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 252 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 253 | ofb64ede.o: ../../include/openssl/opensslconf.h | ||
| 254 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 255 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 257 | ofb64ede.o: des_locl.h ofb64ede.c | ||
| 258 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 259 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 260 | ofb64enc.o: ../../include/openssl/opensslconf.h | ||
| 261 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 262 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 263 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 264 | ofb64enc.o: des_locl.h ofb64enc.c | ||
| 265 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 266 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 267 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 268 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 269 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 270 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | ||
| 271 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 272 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 273 | pcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 274 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 275 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 276 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 277 | pcbc_enc.o: des_locl.h pcbc_enc.c | ||
| 278 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 279 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 280 | qud_cksm.o: ../../include/openssl/opensslconf.h | ||
| 281 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 282 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 283 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 284 | qud_cksm.o: des_locl.h qud_cksm.c | ||
| 285 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 286 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 287 | rand_key.o: ../../include/openssl/opensslconf.h | ||
| 288 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 289 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 290 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 291 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 292 | rand_key.o: rand_key.c | ||
| 293 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 294 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 295 | read2pwd.o: ../../include/openssl/opensslconf.h | ||
| 296 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 297 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 298 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 299 | read2pwd.o: read2pwd.c | ||
| 300 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 301 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 302 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 303 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 304 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 305 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | ||
| 306 | rpc_enc.o: rpc_enc.c | ||
| 307 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 308 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 309 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 310 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 311 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 312 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
| 313 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 314 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 315 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 316 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 317 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 318 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | ||
| 319 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 320 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 321 | xcbc_enc.o: ../../include/openssl/opensslconf.h | ||
| 322 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 323 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 324 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 325 | xcbc_enc.o: des_locl.h xcbc_enc.c | ||
diff --git a/src/lib/libssl/src/crypto/dh/Makefile.ssl b/src/lib/libssl/src/crypto/dh/Makefile.ssl index dfa7e4525d..9dddf8dd61 100644 --- a/src/lib/libssl/src/crypto/dh/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dh/Makefile.ssl | |||
| @@ -5,25 +5,26 @@ | |||
| 5 | DIR= dh | 5 | DIR= dh |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=dh | ||
| 19 | ERRC=dh_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= dhtest.c | 22 | TEST= dhtest.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c | 26 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c |
| 26 | LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o | 27 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o |
| 27 | 28 | ||
| 28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 29 | 30 | ||
| @@ -39,24 +40,23 @@ all: lib | |||
| 39 | 40 | ||
| 40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 44 | @touch lib |
| 44 | 45 | ||
| 45 | files: | 46 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 48 | ||
| 48 | links: | 49 | links: |
| 49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 54 | ||
| 55 | install: | 55 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 57 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 60 | done; |
| 61 | 61 | ||
| 62 | tags: | 62 | tags: |
| @@ -68,17 +68,69 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 76 | ||
| 77 | clean: | 77 | clean: |
| 78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 79 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 83 | dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 84 | dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 85 | dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 86 | dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 87 | dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 88 | dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 89 | dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 90 | dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 91 | dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c | ||
| 92 | dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 93 | dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 94 | dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 95 | dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 96 | dh_check.o: ../../include/openssl/opensslconf.h | ||
| 97 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 98 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 99 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c | ||
| 100 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 101 | dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 102 | dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 103 | dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 104 | dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 105 | dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 106 | dh_err.o: ../../include/openssl/symhacks.h dh_err.c | ||
| 107 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 108 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 109 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
| 110 | dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 111 | dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 112 | dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 113 | dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 114 | dh_gen.o: ../cryptlib.h dh_gen.c | ||
| 115 | dh_key.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 116 | dh_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 117 | dh_key.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 118 | dh_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 119 | dh_key.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 120 | dh_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 121 | dh_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | dh_key.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 123 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 124 | dh_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 125 | dh_key.o: ../cryptlib.h dh_key.c | ||
| 126 | dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 127 | dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 128 | dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 129 | dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 130 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 131 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 132 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 133 | dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 134 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 135 | dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 136 | dh_lib.o: ../cryptlib.h dh_lib.c | ||
diff --git a/src/lib/libssl/src/crypto/dsa/Makefile.ssl b/src/lib/libssl/src/crypto/dsa/Makefile.ssl index 2cc4ddb39e..e780ee429b 100644 --- a/src/lib/libssl/src/crypto/dsa/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dsa/Makefile.ssl | |||
| @@ -5,25 +5,28 @@ | |||
| 5 | DIR= dsa | 5 | DIR= dsa |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=dsa | ||
| 19 | ERRC=dsa_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST=dsatest.c | 22 | TEST=dsatest.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c dsa_sign.c $(ERRC).c | 26 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ |
| 26 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_vrf.o dsa_sign.o $(ERRC).o | 27 | dsa_err.c dsa_ossl.c |
| 28 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ | ||
| 29 | dsa_err.o dsa_ossl.o | ||
| 27 | 30 | ||
| 28 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
| 29 | 32 | ||
| @@ -39,24 +42,23 @@ all: lib | |||
| 39 | 42 | ||
| 40 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 46 | @touch lib |
| 44 | 47 | ||
| 45 | files: | 48 | files: |
| 46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 47 | 50 | ||
| 48 | links: | 51 | links: |
| 49 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 54 | 56 | ||
| 55 | install: | 57 | install: |
| 56 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
| 57 | do \ | 59 | do \ |
| 58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 60 | done; | 62 | done; |
| 61 | 63 | ||
| 62 | tags: | 64 | tags: |
| @@ -68,17 +70,100 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 71 | ||
| 70 | depend: | 72 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 74 | ||
| 73 | dclean: | 75 | dclean: |
| 74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 75 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
| 76 | 78 | ||
| 77 | clean: | 79 | clean: |
| 78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 79 | |||
| 80 | errors: | ||
| 81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 83 | 81 | ||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | |||
| 84 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 85 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 86 | dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 87 | dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 88 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 89 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 90 | dsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 91 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 92 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 93 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c | ||
| 94 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 95 | dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 96 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 97 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 98 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 101 | dsa_err.o: dsa_err.c | ||
| 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 103 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 104 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 105 | dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 106 | dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 107 | dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 108 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 109 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 110 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 111 | dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 112 | dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 113 | dsa_gen.o: ../cryptlib.h dsa_gen.c | ||
| 114 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 117 | dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 119 | dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 120 | dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 121 | dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | dsa_key.o: ../cryptlib.h dsa_key.c | ||
| 123 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 124 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 125 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 126 | dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 127 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 128 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 129 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 130 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 131 | dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 132 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 133 | dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c | ||
| 134 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 135 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 136 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 137 | dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 138 | dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 139 | dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 140 | dsa_ossl.o: ../../include/openssl/opensslconf.h | ||
| 141 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 142 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 143 | dsa_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 144 | dsa_ossl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 145 | dsa_ossl.o: ../cryptlib.h dsa_ossl.c | ||
| 146 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 149 | dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 150 | dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 151 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 152 | dsa_sign.o: ../../include/openssl/opensslconf.h | ||
| 153 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 154 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 155 | dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 156 | dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 157 | dsa_sign.o: ../cryptlib.h dsa_sign.c | ||
| 158 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 159 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 160 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 161 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 162 | dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 163 | dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 164 | dsa_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 165 | dsa_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 166 | dsa_vrf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 167 | dsa_vrf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 168 | dsa_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 169 | dsa_vrf.o: ../cryptlib.h dsa_vrf.c | ||
diff --git a/src/lib/libssl/src/crypto/dso/Makefile.ssl b/src/lib/libssl/src/crypto/dso/Makefile.ssl index effc46d2dc..c47ca2d78c 100644 --- a/src/lib/libssl/src/crypto/dso/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dso/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= dso | 5 | DIR= dso |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -41,7 +42,7 @@ all: lib | |||
| 41 | 42 | ||
| 42 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | $(RANLIB) $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 46 | @touch lib |
| 46 | 47 | ||
| 47 | files: | 48 | files: |
| @@ -80,61 +81,62 @@ clean: | |||
| 80 | 81 | ||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 82 | 83 | ||
| 83 | dso_dl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 84 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h |
| 84 | dso_dl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 85 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 85 | dso_dl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 86 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 86 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 87 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 87 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 88 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 88 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 89 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 89 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 90 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c |
| 90 | dso_dlfcn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 91 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h |
| 91 | dso_dlfcn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 92 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 92 | dso_dlfcn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 93 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 94 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 94 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | 95 | dso_dlfcn.o: ../../include/openssl/opensslconf.h |
| 95 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 96 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 96 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 97 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 97 | dso_dlfcn.o: ../cryptlib.h | 98 | dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c |
| 98 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 99 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
| 99 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/err.h | 100 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 100 | dso_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h | 101 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 102 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 101 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 103 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 102 | dso_err.o: ../../include/openssl/symhacks.h | 104 | dso_err.o: ../../include/openssl/symhacks.h dso_err.c |
| 103 | dso_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 105 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h |
| 104 | dso_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 106 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 105 | dso_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 107 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 106 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 108 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 107 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 109 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 108 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 110 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 109 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h | 111 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c |
| 110 | dso_null.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 112 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h |
| 111 | dso_null.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 113 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 112 | dso_null.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 114 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 115 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 114 | dso_null.o: ../../include/openssl/opensslconf.h | 116 | dso_null.o: ../../include/openssl/opensslconf.h |
| 115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 117 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 116 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 118 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 117 | dso_null.o: ../cryptlib.h | 119 | dso_null.o: ../cryptlib.h dso_null.c |
| 118 | dso_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 120 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h |
| 119 | dso_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 121 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 120 | dso_openssl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 122 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 123 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 122 | dso_openssl.o: ../../include/openssl/opensslconf.h | 124 | dso_openssl.o: ../../include/openssl/opensslconf.h |
| 123 | dso_openssl.o: ../../include/openssl/opensslv.h | 125 | dso_openssl.o: ../../include/openssl/opensslv.h |
| 124 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 126 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 125 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 127 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c |
| 126 | dso_vms.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 128 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h |
| 127 | dso_vms.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 129 | dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 128 | dso_vms.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 130 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 129 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 131 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 130 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 132 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 131 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 133 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 132 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h | 134 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c |
| 133 | dso_win32.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 135 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h |
| 134 | dso_win32.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 136 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 135 | dso_win32.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 136 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 138 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 137 | dso_win32.o: ../../include/openssl/opensslconf.h | 139 | dso_win32.o: ../../include/openssl/opensslconf.h |
| 138 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 140 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 139 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 140 | dso_win32.o: ../cryptlib.h | 142 | dso_win32.o: ../cryptlib.h dso_win32.c |
diff --git a/src/lib/libssl/src/crypto/engine/Makefile.ssl b/src/lib/libssl/src/crypto/engine/Makefile.ssl index 7a0ffe755d..eeea47fbf5 100644 --- a/src/lib/libssl/src/crypto/engine/Makefile.ssl +++ b/src/lib/libssl/src/crypto/engine/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= engine | 5 | DIR= engine |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,10 +23,18 @@ TEST= enginetest.c | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \ | 26 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ |
| 26 | hw_atalla.c hw_cswift.c hw_ncipher.c | 27 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ |
| 27 | LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \ | 28 | tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \ |
| 28 | hw_atalla.o hw_cswift.o hw_ncipher.o | 29 | eng_openssl.c eng_dyn.c eng_cnf.c \ |
| 30 | hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \ | ||
| 31 | hw_openbsd_dev_crypto.c hw_aep.c hw_sureware.c hw_4758_cca.c | ||
| 32 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | ||
| 33 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | ||
| 34 | tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \ | ||
| 35 | eng_openssl.o eng_dyn.o eng_cnf.o \ | ||
| 36 | hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \ | ||
| 37 | hw_openbsd_dev_crypto.o hw_aep.o hw_sureware.o hw_4758_cca.o | ||
| 29 | 38 | ||
| 30 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 31 | 40 | ||
| @@ -63,6 +72,10 @@ install: | |||
| 63 | tags: | 72 | tags: |
| 64 | ctags $(SRC) | 73 | ctags $(SRC) |
| 65 | 74 | ||
| 75 | errors: | ||
| 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | ||
| 77 | -nostatic -staticloader -write hw_*.c; \ | ||
| 78 | |||
| 66 | tests: | 79 | tests: |
| 67 | 80 | ||
| 68 | lint: | 81 | lint: |
| @@ -80,141 +93,361 @@ clean: | |||
| 80 | 93 | ||
| 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 94 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 82 | 95 | ||
| 83 | engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 96 | eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 84 | engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 97 | eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
| 85 | engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 98 | eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 86 | engine_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 99 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 87 | engine_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 100 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 88 | engine_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 101 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 89 | engine_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 102 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 90 | engine_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 103 | eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 91 | engine_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 104 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 92 | engine_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 105 | eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h |
| 93 | engine_err.o: ../../include/openssl/objects.h | 106 | eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h |
| 94 | engine_err.o: ../../include/openssl/opensslconf.h | 107 | eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 95 | engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 108 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 96 | engine_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 109 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 97 | engine_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 110 | eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 98 | engine_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 111 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 99 | engine_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 112 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 100 | engine_err.o: ../../include/openssl/symhacks.h | 113 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 101 | engine_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 114 | eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 102 | engine_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 115 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 103 | engine_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 116 | eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 104 | engine_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 117 | eng_cnf.o: ../cryptlib.h eng_cnf.c |
| 105 | engine_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 118 | eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 106 | engine_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 119 | eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 107 | engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 120 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 108 | engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 121 | eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 122 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 110 | engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 123 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 111 | engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 124 | eng_ctrl.o: ../../include/openssl/opensslconf.h |
| 112 | engine_lib.o: ../../include/openssl/objects.h | 125 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 113 | engine_lib.o: ../../include/openssl/opensslconf.h | 126 | eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 114 | engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 127 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 115 | engine_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 128 | eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 116 | engine_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 129 | eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h |
| 117 | engine_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 130 | eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 118 | engine_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 131 | eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 119 | engine_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 132 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 120 | engine_list.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 133 | eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 121 | engine_list.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 134 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 122 | engine_list.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 135 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 123 | engine_list.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 136 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 124 | engine_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 137 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | engine_list.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 138 | eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 126 | engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 139 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 127 | engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 140 | eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 128 | engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 141 | eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h |
| 129 | engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 142 | eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 130 | engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 143 | eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
| 131 | engine_list.o: ../../include/openssl/objects.h | 144 | eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 132 | engine_list.o: ../../include/openssl/opensslconf.h | 145 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 133 | engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 146 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 134 | engine_list.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 147 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 135 | engine_list.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 148 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 136 | engine_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 137 | engine_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 138 | engine_list.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 151 | eng_err.o: ../../include/openssl/ui.h eng_err.c |
| 139 | engine_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 152 | eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h |
| 140 | engine_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 153 | eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 141 | engine_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 154 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 142 | engine_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 155 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 143 | engine_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 156 | eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 144 | engine_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 157 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 145 | engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 158 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 146 | engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 159 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 147 | engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 160 | eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 148 | engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 161 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 149 | engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 162 | eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 150 | engine_openssl.o: ../../include/openssl/obj_mac.h | 163 | eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h |
| 151 | engine_openssl.o: ../../include/openssl/objects.h | 164 | eng_init.o: ../../e_os.h ../../include/openssl/asn1.h |
| 152 | engine_openssl.o: ../../include/openssl/opensslconf.h | 165 | eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 153 | engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 166 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 154 | engine_openssl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 167 | eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 155 | engine_openssl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 168 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 156 | engine_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 169 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 157 | engine_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 170 | eng_init.o: ../../include/openssl/opensslconf.h |
| 158 | engine_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 171 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 159 | hw_atalla.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 172 | eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 160 | hw_atalla.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 173 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 161 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 174 | eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 162 | hw_atalla.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 175 | eng_init.o: ../cryptlib.h eng_init.c eng_int.h |
| 176 | eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 177 | eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 178 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 179 | eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 180 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 181 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 182 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 183 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 184 | eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 185 | eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 186 | eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c | ||
| 187 | eng_list.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 188 | eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 189 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 190 | eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 191 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 192 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 193 | eng_list.o: ../../include/openssl/opensslconf.h | ||
| 194 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 195 | eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | ||
| 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 200 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 201 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 202 | eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 203 | eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 204 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 205 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 206 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 207 | eng_openssl.o: ../../include/openssl/opensslconf.h | ||
| 208 | eng_openssl.o: ../../include/openssl/opensslv.h | ||
| 209 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 210 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 211 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h | ||
| 212 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 213 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 214 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 215 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 216 | eng_openssl.o: ../cryptlib.h eng_openssl.c | ||
| 217 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 218 | eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 219 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 220 | eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 221 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 222 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 223 | eng_pkey.o: ../../include/openssl/opensslconf.h | ||
| 224 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 225 | eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 226 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 227 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 228 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | ||
| 229 | eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 230 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 231 | eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 232 | eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 233 | eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 234 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 235 | eng_table.o: ../../include/openssl/objects.h | ||
| 236 | eng_table.o: ../../include/openssl/opensslconf.h | ||
| 237 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 238 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 239 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 240 | eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 241 | eng_table.o: eng_int.h eng_table.c | ||
| 242 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 243 | hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 244 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 245 | hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 246 | hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 247 | hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 248 | hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 249 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 250 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | ||
| 251 | hw_4758_cca.o: ../../include/openssl/opensslv.h | ||
| 252 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 253 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 254 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 255 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 257 | hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c | ||
| 258 | hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h | ||
| 259 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 260 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 261 | hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 262 | hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 263 | hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 264 | hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 265 | hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 266 | hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 267 | hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 268 | hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c | ||
| 269 | hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h | ||
| 270 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 271 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 272 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 273 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 164 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 274 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 165 | hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 275 | hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 166 | hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 167 | hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 277 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 168 | hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 278 | hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 169 | hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 279 | hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 170 | hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 280 | hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 171 | hw_atalla.o: ../../include/openssl/opensslconf.h | 281 | hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h |
| 172 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
| 173 | hw_atalla.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 174 | hw_atalla.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 175 | hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 176 | hw_atalla.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 177 | hw_atalla.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
| 178 | hw_atalla.o: vendor_defns/atalla.h | 282 | hw_atalla.o: vendor_defns/atalla.h |
| 179 | hw_cswift.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 283 | hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h |
| 180 | hw_cswift.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 284 | hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 181 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 285 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 182 | hw_cswift.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 183 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 286 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 184 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 287 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 185 | hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 288 | hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 186 | hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 187 | hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 290 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 188 | hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 291 | hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 189 | hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 292 | hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 190 | hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 293 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 191 | hw_cswift.o: ../../include/openssl/opensslconf.h | 294 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h |
| 192 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
| 193 | hw_cswift.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 194 | hw_cswift.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 195 | hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 196 | hw_cswift.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 197 | hw_cswift.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
| 198 | hw_cswift.o: vendor_defns/cswift.h | 295 | hw_cswift.o: vendor_defns/cswift.h |
| 199 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 296 | hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h |
| 200 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 297 | hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 201 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 298 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 202 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 203 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 299 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 204 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 300 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 205 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 301 | hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 206 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 302 | hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 207 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 208 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 209 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 210 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 303 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 211 | hw_ncipher.o: ../../include/openssl/opensslconf.h | 304 | hw_ncipher.o: ../../include/openssl/opensslconf.h |
| 212 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h | 305 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 213 | hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 306 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 214 | hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 307 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 215 | hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 308 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 216 | hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 309 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 217 | hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 310 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 218 | hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 219 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 311 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 220 | hw_ncipher.o: ../cryptlib.h engine_int.h vendor_defns/hwcryptohook.h | 312 | hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h |
| 313 | hw_ncipher.o: vendor_defns/hwcryptohook.h | ||
| 314 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 315 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 316 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 317 | hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 318 | hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 319 | hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 320 | hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 321 | hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 322 | hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 323 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 324 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 325 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | ||
| 326 | hw_openbsd_dev_crypto.o: ../../include/openssl/asn1.h | ||
| 327 | hw_openbsd_dev_crypto.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 328 | hw_openbsd_dev_crypto.o: ../../include/openssl/conf.h | ||
| 329 | hw_openbsd_dev_crypto.o: ../../include/openssl/crypto.h | ||
| 330 | hw_openbsd_dev_crypto.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 331 | hw_openbsd_dev_crypto.o: ../../include/openssl/e_os2.h | ||
| 332 | hw_openbsd_dev_crypto.o: ../../include/openssl/engine.h | ||
| 333 | hw_openbsd_dev_crypto.o: ../../include/openssl/err.h | ||
| 334 | hw_openbsd_dev_crypto.o: ../../include/openssl/evp.h | ||
| 335 | hw_openbsd_dev_crypto.o: ../../include/openssl/lhash.h | ||
| 336 | hw_openbsd_dev_crypto.o: ../../include/openssl/obj_mac.h | ||
| 337 | hw_openbsd_dev_crypto.o: ../../include/openssl/objects.h | ||
| 338 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslconf.h | ||
| 339 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslv.h | ||
| 340 | hw_openbsd_dev_crypto.o: ../../include/openssl/ossl_typ.h | ||
| 341 | hw_openbsd_dev_crypto.o: ../../include/openssl/rand.h | ||
| 342 | hw_openbsd_dev_crypto.o: ../../include/openssl/rsa.h | ||
| 343 | hw_openbsd_dev_crypto.o: ../../include/openssl/safestack.h | ||
| 344 | hw_openbsd_dev_crypto.o: ../../include/openssl/stack.h | ||
| 345 | hw_openbsd_dev_crypto.o: ../../include/openssl/symhacks.h | ||
| 346 | hw_openbsd_dev_crypto.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h | ||
| 347 | hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c | ||
| 348 | hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 349 | hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 350 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 351 | hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 352 | hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 353 | hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 354 | hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 355 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 356 | hw_sureware.o: ../../include/openssl/opensslconf.h | ||
| 357 | hw_sureware.o: ../../include/openssl/opensslv.h | ||
| 358 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 359 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 360 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 361 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 362 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 363 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 364 | hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h | ||
| 365 | hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h | ||
| 366 | hw_sureware.o: vendor_defns/sureware.h | ||
| 367 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 368 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 369 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 370 | hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 371 | hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 372 | hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 373 | hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 374 | hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 375 | hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 376 | hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 377 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 378 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | ||
| 379 | hw_ubsec.o: vendor_defns/hw_ubsec.h | ||
| 380 | tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 381 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 382 | tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 383 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 384 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 385 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 386 | tb_cipher.o: ../../include/openssl/objects.h | ||
| 387 | tb_cipher.o: ../../include/openssl/opensslconf.h | ||
| 388 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 389 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 390 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 391 | tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 392 | tb_cipher.o: eng_int.h tb_cipher.c | ||
| 393 | tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 394 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 395 | tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 396 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 397 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 398 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 399 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 400 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 401 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 402 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 403 | tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 404 | tb_dh.o: tb_dh.c | ||
| 405 | tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 406 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 407 | tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 408 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 409 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 410 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 411 | tb_digest.o: ../../include/openssl/objects.h | ||
| 412 | tb_digest.o: ../../include/openssl/opensslconf.h | ||
| 413 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 414 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 415 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 416 | tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 417 | tb_digest.o: eng_int.h tb_digest.c | ||
| 418 | tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 419 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 420 | tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 421 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 422 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 423 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 424 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 425 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 426 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 427 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 428 | tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 429 | tb_dsa.o: tb_dsa.c | ||
| 430 | tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 431 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 432 | tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 433 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 434 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 435 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 436 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 437 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 438 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 439 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 440 | tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 441 | tb_rand.o: eng_int.h tb_rand.c | ||
| 442 | tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 443 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 444 | tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 445 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 446 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 447 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 448 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 449 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 450 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 451 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 452 | tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
| 453 | tb_rsa.o: tb_rsa.c | ||
diff --git a/src/lib/libssl/src/crypto/err/Makefile.ssl b/src/lib/libssl/src/crypto/err/Makefile.ssl index 57c87eb041..2946c00ead 100644 --- a/src/lib/libssl/src/crypto/err/Makefile.ssl +++ b/src/lib/libssl/src/crypto/err/Makefile.ssl | |||
| @@ -5,11 +5,14 @@ | |||
| 5 | DIR= err | 5 | DIR= err |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,45 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 83 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 84 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | ||
| 88 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 89 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 90 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 91 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 92 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 93 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h | ||
| 94 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 95 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 96 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 97 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 98 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h | ||
| 99 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 100 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 101 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 102 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
| 104 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 105 | err_all.o: err_all.c | ||
| 106 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 107 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 110 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 111 | err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | err_prn.o: ../cryptlib.h err_prn.c | ||
diff --git a/src/lib/libssl/src/crypto/evp/Makefile.ssl b/src/lib/libssl/src/crypto/evp/Makefile.ssl index 8bf2516458..3902ca0a18 100644 --- a/src/lib/libssl/src/crypto/evp/Makefile.ssl +++ b/src/lib/libssl/src/crypto/evp/Makefile.ssl | |||
| @@ -5,52 +5,46 @@ | |||
| 5 | DIR= evp | 5 | DIR= evp |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=evp | ||
| 19 | ERRC=evp_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST=evp_test.c |
| 23 | TESTDATA=evptests.txt | ||
| 22 | APPS= | 24 | APPS= |
| 23 | 25 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c \ | 27 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ |
| 26 | e_ecb_d.c e_cbc_d.c e_cfb_d.c e_ofb_d.c \ | 28 | e_des.c e_bf.c e_idea.c e_des3.c \ |
| 27 | e_ecb_i.c e_cbc_i.c e_cfb_i.c e_ofb_i.c \ | 29 | e_rc4.c e_aes.c names.c \ |
| 28 | e_ecb_3d.c e_cbc_3d.c e_rc4.c names.c \ | 30 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ |
| 29 | e_cfb_3d.c e_ofb_3d.c e_xcbc_d.c \ | 31 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ |
| 30 | e_ecb_r2.c e_cbc_r2.c e_cfb_r2.c e_ofb_r2.c \ | 32 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \ |
| 31 | e_ecb_bf.c e_cbc_bf.c e_cfb_bf.c e_ofb_bf.c \ | ||
| 32 | e_ecb_c.c e_cbc_c.c e_cfb_c.c e_ofb_c.c \ | ||
| 33 | e_ecb_r5.c e_cbc_r5.c e_cfb_r5.c e_ofb_r5.c \ | ||
| 34 | m_null.c m_md2.c m_md5.c m_sha.c m_sha1.c m_dss.c m_dss1.c m_mdc2.c \ | ||
| 35 | m_ripemd.c \ | ||
| 36 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ | 33 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ |
| 37 | bio_md.c bio_b64.c bio_enc.c $(ERRC).c e_null.c \ | 34 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ |
| 38 | c_all.c evp_lib.c | 35 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ |
| 39 | 36 | evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c | |
| 40 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o \ | 37 | |
| 41 | e_ecb_d.o e_cbc_d.o e_cfb_d.o e_ofb_d.o \ | 38 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ |
| 42 | e_ecb_i.o e_cbc_i.o e_cfb_i.o e_ofb_i.o \ | 39 | e_des.o e_bf.o e_idea.o e_des3.o \ |
| 43 | e_ecb_3d.o e_cbc_3d.o e_rc4.o names.o \ | 40 | e_rc4.o e_aes.o names.o \ |
| 44 | e_cfb_3d.o e_ofb_3d.o e_xcbc_d.o \ | 41 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ |
| 45 | e_ecb_r2.o e_cbc_r2.o e_cfb_r2.o e_ofb_r2.o \ | 42 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ |
| 46 | e_ecb_bf.o e_cbc_bf.o e_cfb_bf.o e_ofb_bf.o \ | 43 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \ |
| 47 | e_ecb_c.o e_cbc_c.o e_cfb_c.o e_ofb_c.o \ | ||
| 48 | e_ecb_r5.o e_cbc_r5.o e_cfb_r5.o e_ofb_r5.o \ | ||
| 49 | m_null.o m_md2.o m_md5.o m_sha.o m_sha1.o m_dss.o m_dss1.o m_mdc2.o \ | ||
| 50 | m_ripemd.o \ | ||
| 51 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ | 44 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ |
| 52 | bio_md.o bio_b64.o bio_enc.o $(ERRC).o e_null.o \ | 45 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ |
| 53 | c_all.o evp_lib.o | 46 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ |
| 47 | evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o | ||
| 54 | 48 | ||
| 55 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
| 56 | 50 | ||
| @@ -66,24 +60,24 @@ all: lib | |||
| 66 | 60 | ||
| 67 | lib: $(LIBOBJ) | 61 | lib: $(LIBOBJ) |
| 68 | $(AR) $(LIB) $(LIBOBJ) | 62 | $(AR) $(LIB) $(LIBOBJ) |
| 69 | sh $(TOP)/util/ranlib.sh $(LIB) | 63 | $(RANLIB) $(LIB) || echo Never mind. |
| 70 | @touch lib | 64 | @touch lib |
| 71 | 65 | ||
| 72 | files: | 66 | files: |
| 73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 67 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 74 | 68 | ||
| 75 | links: | 69 | links: |
| 76 | /bin/rm -f Makefile | 70 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 71 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TESTDATA) |
| 80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 81 | 75 | ||
| 82 | install: | 76 | install: |
| 83 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
| 84 | do \ | 78 | do \ |
| 85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 87 | done; | 81 | done; |
| 88 | 82 | ||
| 89 | tags: | 83 | tags: |
| @@ -95,17 +89,574 @@ lint: | |||
| 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 96 | 90 | ||
| 97 | depend: | 91 | depend: |
| 98 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 99 | 93 | ||
| 100 | dclean: | 94 | dclean: |
| 101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 102 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
| 103 | 97 | ||
| 104 | clean: | 98 | clean: |
| 105 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 106 | |||
| 107 | errors: | ||
| 108 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 109 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 110 | 100 | ||
| 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | |||
| 103 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 104 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 105 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 106 | bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 107 | bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 108 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 109 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 110 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 111 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 112 | bio_b64.o: ../cryptlib.h bio_b64.c | ||
| 113 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 117 | bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 118 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 119 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 120 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 121 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | bio_enc.o: ../cryptlib.h bio_enc.c | ||
| 123 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 124 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 125 | bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 126 | bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 127 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 128 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 129 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 130 | bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 131 | bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c | ||
| 132 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 133 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 134 | bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 135 | bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 136 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 137 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 138 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 139 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 140 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 141 | bio_ok.o: ../cryptlib.h bio_ok.c | ||
| 142 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 143 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 144 | c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 145 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 146 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 147 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 148 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 149 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 150 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c | ||
| 151 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 152 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 153 | c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 154 | c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 155 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 156 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 157 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 158 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 159 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 160 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 161 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 162 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 163 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | ||
| 164 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 165 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 166 | c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 167 | c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 168 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 169 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 170 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 171 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 172 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 173 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 174 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 175 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 176 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | ||
| 177 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 178 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 179 | digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 180 | digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 181 | digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 182 | digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 183 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 184 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 185 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 186 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 187 | digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 188 | digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c | ||
| 189 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 190 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 191 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 192 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 193 | e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 194 | e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 195 | e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 196 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 197 | e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h | ||
| 198 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 199 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 200 | e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 201 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 202 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 203 | e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 204 | e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 205 | e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 206 | e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 207 | e_bf.o: ../cryptlib.h e_bf.c evp_locl.h | ||
| 208 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 209 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 210 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 211 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 212 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 213 | e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 214 | e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 215 | e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 216 | e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 217 | e_cast.o: ../cryptlib.h e_cast.c evp_locl.h | ||
| 218 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 219 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 220 | e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 221 | e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 222 | e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 223 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 224 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 225 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 226 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 227 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 228 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | ||
| 229 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 230 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 231 | e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 232 | e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 233 | e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 234 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 235 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 236 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 237 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 238 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 239 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | ||
| 240 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 241 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 242 | e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 243 | e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 244 | e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 245 | e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 246 | e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 247 | e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 248 | e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | e_idea.o: ../cryptlib.h e_idea.c evp_locl.h | ||
| 250 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 251 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 252 | e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 253 | e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 254 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 255 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 256 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 257 | e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 258 | e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c | ||
| 259 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 260 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 261 | e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 262 | e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 263 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 264 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 265 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 266 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | ||
| 267 | e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 268 | e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h | ||
| 269 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 270 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 271 | e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 272 | e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 273 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 274 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 275 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 276 | e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | ||
| 277 | e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 278 | e_rc4.o: ../cryptlib.h e_rc4.c | ||
| 279 | e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 280 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 281 | e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 282 | e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 283 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 284 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 285 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 286 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h | ||
| 287 | e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 288 | e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h | ||
| 289 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 290 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 291 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 292 | e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 293 | e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 294 | e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 295 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 296 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | ||
| 297 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 298 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 299 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 300 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | ||
| 301 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 302 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 303 | encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 304 | encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 305 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 306 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 307 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 308 | encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 309 | encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c | ||
| 310 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 311 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 312 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 313 | evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 314 | evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 315 | evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 316 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 317 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 318 | evp_acnf.o: ../../include/openssl/opensslconf.h | ||
| 319 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 320 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 321 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 322 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 323 | evp_acnf.o: ../cryptlib.h evp_acnf.c | ||
| 324 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 325 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 326 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 327 | evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 328 | evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 329 | evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 330 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 331 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 332 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 333 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 334 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 335 | evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 336 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | ||
| 337 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 338 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 339 | evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 340 | evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 341 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 342 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 343 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 344 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 345 | evp_err.o: evp_err.c | ||
| 346 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 347 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 348 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 349 | evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 350 | evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 351 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 352 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 353 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 354 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 355 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 356 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 357 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 358 | evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 359 | evp_key.o: ../cryptlib.h evp_key.c | ||
| 360 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 361 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 362 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 363 | evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 364 | evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 365 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 366 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 367 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 368 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 369 | evp_lib.o: ../cryptlib.h evp_lib.c | ||
| 370 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 371 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 372 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 373 | evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 374 | evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 375 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 376 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 377 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 378 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 379 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 380 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 381 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 382 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | ||
| 383 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 384 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 385 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 386 | evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 387 | evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 388 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 389 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 390 | evp_pkey.o: ../../include/openssl/opensslconf.h | ||
| 391 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 392 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 393 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 394 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 395 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 396 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | ||
| 397 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 398 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 399 | m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 400 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 401 | m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 402 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 403 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 404 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 405 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 406 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 407 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 408 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 409 | m_dss.o: ../cryptlib.h m_dss.c | ||
| 410 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 411 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 412 | m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 413 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 414 | m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 415 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 416 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 417 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 418 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 419 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 420 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 421 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 422 | m_dss1.o: ../cryptlib.h m_dss1.c | ||
| 423 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 424 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 425 | m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 426 | m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 427 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 428 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 429 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 430 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 431 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 432 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 433 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 434 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 435 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c | ||
| 436 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 437 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 438 | m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 439 | m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 440 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 441 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h | ||
| 442 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 443 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 444 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 445 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 446 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 447 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 448 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c | ||
| 449 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 450 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 451 | m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 452 | m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 453 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 454 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h | ||
| 455 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 456 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 457 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 458 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 459 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 460 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 461 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c | ||
| 462 | m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 463 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 464 | m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 465 | m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 466 | m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 467 | m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 468 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
| 469 | m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 470 | m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 471 | m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 472 | m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 473 | m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 474 | m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 475 | m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 476 | m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c | ||
| 477 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 478 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 479 | m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 480 | m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 481 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 482 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 483 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 484 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 485 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 486 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 487 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 488 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 489 | m_null.o: ../cryptlib.h m_null.c | ||
| 490 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 491 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 492 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 493 | m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 494 | m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 495 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 496 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 497 | m_ripemd.o: ../../include/openssl/opensslconf.h | ||
| 498 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 499 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h | ||
| 500 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 501 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 502 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 503 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c | ||
| 504 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 505 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 506 | m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 507 | m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 508 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 509 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 510 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 511 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 512 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 513 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 514 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 515 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 516 | m_sha.o: ../cryptlib.h m_sha.c | ||
| 517 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 518 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 519 | m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 520 | m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 521 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 522 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 523 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 524 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 525 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 526 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 527 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 528 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 529 | m_sha1.o: ../cryptlib.h m_sha1.c | ||
| 530 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 531 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 532 | names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 533 | names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 534 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 535 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 536 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 537 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 538 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 539 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 540 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 541 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 542 | names.o: ../cryptlib.h names.c | ||
| 543 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 544 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 545 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 546 | p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 547 | p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 548 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 549 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 550 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 551 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 552 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 553 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 554 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 555 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | ||
| 556 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 557 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 558 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 559 | p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 560 | p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 561 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
| 562 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 563 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 564 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 565 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 566 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 567 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 568 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 569 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | ||
| 570 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 571 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 572 | p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 573 | p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 574 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 575 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 576 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 577 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 578 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 579 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 580 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 581 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 582 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | ||
| 583 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 584 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 585 | p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 586 | p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 587 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 588 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 589 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 590 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 591 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 592 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 593 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 594 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 595 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | ||
| 596 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 597 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
| 598 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 599 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 600 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 601 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 602 | p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 603 | p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 604 | p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 605 | p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 606 | p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 607 | p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 608 | p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 609 | p_lib.o: ../cryptlib.h p_lib.c | ||
| 610 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 611 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 612 | p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 613 | p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 614 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 615 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 616 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 617 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 618 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 619 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 620 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 621 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 622 | p_open.o: ../cryptlib.h p_open.c | ||
| 623 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 624 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 625 | p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 626 | p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 627 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 628 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 629 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 630 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 631 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 632 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 633 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 634 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 635 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | ||
| 636 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 637 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 638 | p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 639 | p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 640 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 641 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 642 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 643 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 644 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 645 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 646 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 647 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 648 | p_sign.o: ../cryptlib.h p_sign.c | ||
| 649 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 650 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 651 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 652 | p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 653 | p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 654 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 655 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 656 | p_verify.o: ../../include/openssl/opensslconf.h | ||
| 657 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 658 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 659 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 660 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 661 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 662 | p_verify.o: ../cryptlib.h p_verify.c | ||
diff --git a/src/lib/libssl/src/crypto/hmac/Makefile.ssl b/src/lib/libssl/src/crypto/hmac/Makefile.ssl index 7a042b7261..e6cf1a0879 100644 --- a/src/lib/libssl/src/crypto/hmac/Makefile.ssl +++ b/src/lib/libssl/src/crypto/hmac/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,22 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 83 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 84 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 85 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h | ||
| 86 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 87 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 88 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 89 | hmac.o: ../../include/openssl/symhacks.h hmac.c | ||
diff --git a/src/lib/libssl/src/crypto/idea/Makefile.ssl b/src/lib/libssl/src/crypto/idea/Makefile.ssl index 41b42ce03b..a3ac920371 100644 --- a/src/lib/libssl/src/crypto/idea/Makefile.ssl +++ b/src/lib/libssl/src/crypto/idea/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,24 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 83 | i_cbc.o: i_cbc.c idea_lcl.h | ||
| 84 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 85 | i_cfb64.o: i_cfb64.c idea_lcl.h | ||
| 86 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.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 | ||
| 89 | i_ofb64.o: i_ofb64.c idea_lcl.h | ||
| 90 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
| 91 | i_skey.o: i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libssl/src/crypto/lhash/Makefile.ssl b/src/lib/libssl/src/crypto/lhash/Makefile.ssl index cb08547b4f..a6851bcd36 100644 --- a/src/lib/libssl/src/crypto/lhash/Makefile.ssl +++ b/src/lib/libssl/src/crypto/lhash/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,26 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | lh_stats.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | lh_stats.o: ../cryptlib.h lh_stats.c | ||
| 89 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 90 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
| 91 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 92 | lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 93 | lhash.o: ../../include/openssl/symhacks.h lhash.c | ||
diff --git a/src/lib/libssl/src/crypto/md2/Makefile.ssl b/src/lib/libssl/src/crypto/md2/Makefile.ssl index d8e7200c83..cd4f42f2ed 100644 --- a/src/lib/libssl/src/crypto/md2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md2/Makefile.ssl | |||
| @@ -2,14 +2,17 @@ | |||
| 2 | # SSLeay/crypto/md/Makefile | 2 | # SSLeay/crypto/md/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= md | 5 | DIR= md2 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -20,7 +23,7 @@ TEST=md2test.c | |||
| 20 | APPS= | 23 | APPS= |
| 21 | 24 | ||
| 22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 23 | LIBSRC=md2_dgst.c md5_one.c | 26 | LIBSRC=md2_dgst.c md2_one.c |
| 24 | LIBOBJ=md2_dgst.o md2_one.o | 27 | LIBOBJ=md2_dgst.o md2_one.o |
| 25 | 28 | ||
| 26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,23 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | ||
| 83 | md2_dgst.o: ../../include/openssl/opensslv.h md2_dgst.c | ||
| 84 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 85 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 86 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 87 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 88 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 89 | md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 90 | md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c | ||
diff --git a/src/lib/libssl/src/crypto/md4/Makefile.ssl b/src/lib/libssl/src/crypto/md4/Makefile.ssl index 5341bf5b46..12eee13608 100644 --- a/src/lib/libssl/src/crypto/md4/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md4/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 | ||
| @@ -40,7 +41,7 @@ all: lib | |||
| 40 | 41 | ||
| 41 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | $(RANLIB) $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 45 | @touch lib |
| 45 | 46 | ||
| 46 | files: | 47 | files: |
| @@ -79,6 +80,9 @@ clean: | |||
| 79 | 80 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | 82 | ||
| 82 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 83 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
| 83 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_locl.h | 84 | md4_dgst.o: ../../include/openssl/opensslconf.h |
| 84 | md4_one.o: ../../include/openssl/md4.h | 85 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
| 86 | md4_dgst.o: md4_locl.h | ||
| 87 | md4_one.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h | ||
| 88 | md4_one.o: ../../include/openssl/opensslconf.h md4_one.c | ||
diff --git a/src/lib/libssl/src/crypto/md5/Makefile.ssl b/src/lib/libssl/src/crypto/md5/Makefile.ssl index 47e1ce05ca..fd0d63c339 100644 --- a/src/lib/libssl/src/crypto/md5/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md5/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -18,9 +21,17 @@ MD5_ASM_OBJ= | |||
| 18 | 21 | ||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 20 | 23 | ||
| 24 | # We let the C compiler driver to take care of .s files. This is done in | ||
| 25 | # order to be excused from maintaining a separate set of architecture | ||
| 26 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
| 27 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
| 28 | # and pass it down to assembler. | ||
| 29 | AS=$(CC) -c | ||
| 30 | ASFLAGS=$(CFLAGS) | ||
| 31 | |||
| 21 | GENERAL=Makefile | 32 | GENERAL=Makefile |
| 22 | TEST=md5test.c | 33 | TEST=md5test.c |
| 23 | APPS=md5.c | 34 | APPS= |
| 24 | 35 | ||
| 25 | LIB=$(TOP)/libcrypto.a | 36 | LIB=$(TOP)/libcrypto.a |
| 26 | LIBSRC=md5_dgst.c md5_one.c | 37 | LIBSRC=md5_dgst.c md5_one.c |
| @@ -40,12 +51,12 @@ all: lib | |||
| 40 | 51 | ||
| 41 | lib: $(LIBOBJ) | 52 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 53 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 54 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 55 | @touch lib |
| 45 | 56 | ||
| 46 | # elf | 57 | # elf |
| 47 | asm/mx86-elf.o: asm/mx86unix.cpp | 58 | asm/mx86-elf.o: asm/mx86unix.cpp |
| 48 | $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o | 59 | $(CPP) -DELF -x c asm/mx86unix.cpp | as -o asm/mx86-elf.o |
| 49 | 60 | ||
| 50 | # solaris | 61 | # solaris |
| 51 | asm/mx86-sol.o: asm/mx86unix.cpp | 62 | asm/mx86-sol.o: asm/mx86unix.cpp |
| @@ -59,26 +70,43 @@ asm/mx86-out.o: asm/mx86unix.cpp | |||
| 59 | 70 | ||
| 60 | # bsdi | 71 | # bsdi |
| 61 | asm/mx86bsdi.o: asm/mx86unix.cpp | 72 | asm/mx86bsdi.o: asm/mx86unix.cpp |
| 62 | $(CPP) -DBSDI asm/mx86unix.cpp | as -o asm/mx86bsdi.o | 73 | $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o |
| 74 | |||
| 75 | asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl | ||
| 76 | (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp) | ||
| 77 | |||
| 78 | asm/md5-sparcv8plus.o: asm/md5-sparcv9.S | ||
| 79 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 80 | -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S | ||
| 63 | 81 | ||
| 64 | asm/mx86unix.cpp: | 82 | # Old GNU assembler doesn't understand V9 instructions, so we |
| 65 | (cd asm; perl md5-586.pl cpp >mx86unix.cpp) | 83 | # hire /usr/ccs/bin/as to do the job. Note that option is called |
| 84 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
| 85 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
| 86 | # not choose this option, but be adviced to *remove* GNU assembler | ||
| 87 | # or upgrade it. | ||
| 88 | asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S | ||
| 89 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \ | ||
| 90 | /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o | ||
| 91 | |||
| 92 | asm/md5-sparcv9.o: asm/md5-sparcv9.S | ||
| 93 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
| 94 | -o asm/md5-sparcv9.o asm/md5-sparcv9.S | ||
| 66 | 95 | ||
| 67 | files: | 96 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 97 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | 98 | ||
| 70 | links: | 99 | links: |
| 71 | /bin/rm -f Makefile | 100 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 101 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 102 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 103 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 76 | 104 | ||
| 77 | install: | 105 | install: |
| 78 | @for i in $(EXHEADER) ; \ | 106 | @for i in $(EXHEADER) ; \ |
| 79 | do \ | 107 | do \ |
| 80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 108 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 109 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 82 | done; | 110 | done; |
| 83 | 111 | ||
| 84 | tags: | 112 | tags: |
| @@ -90,15 +118,18 @@ lint: | |||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 91 | 119 | ||
| 92 | depend: | 120 | depend: |
| 93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 121 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 94 | 122 | ||
| 95 | dclean: | 123 | dclean: |
| 96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 97 | mv -f Makefile.new $(MAKEFILE) | 125 | mv -f Makefile.new $(MAKEFILE) |
| 98 | 126 | ||
| 99 | clean: | 127 | clean: |
| 100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 128 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 101 | |||
| 102 | errors: | ||
| 103 | 129 | ||
| 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 130 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 131 | |||
| 132 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
| 133 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c | ||
| 134 | md5_dgst.o: md5_locl.h | ||
| 135 | md5_one.o: ../../include/openssl/md5.h md5_one.c | ||
diff --git a/src/lib/libssl/src/crypto/mdc2/Makefile.ssl b/src/lib/libssl/src/crypto/mdc2/Makefile.ssl index 495a2789a0..19cd3520eb 100644 --- a/src/lib/libssl/src/crypto/mdc2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/mdc2/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,31 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 85 | mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 86 | mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
| 87 | mdc2_one.o: ../../include/openssl/opensslconf.h | ||
| 88 | mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 89 | mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 90 | mdc2_one.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 91 | mdc2_one.o: ../cryptlib.h mdc2_one.c | ||
| 92 | mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 93 | mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
| 94 | mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h | ||
| 95 | mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 96 | mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 98 | mdc2dgst.o: mdc2dgst.c | ||
diff --git a/src/lib/libssl/src/crypto/objects/Makefile.ssl b/src/lib/libssl/src/crypto/objects/Makefile.ssl index 320523cea1..efe71eeb35 100644 --- a/src/lib/libssl/src/crypto/objects/Makefile.ssl +++ b/src/lib/libssl/src/crypto/objects/Makefile.ssl | |||
| @@ -5,29 +5,31 @@ | |||
| 5 | DIR= objects | 5 | DIR= objects |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 18 | PERL= perl | ||
| 15 | 19 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 20 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 21 | ||
| 18 | ERR=objects | ||
| 19 | ERRC=obj_err | ||
| 20 | GENERAL=Makefile README | 22 | GENERAL=Makefile README |
| 21 | TEST= | 23 | TEST= |
| 22 | APPS= | 24 | APPS= |
| 23 | 25 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= obj_dat.c obj_lib.c $(ERRC).c | 27 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c |
| 26 | LIBOBJ= obj_dat.o obj_lib.o $(ERRC).o | 28 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o |
| 27 | 29 | ||
| 28 | SRC= $(LIBSRC) | 30 | SRC= $(LIBSRC) |
| 29 | 31 | ||
| 30 | EXHEADER= objects.h | 32 | EXHEADER= objects.h obj_mac.h |
| 31 | HEADER= $(EXHEADER) obj_dat.h | 33 | HEADER= $(EXHEADER) obj_dat.h |
| 32 | 34 | ||
| 33 | ALL= $(GENERAL) $(SRC) $(HEADER) | 35 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -37,29 +39,32 @@ top: | |||
| 37 | 39 | ||
| 38 | all: obj_dat.h lib | 40 | all: obj_dat.h lib |
| 39 | 41 | ||
| 40 | obj_dat.h: objects.h obj_dat.pl | ||
| 41 | perl ./obj_dat.pl < objects.h > obj_dat.h | ||
| 42 | |||
| 43 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 45 | @touch lib |
| 47 | 46 | ||
| 47 | obj_dat.h: obj_dat.pl obj_mac.h | ||
| 48 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
| 49 | |||
| 50 | # objects.pl both reads and writes obj_mac.num | ||
| 51 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
| 52 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
| 53 | |||
| 48 | files: | 54 | files: |
| 49 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 55 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 50 | 56 | ||
| 51 | links: | 57 | links: |
| 52 | /bin/rm -f Makefile | 58 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 53 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 54 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 55 | $(TOP)/util/mklink.sh ../../test $(TEST) | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 56 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 57 | 62 | ||
| 58 | install: | 63 | install: |
| 59 | @for i in $(EXHEADER) ; \ | 64 | @for i in $(EXHEADER) ; \ |
| 60 | do \ | 65 | do \ |
| 61 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 62 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 63 | done; | 68 | done; |
| 64 | 69 | ||
| 65 | tags: | 70 | tags: |
| @@ -71,17 +76,48 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 77 | ||
| 73 | depend: | 78 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 79 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 75 | 80 | ||
| 76 | dclean: | 81 | dclean: |
| 77 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 78 | mv -f Makefile.new $(MAKEFILE) | 83 | mv -f Makefile.new $(MAKEFILE) |
| 79 | 84 | ||
| 80 | clean: | 85 | clean: |
| 81 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 82 | |||
| 83 | errors: | ||
| 84 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 85 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 86 | 87 | ||
| 87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 88 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 89 | |||
| 90 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 91 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 92 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
| 93 | o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 94 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 95 | o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 96 | o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | o_names.o: o_names.c | ||
| 98 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 99 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 100 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 101 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 102 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 103 | obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 104 | obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 105 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 106 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | ||
| 107 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 108 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 109 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 111 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 112 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 113 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | ||
| 115 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 116 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 117 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 118 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 119 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 120 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 121 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 123 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | ||
diff --git a/src/lib/libssl/src/crypto/pem/Makefile.ssl b/src/lib/libssl/src/crypto/pem/Makefile.ssl index fc04a88fd9..a051b6fecc 100644 --- a/src/lib/libssl/src/crypto/pem/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pem/Makefile.ssl | |||
| @@ -5,32 +5,33 @@ | |||
| 5 | DIR= pem | 5 | DIR= pem |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=pem | ||
| 19 | ERRC=pem_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | CTX_SIZE= ctx_size | ||
| 25 | |||
| 26 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 27 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c $(ERRC).c | 26 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ |
| 27 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | ||
| 28 | 28 | ||
| 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o $(ERRC).o | 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ |
| 30 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | ||
| 30 | 31 | ||
| 31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
| 32 | 33 | ||
| 33 | EXHEADER= pem.h | 34 | EXHEADER= pem.h pem2.h |
| 34 | HEADER= $(EXHEADER) | 35 | HEADER= $(EXHEADER) |
| 35 | 36 | ||
| 36 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -38,36 +39,27 @@ ALL= $(GENERAL) $(SRC) $(HEADER) | |||
| 38 | top: | 39 | top: |
| 39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
| 40 | 41 | ||
| 41 | all: pem.h lib | 42 | all: lib |
| 42 | |||
| 43 | pem.h: $(CTX_SIZE) | ||
| 44 | ./$(CTX_SIZE) <pem.org >pem.new | ||
| 45 | if [ -f pem.h ]; then mv -f pem.h pem.old; fi | ||
| 46 | mv -f pem.new pem.h | ||
| 47 | |||
| 48 | $(CTX_SIZE): $(CTX_SIZE).o | ||
| 49 | $(CC) $(CFLAGS) -o $(CTX_SIZE) $(CTX_SIZE).o | ||
| 50 | 43 | ||
| 51 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 52 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 53 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 54 | @touch lib | 47 | @touch lib |
| 55 | 48 | ||
| 56 | files: | 49 | files: |
| 57 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 58 | 51 | ||
| 59 | links: | 52 | links: $(EXHEADER) |
| 60 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 61 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 62 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 63 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 64 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 65 | 57 | ||
| 66 | install: | 58 | install: |
| 67 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
| 68 | do \ | 60 | do \ |
| 69 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 70 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 71 | done; | 63 | done; |
| 72 | 64 | ||
| 73 | tags: | 65 | tags: |
| @@ -79,18 +71,180 @@ lint: | |||
| 79 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 80 | 72 | ||
| 81 | depend: | 73 | depend: |
| 82 | $(MAKEDEPEND) $(INCLUDES) $(CTX_SIZE).c $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 83 | 75 | ||
| 84 | dclean: | 76 | dclean: |
| 85 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 86 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
| 87 | 79 | ||
| 88 | clean: | 80 | clean: |
| 89 | /bin/rm -f $(CTX_SIZE) *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 90 | |||
| 91 | errors: | ||
| 92 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # SPECIAL CASE .org | ||
| 93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 95 | 82 | ||
| 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | |||
| 85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | ||
| 99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 112 | pem_err.o: pem_err.c | ||
| 113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 120 | pem_info.o: ../../include/openssl/opensslconf.h | ||
| 121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 127 | pem_info.o: ../cryptlib.h pem_info.c | ||
| 128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | ||
| 145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 159 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
| 160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
| 170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | ||
| 175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 182 | pem_pkey.o: ../../include/openssl/opensslconf.h | ||
| 183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | ||
| 191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 198 | pem_seal.o: ../../include/openssl/opensslconf.h | ||
| 199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | ||
| 206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 213 | pem_sign.o: ../../include/openssl/opensslconf.h | ||
| 214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | ||
| 221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 228 | pem_x509.o: ../../include/openssl/opensslconf.h | ||
| 229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 235 | pem_x509.o: ../cryptlib.h pem_x509.c | ||
| 236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 243 | pem_xaux.o: ../../include/openssl/opensslconf.h | ||
| 244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||
diff --git a/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl b/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl index ebffab657c..cb815db72f 100644 --- a/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl | |||
| @@ -1,17 +1,18 @@ | |||
| 1 | # | 1 | # |
| 2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs12/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= pkcs12 | 5 | DIR= pkcs12 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,12 +23,12 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= p12_add.c p12_attr.c p12_bags.c p12_crpt.c p12_crt.c p12_decr.c \ | 26 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ |
| 26 | p12_init.c p12_key.c p12_kiss.c p12_lib.c p12_mac.c p12_mutl.c\ | 27 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ |
| 27 | p12_sbag.c p12_utl.c pk12err.c | 28 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c |
| 28 | LIBOBJ= p12_add.o p12_attr.o p12_bags.o p12_crpt.o p12_crt.o p12_decr.o \ | 29 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ |
| 29 | p12_init.o p12_key.o p12_kiss.o p12_lib.o p12_mac.o p12_mutl.o\ | 30 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ |
| 30 | p12_sbag.o p12_utl.o pk12err.o | 31 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o |
| 31 | 32 | ||
| 32 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
| 33 | 34 | ||
| @@ -45,7 +46,7 @@ all: lib | |||
| 45 | 46 | ||
| 46 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
| 47 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
| 48 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
| 49 | @touch lib | 50 | @touch lib |
| 50 | 51 | ||
| 51 | files: | 52 | files: |
| @@ -84,263 +85,213 @@ clean: | |||
| 84 | 85 | ||
| 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 86 | 87 | ||
| 87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 88 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h |
| 88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 89 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 90 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 92 | p12_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 92 | p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 93 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 94 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 95 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 95 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 96 | p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 96 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 97 | p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 97 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 98 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 99 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 100 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 98 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 99 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 103 | p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 100 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 104 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 101 | p12_add.o: ../cryptlib.h p12_add.c |
| 105 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 102 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 106 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 103 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 107 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 104 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 105 | p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 106 | p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 107 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 108 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 109 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 110 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 111 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 112 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 113 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 114 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 115 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
| 116 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 118 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 119 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | p12_attr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 120 | p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 110 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 121 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 111 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 122 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 112 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 123 | p12_attr.o: ../../include/openssl/opensslconf.h |
| 113 | p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 124 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 114 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 125 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 115 | p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 126 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 116 | p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 127 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 117 | p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 128 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 118 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c |
| 119 | p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 130 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h |
| 120 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 131 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 121 | p12_bags.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 132 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 122 | p12_bags.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 123 | p12_bags.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 124 | p12_bags.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 125 | p12_bags.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 126 | p12_bags.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 127 | p12_bags.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 128 | p12_bags.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 129 | p12_bags.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 130 | p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 131 | p12_bags.o: ../../include/openssl/opensslconf.h | ||
| 132 | p12_bags.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | ||
| 133 | p12_bags.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 134 | p12_bags.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 135 | p12_bags.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 136 | p12_bags.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 137 | p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 138 | p12_bags.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | ||
| 139 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 140 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 141 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 142 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 143 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 133 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 144 | p12_crpt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 134 | p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 145 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 135 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 146 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 136 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 147 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 137 | p12_crpt.o: ../../include/openssl/opensslconf.h |
| 148 | p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 138 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 149 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 139 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 150 | p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 140 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 151 | p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 141 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 152 | p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 142 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 153 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 143 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c |
| 154 | p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 144 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h |
| 155 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 145 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 156 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 146 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 157 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 158 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 159 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 160 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 147 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 161 | p12_crt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 148 | p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 162 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 149 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 163 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 150 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 164 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 151 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 165 | p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 152 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 166 | p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 153 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 167 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 168 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 169 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 154 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 155 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 172 | p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 156 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 173 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 157 | p12_crt.o: ../cryptlib.h p12_crt.c |
| 174 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 158 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h |
| 175 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 159 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 176 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 160 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 177 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 161 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 178 | p12_decr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 162 | p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 179 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 163 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 180 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 164 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 181 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 165 | p12_decr.o: ../../include/openssl/opensslconf.h |
| 182 | p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 166 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 183 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 167 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 184 | p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 168 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 185 | p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 169 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 186 | p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 170 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 187 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 171 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c |
| 188 | p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 172 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h |
| 189 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 173 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 190 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 174 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 191 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 192 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 193 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 194 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 175 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 195 | p12_init.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 176 | p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 196 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 177 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 197 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 178 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 179 | p12_init.o: ../../include/openssl/opensslconf.h |
| 199 | p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 180 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 200 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 181 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 201 | p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 182 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 202 | p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 183 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 203 | p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 184 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 204 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 185 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c |
| 205 | p12_init.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 186 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h |
| 206 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 187 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 207 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 188 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 208 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 209 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 210 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 211 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 189 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 212 | p12_key.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 190 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 213 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 191 | p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 214 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 192 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 215 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 193 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 216 | p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 194 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 217 | p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 195 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 218 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 219 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 220 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 221 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 196 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 222 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 197 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 223 | p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 198 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 224 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 199 | p12_key.o: ../cryptlib.h p12_key.c |
| 225 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 200 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h |
| 226 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 201 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 227 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 202 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 228 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 203 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 229 | p12_kiss.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 204 | p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 230 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 205 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 231 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 206 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 232 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 207 | p12_kiss.o: ../../include/openssl/opensslconf.h |
| 233 | p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 208 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 234 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 209 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 235 | p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 210 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 236 | p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 211 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 237 | p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 212 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 238 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 213 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c |
| 239 | p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 214 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 240 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 215 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 241 | p12_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 216 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 242 | p12_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 243 | p12_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 244 | p12_lib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 245 | p12_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 246 | p12_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 247 | p12_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 248 | p12_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 249 | p12_lib.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 250 | p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 251 | p12_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 252 | p12_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 253 | p12_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 254 | p12_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 255 | p12_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 256 | p12_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 257 | p12_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 258 | p12_lib.o: ../cryptlib.h | ||
| 259 | p12_mac.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | ||
| 260 | p12_mac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 261 | p12_mac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 262 | p12_mac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 263 | p12_mac.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 264 | p12_mac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 265 | p12_mac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 266 | p12_mac.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 267 | p12_mac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 268 | p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 269 | p12_mac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 270 | p12_mac.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
| 271 | p12_mac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 272 | p12_mac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 273 | p12_mac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 274 | p12_mac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 275 | p12_mac.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 276 | p12_mac.o: ../cryptlib.h | ||
| 277 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 278 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 279 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 280 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 281 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 217 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 282 | p12_mutl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 218 | p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 283 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 219 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
| 284 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | 220 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 285 | p12_mutl.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 221 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 286 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 222 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 287 | p12_mutl.o: ../../include/openssl/opensslconf.h | 223 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 288 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 224 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 289 | p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 225 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 290 | p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 226 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 291 | p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 292 | p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 293 | p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 294 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 227 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 295 | p12_mutl.o: ../cryptlib.h | 228 | p12_mutl.o: ../cryptlib.h p12_mutl.c |
| 296 | p12_sbag.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 229 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 297 | p12_sbag.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 230 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 298 | p12_sbag.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 231 | p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 299 | p12_sbag.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 232 | p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 300 | p12_sbag.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 233 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 301 | p12_sbag.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 234 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 302 | p12_sbag.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 235 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 303 | p12_sbag.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 236 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 304 | p12_sbag.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 237 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 305 | p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 238 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 306 | p12_sbag.o: ../../include/openssl/opensslconf.h | 239 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 307 | p12_sbag.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 240 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 308 | p12_sbag.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 241 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 309 | p12_sbag.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 242 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c |
| 310 | p12_sbag.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 243 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h |
| 311 | p12_sbag.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 244 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 312 | p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 245 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 313 | p12_sbag.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 246 | p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 314 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 247 | p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 315 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 248 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 316 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 249 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 317 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 250 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 251 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 252 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 253 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 254 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 255 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 256 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
| 257 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 258 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 259 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 260 | p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 261 | p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 262 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 263 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 264 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 265 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
| 266 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 267 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 268 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 269 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 270 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
| 271 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 272 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 273 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 318 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 274 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 319 | p12_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 275 | p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 320 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 321 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 277 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 322 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 278 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 323 | p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 324 | p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 280 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 325 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 326 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 327 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 328 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 281 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 329 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 282 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 330 | p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 283 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 284 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
| 331 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 285 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 332 | pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 286 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 333 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 287 | pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 334 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
| 335 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 288 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 336 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 337 | pk12err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 290 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 338 | pk12err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 339 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 291 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 340 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 292 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 341 | pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 293 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 342 | pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 294 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 343 | pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 295 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 344 | pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 296 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 345 | pk12err.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 297 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c |
| 346 | pk12err.o: ../../include/openssl/x509_vfy.h | ||
diff --git a/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl b/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl index a88359b320..f606abe440 100644 --- a/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl | |||
| @@ -1,29 +1,35 @@ | |||
| 1 | # | 1 | # |
| 2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs7/Makefile |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | DIR= pkcs7 | 5 | DIR= pkcs7 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 19 | PEX_LIBS= | ||
| 20 | EX_LIBS= | ||
| 21 | |||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 23 | ||
| 18 | ERR=pkcs7 | ||
| 19 | ERRC=pkcs7err | ||
| 20 | GENERAL=Makefile README | 24 | GENERAL=Makefile README |
| 21 | TEST= | 25 | TEST= |
| 22 | APPS= | 26 | APPS= |
| 23 | 27 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= pk7_lib.c pkcs7err.c pk7_doit.c | 29 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ |
| 26 | LIBOBJ= pk7_lib.o pkcs7err.o pk7_doit.o | 30 | pk7_mime.c |
| 31 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ | ||
| 32 | pk7_mime.o | ||
| 27 | 33 | ||
| 28 | SRC= $(LIBSRC) | 34 | SRC= $(LIBSRC) |
| 29 | 35 | ||
| @@ -39,26 +45,39 @@ test: | |||
| 39 | 45 | ||
| 40 | all: lib | 46 | all: lib |
| 41 | 47 | ||
| 48 | testapps: enc dec sign verify | ||
| 49 | |||
| 50 | enc: enc.o lib | ||
| 51 | $(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 52 | |||
| 53 | dec: dec.o lib | ||
| 54 | $(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 55 | |||
| 56 | sign: sign.o lib | ||
| 57 | $(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
| 58 | |||
| 59 | verify: verify.o example.o lib | ||
| 60 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) | ||
| 61 | |||
| 42 | lib: $(LIBOBJ) | 62 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 63 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | sh $(TOP)/util/ranlib.sh $(LIB) | 64 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 65 | @touch lib |
| 46 | 66 | ||
| 47 | files: | 67 | files: |
| 48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 68 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 49 | 69 | ||
| 50 | links: | 70 | links: |
| 51 | /bin/rm -f Makefile | 71 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 56 | 75 | ||
| 57 | install: | 76 | install: |
| 58 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
| 59 | do \ | 78 | do \ |
| 60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 62 | done; | 81 | done; |
| 63 | 82 | ||
| 64 | tags: | 83 | tags: |
| @@ -70,17 +89,107 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 90 | ||
| 72 | depend: | 91 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 93 | ||
| 75 | dclean: | 94 | dclean: |
| 76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 77 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
| 78 | 97 | ||
| 79 | clean: | 98 | clean: |
| 80 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify |
| 81 | |||
| 82 | errors: | ||
| 83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 85 | 100 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | |||
| 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 104 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 105 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 106 | pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 107 | pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 108 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 109 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 110 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 111 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 114 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 115 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 116 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | ||
| 117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 118 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 120 | pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 121 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 122 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 123 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 124 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 125 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 126 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 127 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 128 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 130 | pk7_attr.o: pk7_attr.c | ||
| 131 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 132 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 133 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 134 | pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 135 | pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 141 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 142 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 143 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 144 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 145 | pk7_doit.o: ../cryptlib.h pk7_doit.c | ||
| 146 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 147 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 148 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 149 | pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 150 | pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 151 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 152 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 153 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 154 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 155 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 156 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 157 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 158 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | ||
| 159 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 160 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 161 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 162 | pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 163 | pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 164 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 165 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 166 | pk7_mime.o: ../../include/openssl/opensslconf.h | ||
| 167 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 168 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 169 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 170 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 171 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 172 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | ||
| 173 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 174 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 175 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 176 | pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 177 | pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 178 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 179 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 180 | pk7_smime.o: ../../include/openssl/objects.h | ||
| 181 | pk7_smime.o: ../../include/openssl/opensslconf.h | ||
| 182 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 183 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 184 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 185 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 186 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 187 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | ||
| 188 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 189 | pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 190 | pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 191 | pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 192 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 193 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
| 194 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 195 | pkcs7err.o: pkcs7err.c | ||
diff --git a/src/lib/libssl/src/crypto/rand/Makefile.ssl b/src/lib/libssl/src/crypto/rand/Makefile.ssl index d04f0a9b43..ccf65f0d78 100644 --- a/src/lib/libssl/src/crypto/rand/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rand/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -20,8 +23,10 @@ TEST= randtest.c | |||
| 20 | APPS= | 23 | APPS= |
| 21 | 24 | ||
| 22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 23 | LIBSRC=md_rand.c randfile.c | 26 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ |
| 24 | LIBOBJ=md_rand.o randfile.o | 27 | rand_win.c rand_unix.c rand_os2.c |
| 28 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ | ||
| 29 | rand_win.o rand_unix.o rand_os2.o | ||
| 25 | 30 | ||
| 26 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
| 27 | 32 | ||
| @@ -37,24 +42,23 @@ all: lib | |||
| 37 | 42 | ||
| 38 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 46 | @touch lib |
| 42 | 47 | ||
| 43 | files: | 48 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 50 | ||
| 46 | links: | 51 | links: |
| 47 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 56 | ||
| 53 | install: | 57 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 59 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 62 | done; |
| 59 | 63 | ||
| 60 | tags: | 64 | tags: |
| @@ -66,15 +70,88 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 71 | ||
| 68 | depend: | 72 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 74 | ||
| 71 | dclean: | 75 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 78 | ||
| 75 | clean: | 79 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 81 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | |||
| 84 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 85 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 86 | md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 87 | md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 88 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 89 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 90 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 91 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 92 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 93 | md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h | ||
| 94 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 95 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 96 | rand_egd.o: rand_egd.c | ||
| 97 | rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
| 98 | rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 101 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 102 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | rand_err.o: rand_err.c | ||
| 104 | rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 109 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 110 | rand_lib.o: ../../include/openssl/opensslconf.h | ||
| 111 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 112 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 113 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 114 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 115 | rand_lib.o: ../cryptlib.h rand_lib.c | ||
| 116 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 117 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 118 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 119 | rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 120 | rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 121 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 122 | rand_os2.o: ../../include/openssl/opensslconf.h | ||
| 123 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 124 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 125 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 126 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 127 | rand_os2.o: rand_os2.c | ||
| 128 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 129 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 130 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 131 | rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 132 | rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 133 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 134 | rand_unix.o: ../../include/openssl/opensslconf.h | ||
| 135 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 136 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 137 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 138 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 139 | rand_unix.o: rand_unix.c | ||
| 140 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 141 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 142 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 143 | rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 144 | rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 145 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 146 | rand_win.o: ../../include/openssl/opensslconf.h | ||
| 147 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 148 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 149 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 150 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
| 151 | rand_win.o: rand_win.c | ||
| 152 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h | ||
| 153 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 154 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 155 | randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 156 | randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 157 | randfile.o: randfile.c | ||
diff --git a/src/lib/libssl/src/crypto/rc2/Makefile.ssl b/src/lib/libssl/src/crypto/rc2/Makefile.ssl index c5138f13e2..c233b0fa0c 100644 --- a/src/lib/libssl/src/crypto/rc2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc2/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,24 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 83 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | ||
| 84 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 85 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h | ||
| 86 | rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 87 | rc2_skey.o: rc2_locl.h rc2_skey.c | ||
| 88 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 89 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | ||
| 90 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
| 91 | rc2ofb64.o: rc2_locl.h rc2ofb64.c | ||
diff --git a/src/lib/libssl/src/crypto/rc4/Makefile.ssl b/src/lib/libssl/src/crypto/rc4/Makefile.ssl index 19c1e980f3..5214e512fc 100644 --- a/src/lib/libssl/src/crypto/rc4/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc4/Makefile.ssl | |||
| @@ -5,11 +5,15 @@ | |||
| 5 | DIR= rc4 | 5 | DIR= rc4 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | ||
| 8 | INCLUDES= | 9 | INCLUDES= |
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| @@ -44,12 +48,12 @@ all: lib | |||
| 44 | 48 | ||
| 45 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
| 46 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
| 47 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
| 48 | @touch lib | 52 | @touch lib |
| 49 | 53 | ||
| 50 | # elf | 54 | # elf |
| 51 | asm/rx86-elf.o: asm/rx86unix.cpp | 55 | asm/rx86-elf.o: asm/rx86unix.cpp |
| 52 | $(CPP) -DELF asm/rx86unix.cpp | as -o asm/rx86-elf.o | 56 | $(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o |
| 53 | 57 | ||
| 54 | # solaris | 58 | # solaris |
| 55 | asm/rx86-sol.o: asm/rx86unix.cpp | 59 | asm/rx86-sol.o: asm/rx86unix.cpp |
| @@ -63,26 +67,25 @@ asm/rx86-out.o: asm/rx86unix.cpp | |||
| 63 | 67 | ||
| 64 | # bsdi | 68 | # bsdi |
| 65 | asm/rx86bsdi.o: asm/rx86unix.cpp | 69 | asm/rx86bsdi.o: asm/rx86unix.cpp |
| 66 | $(CPP) -DBSDI asm/rx86unix.cpp | as -o asm/rx86bsdi.o | 70 | $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o |
| 67 | 71 | ||
| 68 | asm/rx86unix.cpp: | 72 | asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl |
| 69 | (cd asm; perl rc4-586.pl cpp >rx86unix.cpp) | 73 | (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp) |
| 70 | 74 | ||
| 71 | files: | 75 | files: |
| 72 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 73 | 77 | ||
| 74 | links: | 78 | links: |
| 75 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 76 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 77 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 78 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 79 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 80 | 83 | ||
| 81 | install: | 84 | install: |
| 82 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
| 83 | do \ | 86 | do \ |
| 84 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 85 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 86 | done; | 89 | done; |
| 87 | 90 | ||
| 88 | tags: | 91 | tags: |
| @@ -94,15 +97,19 @@ lint: | |||
| 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 95 | 98 | ||
| 96 | depend: | 99 | depend: |
| 97 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 98 | 101 | ||
| 99 | dclean: | 102 | dclean: |
| 100 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 101 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
| 102 | 105 | ||
| 103 | clean: | 106 | clean: |
| 104 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 107 | rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
| 105 | |||
| 106 | errors: | ||
| 107 | 108 | ||
| 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 110 | |||
| 111 | rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h | ||
| 112 | rc4_enc.o: rc4_enc.c rc4_locl.h | ||
| 113 | rc4_skey.o: ../../include/openssl/opensslconf.h | ||
| 114 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | ||
| 115 | rc4_skey.o: rc4_locl.h rc4_skey.c | ||
diff --git a/src/lib/libssl/src/crypto/rc5/Makefile.ssl b/src/lib/libssl/src/crypto/rc5/Makefile.ssl index 5e98ee2348..10deca5ace 100644 --- a/src/lib/libssl/src/crypto/rc5/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc5/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -42,12 +45,12 @@ all: lib | |||
| 42 | 45 | ||
| 43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
| 44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
| 45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
| 46 | @touch lib | 49 | @touch lib |
| 47 | 50 | ||
| 48 | # elf | 51 | # elf |
| 49 | asm/r586-elf.o: asm/r586unix.cpp | 52 | asm/r586-elf.o: asm/r586unix.cpp |
| 50 | $(CPP) -DELF asm/r586unix.cpp | as -o asm/r586-elf.o | 53 | $(CPP) -DELF -x c asm/r586unix.cpp | as -o asm/r586-elf.o |
| 51 | 54 | ||
| 52 | # solaris | 55 | # solaris |
| 53 | asm/r586-sol.o: asm/r586unix.cpp | 56 | asm/r586-sol.o: asm/r586unix.cpp |
| @@ -61,27 +64,25 @@ asm/r586-out.o: asm/r586unix.cpp | |||
| 61 | 64 | ||
| 62 | # bsdi | 65 | # bsdi |
| 63 | asm/r586bsdi.o: asm/r586unix.cpp | 66 | asm/r586bsdi.o: asm/r586unix.cpp |
| 64 | $(CPP) -DBSDI asm/r586unix.cpp | as -o asm/r586bsdi.o | 67 | $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o |
| 65 | 68 | ||
| 66 | asm/r586unix.cpp: | 69 | asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
| 67 | (cd asm; perl rc5-586.pl cpp >r586unix.cpp) | 70 | (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp) |
| 68 | 71 | ||
| 69 | files: | 72 | files: |
| 70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 71 | 74 | ||
| 72 | links: | 75 | links: |
| 73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 75 | $(TOP)/util/point.sh ../../doc/rc5.doc rc5.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 77 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
| 78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 79 | 80 | ||
| 80 | install: | 81 | install: |
| 81 | @for i in $(EXHEADER) ; \ | 82 | @for i in $(EXHEADER) ; \ |
| 82 | do \ | 83 | do \ |
| 83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 84 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 85 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 85 | done; | 86 | done; |
| 86 | 87 | ||
| 87 | tags: | 88 | tags: |
| @@ -93,15 +94,20 @@ lint: | |||
| 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 94 | 95 | ||
| 95 | depend: | 96 | depend: |
| 96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 97 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 97 | 98 | ||
| 98 | dclean: | 99 | dclean: |
| 99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 100 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 100 | mv -f Makefile.new $(MAKEFILE) | 101 | mv -f Makefile.new $(MAKEFILE) |
| 101 | 102 | ||
| 102 | clean: | 103 | clean: |
| 103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 104 | rm -f asm/r586unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 104 | |||
| 105 | errors: | ||
| 106 | 105 | ||
| 107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 107 | |||
| 108 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | ||
| 109 | rc5_ecb.o: rc5_ecb.c 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 rc5_skey.c | ||
| 112 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c | ||
| 113 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c | ||
diff --git a/src/lib/libssl/src/crypto/rc5/asm/rc5-586.pl b/src/lib/libssl/src/crypto/rc5/asm/rc5-586.pl index 172bd9ee1b..edff1d1e64 100644 --- a/src/lib/libssl/src/crypto/rc5/asm/rc5-586.pl +++ b/src/lib/libssl/src/crypto/rc5/asm/rc5-586.pl | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #!/usr/bin/perl | 1 | #!/usr/local/bin/perl |
| 2 | 2 | ||
| 3 | push(@INC,"perlasm","../../perlasm"); | 3 | push(@INC,"perlasm","../../perlasm"); |
| 4 | require "x86asm.pl"; | 4 | require "x86asm.pl"; |
diff --git a/src/lib/libssl/src/crypto/ripemd/Makefile.ssl b/src/lib/libssl/src/crypto/ripemd/Makefile.ssl index 67d47ceb2c..eb819e64f5 100644 --- a/src/lib/libssl/src/crypto/ripemd/Makefile.ssl +++ b/src/lib/libssl/src/crypto/ripemd/Makefile.ssl | |||
| @@ -8,9 +8,12 @@ CC= cc | |||
| 8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
| 9 | INCLUDES= | 9 | INCLUDES= |
| 10 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | AR= ar r | 18 | AR= ar r |
| 16 | 19 | ||
| @@ -20,7 +23,7 @@ CFLAGS= $(INCLUDES) $(CFLAG) | |||
| 20 | 23 | ||
| 21 | GENERAL=Makefile | 24 | GENERAL=Makefile |
| 22 | TEST=rmdtest.c | 25 | TEST=rmdtest.c |
| 23 | APPS=rmd160.c | 26 | APPS= |
| 24 | 27 | ||
| 25 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
| 26 | LIBSRC=rmd_dgst.c rmd_one.c | 29 | LIBSRC=rmd_dgst.c rmd_one.c |
| @@ -40,12 +43,12 @@ all: lib | |||
| 40 | 43 | ||
| 41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 44 | @touch lib | 47 | @touch lib |
| 45 | 48 | ||
| 46 | # elf | 49 | # elf |
| 47 | asm/rm86-elf.o: asm/rm86unix.cpp | 50 | asm/rm86-elf.o: asm/rm86unix.cpp |
| 48 | $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o | 51 | $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o |
| 49 | 52 | ||
| 50 | # solaris | 53 | # solaris |
| 51 | asm/rm86-sol.o: asm/rm86unix.cpp | 54 | asm/rm86-sol.o: asm/rm86unix.cpp |
| @@ -59,26 +62,25 @@ asm/rm86-out.o: asm/rm86unix.cpp | |||
| 59 | 62 | ||
| 60 | # bsdi | 63 | # bsdi |
| 61 | asm/rm86bsdi.o: asm/rm86unix.cpp | 64 | asm/rm86bsdi.o: asm/rm86unix.cpp |
| 62 | $(CPP) -DBSDI asm/rm86unix.cpp | as -o asm/rm86bsdi.o | 65 | $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o |
| 63 | 66 | ||
| 64 | asm/rm86unix.cpp: | 67 | asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl |
| 65 | (cd asm; perl rmd-586.pl cpp >rm86unix.cpp) | 68 | (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp) |
| 66 | 69 | ||
| 67 | files: | 70 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | 72 | ||
| 70 | links: | 73 | links: |
| 71 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 76 | 78 | ||
| 77 | install: | 79 | install: |
| 78 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
| 79 | do \ | 81 | do \ |
| 80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 82 | done; | 84 | done; |
| 83 | 85 | ||
| 84 | tags: | 86 | tags: |
| @@ -90,15 +92,19 @@ lint: | |||
| 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 91 | 93 | ||
| 92 | depend: | 94 | depend: |
| 93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 94 | 96 | ||
| 95 | dclean: | 97 | dclean: |
| 96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 97 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
| 98 | 100 | ||
| 99 | clean: | 101 | clean: |
| 100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 102 | rm -f asm/rm86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 101 | |||
| 102 | errors: | ||
| 103 | 103 | ||
| 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 105 | |||
| 106 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 107 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | ||
| 108 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h | ||
| 109 | rmd_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 110 | rmd_one.o: ../../include/openssl/ripemd.h rmd_one.c | ||
diff --git a/src/lib/libssl/src/crypto/rsa/Makefile.ssl b/src/lib/libssl/src/crypto/rsa/Makefile.ssl index d52f2e609e..f1e93c2fa3 100644 --- a/src/lib/libssl/src/crypto/rsa/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rsa/Makefile.ssl | |||
| @@ -5,27 +5,30 @@ | |||
| 5 | DIR= rsa | 5 | DIR= rsa |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=rsa | ||
| 19 | ERRC=rsa_err | ||
| 20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
| 21 | TEST= | 22 | TEST=rsa_test.c |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c $(ERRC).c \ | 26 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ |
| 26 | rsa_pk1.c rsa_ssl.c rsa_none.c | 27 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ |
| 27 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o $(ERRC).o \ | 28 | rsa_asn1.c |
| 28 | rsa_pk1.o rsa_ssl.o rsa_none.o | 29 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ |
| 30 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | ||
| 31 | rsa_asn1.o | ||
| 29 | 32 | ||
| 30 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
| 31 | 34 | ||
| @@ -41,24 +44,23 @@ all: lib | |||
| 41 | 44 | ||
| 42 | lib: $(LIBOBJ) | 45 | lib: $(LIBOBJ) |
| 43 | $(AR) $(LIB) $(LIBOBJ) | 46 | $(AR) $(LIB) $(LIBOBJ) |
| 44 | sh $(TOP)/util/ranlib.sh $(LIB) | 47 | $(RANLIB) $(LIB) || echo Never mind. |
| 45 | @touch lib | 48 | @touch lib |
| 46 | 49 | ||
| 47 | files: | 50 | files: |
| 48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 49 | 52 | ||
| 50 | links: | 53 | links: |
| 51 | /bin/rm -f Makefile | 54 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 56 | 58 | ||
| 57 | install: | 59 | install: |
| 58 | @for i in $(EXHEADER) ; \ | 60 | @for i in $(EXHEADER) ; \ |
| 59 | do \ | 61 | do \ |
| 60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 62 | done; | 64 | done; |
| 63 | 65 | ||
| 64 | tags: | 66 | tags: |
| @@ -70,17 +72,148 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 73 | ||
| 72 | depend: | 74 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 76 | ||
| 75 | dclean: | 77 | dclean: |
| 76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 77 | mv -f Makefile.new $(MAKEFILE) | 79 | mv -f Makefile.new $(MAKEFILE) |
| 78 | 80 | ||
| 79 | clean: | 81 | clean: |
| 80 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 82 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 81 | |||
| 82 | errors: | ||
| 83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 85 | 83 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 85 | |||
| 86 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 87 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 88 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 89 | rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 90 | rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 91 | rsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 92 | rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 93 | rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 94 | rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 95 | rsa_asn1.o: ../cryptlib.h rsa_asn1.c | ||
| 96 | rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 97 | rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 98 | rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 101 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 102 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | rsa_chk.o: rsa_chk.c | ||
| 104 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | rsa_eay.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 109 | rsa_eay.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 110 | rsa_eay.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 111 | rsa_eay.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 112 | rsa_eay.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 113 | rsa_eay.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 114 | rsa_eay.o: ../../include/openssl/ui.h ../cryptlib.h rsa_eay.c | ||
| 115 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 116 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 117 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 118 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 119 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 120 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 121 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 122 | rsa_err.o: rsa_err.c | ||
| 123 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 124 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 125 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 126 | rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 127 | rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 128 | rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 129 | rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 130 | rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 131 | rsa_gen.o: ../cryptlib.h rsa_gen.c | ||
| 132 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 133 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 134 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 135 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 136 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 137 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 138 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 139 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 140 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 141 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 142 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | ||
| 143 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 144 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 145 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 146 | rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 147 | rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 148 | rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 149 | rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 150 | rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 151 | rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c | ||
| 152 | rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 153 | rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 154 | rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 155 | rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 156 | rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 157 | rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 160 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | ||
| 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/opensslconf.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | ||
| 173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 175 | rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 176 | rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 177 | rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 178 | rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | ||
| 182 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 183 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 184 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 185 | rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 186 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 188 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 189 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
| 190 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 191 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 192 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 193 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 194 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 195 | rsa_saos.o: ../cryptlib.h rsa_saos.c | ||
| 196 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 197 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 198 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 199 | rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 200 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 201 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 202 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 203 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 204 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 205 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 206 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 207 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 208 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 209 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 210 | rsa_sign.o: ../cryptlib.h rsa_sign.c | ||
| 211 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 212 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 213 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 214 | rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 215 | rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 216 | rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 217 | rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 218 | rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 219 | rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c | ||
diff --git a/src/lib/libssl/src/crypto/sha/Makefile.ssl b/src/lib/libssl/src/crypto/sha/Makefile.ssl index eeb545d140..51ba7811c4 100644 --- a/src/lib/libssl/src/crypto/sha/Makefile.ssl +++ b/src/lib/libssl/src/crypto/sha/Makefile.ssl | |||
| @@ -5,11 +5,15 @@ | |||
| 5 | DIR= sha | 5 | DIR= sha |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | CPP= $(CC) -E | ||
| 8 | INCLUDES= | 9 | INCLUDES= |
| 9 | CFLAG=-g | 10 | CFLAG=-g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 18 | AR= ar r |
| 15 | 19 | ||
| @@ -39,12 +43,12 @@ all: lib | |||
| 39 | 43 | ||
| 40 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
| 41 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
| 42 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
| 43 | @touch lib | 47 | @touch lib |
| 44 | 48 | ||
| 45 | # elf | 49 | # elf |
| 46 | asm/sx86-elf.o: asm/sx86unix.cpp | 50 | asm/sx86-elf.o: asm/sx86unix.cpp |
| 47 | $(CPP) -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o | 51 | $(CPP) -DELF -x c asm/sx86unix.cpp | as -o asm/sx86-elf.o |
| 48 | 52 | ||
| 49 | # solaris | 53 | # solaris |
| 50 | asm/sx86-sol.o: asm/sx86unix.cpp | 54 | asm/sx86-sol.o: asm/sx86unix.cpp |
| @@ -58,26 +62,25 @@ asm/sx86-out.o: asm/sx86unix.cpp | |||
| 58 | 62 | ||
| 59 | # bsdi | 63 | # bsdi |
| 60 | asm/sx86bsdi.o: asm/sx86unix.cpp | 64 | asm/sx86bsdi.o: asm/sx86unix.cpp |
| 61 | $(CPP) -DBSDI asm/sx86unix.cpp | as -o asm/sx86bsdi.o | 65 | $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o |
| 62 | 66 | ||
| 63 | asm/sx86unix.cpp: | 67 | asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl |
| 64 | (cd asm; perl sha1-586.pl cpp >sx86unix.cpp) | 68 | (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp) |
| 65 | 69 | ||
| 66 | files: | 70 | files: |
| 67 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 68 | 72 | ||
| 69 | links: | 73 | links: |
| 70 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 71 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 72 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 73 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 74 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 75 | 78 | ||
| 76 | install: | 79 | install: |
| 77 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
| 78 | do \ | 81 | do \ |
| 79 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 80 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 81 | done; | 84 | done; |
| 82 | 85 | ||
| 83 | tags: | 86 | tags: |
| @@ -89,15 +92,24 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 93 | ||
| 91 | depend: | 94 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 93 | 96 | ||
| 94 | dclean: | 97 | dclean: |
| 95 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 96 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
| 97 | 100 | ||
| 98 | clean: | 101 | clean: |
| 99 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 102 | rm -f asm/sx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
| 100 | |||
| 101 | errors: | ||
| 102 | 103 | ||
| 103 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 105 | |||
| 106 | sha1_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 107 | sha1_one.o: ../../include/openssl/sha.h sha1_one.c | ||
| 108 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 109 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
| 110 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h | ||
| 111 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 112 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
| 113 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | ||
| 114 | sha_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
| 115 | sha_one.o: ../../include/openssl/sha.h sha_one.c | ||
diff --git a/src/lib/libssl/src/crypto/stack/Makefile.ssl b/src/lib/libssl/src/crypto/stack/Makefile.ssl index 0d232c08cf..16219af9a9 100644 --- a/src/lib/libssl/src/crypto/stack/Makefile.ssl +++ b/src/lib/libssl/src/crypto/stack/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -25,7 +28,7 @@ LIBOBJ=stack.o | |||
| 25 | 28 | ||
| 26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 27 | 30 | ||
| 28 | EXHEADER= stack.h | 31 | EXHEADER= stack.h safestack.h |
| 29 | HEADER= $(EXHEADER) | 32 | HEADER= $(EXHEADER) |
| 30 | 33 | ||
| 31 | ALL= $(GENERAL) $(SRC) $(HEADER) | 34 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,21 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | stack.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | stack.o: ../cryptlib.h stack.c | ||
diff --git a/src/lib/libssl/src/crypto/txt_db/Makefile.ssl b/src/lib/libssl/src/crypto/txt_db/Makefile.ssl index 76e511534f..f681065da3 100644 --- a/src/lib/libssl/src/crypto/txt_db/Makefile.ssl +++ b/src/lib/libssl/src/crypto/txt_db/Makefile.ssl | |||
| @@ -7,9 +7,12 @@ TOP= ../.. | |||
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= | 8 | INCLUDES= |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| @@ -37,24 +40,23 @@ all: lib | |||
| 37 | 40 | ||
| 38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 41 | @touch lib | 44 | @touch lib |
| 42 | 45 | ||
| 43 | files: | 46 | files: |
| 44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 45 | 48 | ||
| 46 | links: | 49 | links: |
| 47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 52 | 54 | ||
| 53 | install: | 55 | install: |
| 54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
| 55 | do \ | 57 | do \ |
| 56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 58 | done; | 60 | done; |
| 59 | 61 | ||
| 60 | tags: | 62 | tags: |
| @@ -66,15 +68,21 @@ lint: | |||
| 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 67 | 69 | ||
| 68 | depend: | 70 | depend: |
| 69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 70 | 72 | ||
| 71 | dclean: | 73 | dclean: |
| 72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
| 74 | 76 | ||
| 75 | clean: | 77 | clean: |
| 76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 77 | |||
| 78 | errors: | ||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | |||
| 82 | txt_db.o: ../../e_os.h ../../include/openssl/bio.h | ||
| 83 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 84 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 85 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 86 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
| 87 | txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 88 | txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c | ||
diff --git a/src/lib/libssl/src/crypto/x509/Makefile.ssl b/src/lib/libssl/src/crypto/x509/Makefile.ssl index 1c1ca2ffa0..3063f448c0 100644 --- a/src/lib/libssl/src/crypto/x509/Makefile.ssl +++ b/src/lib/libssl/src/crypto/x509/Makefile.ssl | |||
| @@ -5,37 +5,36 @@ | |||
| 5 | DIR= x509 | 5 | DIR= x509 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 15 | 18 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 20 | ||
| 18 | ERR=x509 | ||
| 19 | ERRC=x509_err | ||
| 20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
| 21 | TEST= | 22 | TEST= |
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | 26 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ |
| 26 | x509_obj.c x509_req.c x509_vfy.c \ | 27 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ |
| 27 | x509_set.c x509rset.c $(ERRC).c \ | 28 | x509_set.c x509cset.c x509rset.c x509_err.c \ |
| 28 | x509name.c x509_v3.c x509_ext.c x509pack.c \ | 29 | x509name.c x509_v3.c x509_ext.c x509_att.c \ |
| 29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | 30 | x509type.c x509_lu.c x_all.c x509_txt.c \ |
| 30 | by_file.c by_dir.c \ | 31 | x509_trs.c by_file.c by_dir.c |
| 31 | v3_net.c v3_x509.c | ||
| 32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | 32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ |
| 33 | x509_obj.o x509_req.o x509_vfy.o \ | 33 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ |
| 34 | x509_set.o x509rset.o $(ERRC).o \ | 34 | x509_set.o x509cset.o x509rset.o x509_err.o \ |
| 35 | x509name.o x509_v3.o x509_ext.o x509pack.o \ | 35 | x509name.o x509_v3.o x509_ext.o x509_att.o \ |
| 36 | x509type.o x509_lu.o x_all.o x509_txt.o \ | 36 | x509type.o x509_lu.o x_all.o x509_txt.o \ |
| 37 | by_file.o by_dir.o \ | 37 | x509_trs.o by_file.o by_dir.o |
| 38 | v3_net.o v3_x509.o | ||
| 39 | 38 | ||
| 40 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
| 41 | 40 | ||
| @@ -51,24 +50,23 @@ all: lib | |||
| 51 | 50 | ||
| 52 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
| 53 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
| 54 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
| 55 | @touch lib | 54 | @touch lib |
| 56 | 55 | ||
| 57 | files: | 56 | files: |
| 58 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 59 | 58 | ||
| 60 | links: | 59 | links: |
| 61 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 62 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 63 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 64 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| 65 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
| 66 | 64 | ||
| 67 | install: | 65 | install: |
| 68 | @for i in $(EXHEADER) ; \ | 66 | @for i in $(EXHEADER) ; \ |
| 69 | do \ | 67 | do \ |
| 70 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 71 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 72 | done; | 70 | done; |
| 73 | 71 | ||
| 74 | tags: | 72 | tags: |
| @@ -80,17 +78,333 @@ lint: | |||
| 80 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 81 | 79 | ||
| 82 | depend: | 80 | depend: |
| 83 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 84 | 82 | ||
| 85 | dclean: | 83 | dclean: |
| 86 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 87 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
| 88 | 86 | ||
| 89 | clean: | 87 | clean: |
| 90 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 91 | |||
| 92 | errors: | ||
| 93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 95 | 89 | ||
| 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | |||
| 92 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 93 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 94 | by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 95 | by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 96 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 97 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 98 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 99 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 100 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 101 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 102 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 104 | by_dir.o: ../cryptlib.h by_dir.c | ||
| 105 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 106 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 107 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 108 | by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 109 | by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 110 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 111 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 112 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 113 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
| 114 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
| 115 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 116 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 117 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 118 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
| 119 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 120 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 121 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 122 | x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 123 | x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 124 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 125 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 126 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 127 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 128 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 129 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 130 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 131 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 132 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
| 133 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 134 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 135 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 136 | x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 137 | x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 138 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 139 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 140 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 141 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 142 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 143 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 144 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 145 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 146 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
| 147 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 148 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 149 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 150 | x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 151 | x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 152 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 153 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 154 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 155 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 156 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 157 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 158 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 159 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
| 160 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 161 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 162 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 163 | x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 164 | x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 166 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 167 | x509_def.o: ../../include/openssl/opensslconf.h | ||
| 168 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 169 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 170 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 171 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 172 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 173 | x509_def.o: ../cryptlib.h x509_def.c | ||
| 174 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 175 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 176 | x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 177 | x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 178 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 179 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 180 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 181 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 182 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 183 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 184 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 185 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 186 | x509_err.o: x509_err.c | ||
| 187 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 188 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 189 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 190 | x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 191 | x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 192 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 193 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 194 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 195 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 196 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 197 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 198 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 199 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 200 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
| 201 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 202 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 203 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 204 | x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 205 | x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 206 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 207 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 208 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 209 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 210 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 211 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 212 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 213 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 214 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
| 215 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 216 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 217 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 218 | x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 219 | x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 220 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 221 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 222 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
| 223 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 224 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 225 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 226 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 227 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 228 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
| 229 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 230 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 231 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 232 | x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 233 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 234 | x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 235 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 236 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
| 237 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 238 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 239 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 240 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 241 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 242 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
| 243 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 244 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 245 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 246 | x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 247 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 248 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 249 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 250 | x509_req.o: ../../include/openssl/opensslconf.h | ||
| 251 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 252 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
| 253 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 254 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 255 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 256 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 257 | x509_req.o: ../cryptlib.h x509_req.c | ||
| 258 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 259 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 260 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 261 | x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 262 | x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 263 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 264 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 265 | x509_set.o: ../../include/openssl/opensslconf.h | ||
| 266 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 267 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 268 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 269 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 270 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 271 | x509_set.o: ../cryptlib.h x509_set.c | ||
| 272 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 273 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 274 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 275 | x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 276 | x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 277 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 278 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 279 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 280 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 282 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 283 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 284 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 285 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
| 286 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 287 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 288 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 289 | x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 290 | x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 291 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 292 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 293 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
| 294 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 295 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 296 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 297 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 298 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 299 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
| 300 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 301 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 302 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 303 | x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 304 | x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 305 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 306 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 307 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 308 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 309 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 310 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 311 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 312 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 313 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
| 314 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 315 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 316 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 317 | x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 318 | x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 319 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 320 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 321 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 322 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 323 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 324 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 325 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 326 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 327 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
| 328 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 329 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 330 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 331 | x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 332 | x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 333 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 334 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 335 | x509cset.o: ../../include/openssl/opensslconf.h | ||
| 336 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 337 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 338 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 339 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 340 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 341 | x509cset.o: ../cryptlib.h x509cset.c | ||
| 342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 344 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 345 | x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 346 | x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 349 | x509name.o: ../../include/openssl/opensslconf.h | ||
| 350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 352 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 353 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 354 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 355 | x509name.o: ../cryptlib.h x509name.c | ||
| 356 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 357 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 358 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 359 | x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 360 | x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 363 | x509rset.o: ../../include/openssl/opensslconf.h | ||
| 364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 366 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 367 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 368 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 369 | x509rset.o: ../cryptlib.h x509rset.c | ||
| 370 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 371 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 372 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 373 | x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 374 | x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 375 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 376 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 377 | x509spki.o: ../../include/openssl/opensslconf.h | ||
| 378 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 379 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 380 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 381 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 382 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 383 | x509spki.o: ../cryptlib.h x509spki.c | ||
| 384 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 385 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 386 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 387 | x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 388 | x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 389 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 390 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 391 | x509type.o: ../../include/openssl/opensslconf.h | ||
| 392 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 393 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 394 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 395 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 396 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 397 | x509type.o: ../cryptlib.h x509type.c | ||
| 398 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 399 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 400 | x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 401 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 402 | x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 403 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 404 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 405 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 406 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 407 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 408 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 409 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 410 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libssl/src/crypto/x509v3/Makefile.ssl b/src/lib/libssl/src/crypto/x509v3/Makefile.ssl index 57006e6875..da7c859476 100644 --- a/src/lib/libssl/src/crypto/x509v3/Makefile.ssl +++ b/src/lib/libssl/src/crypto/x509v3/Makefile.ssl | |||
| @@ -5,13 +5,14 @@ | |||
| 5 | DIR= x509v3 | 5 | DIR= x509v3 |
| 6 | TOP= ../.. | 6 | TOP= ../.. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | 10 | 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 | ||
| @@ -22,12 +23,14 @@ TEST= | |||
| 22 | APPS= | 23 | APPS= |
| 23 | 24 | ||
| 24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
| 25 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c \ | 26 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ |
| 26 | v3_lib.c v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c \ | 27 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ |
| 27 | v3_pku.c v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c | 28 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ |
| 29 | v3_ocsp.c v3_akeya.c | ||
| 28 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ | 30 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ |
| 29 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ | 31 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ |
| 30 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o | 32 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ |
| 33 | v3_ocsp.o v3_akeya.o | ||
| 31 | 34 | ||
| 32 | SRC= $(LIBSRC) | 35 | SRC= $(LIBSRC) |
| 33 | 36 | ||
| @@ -43,7 +46,7 @@ all: lib | |||
| 43 | 46 | ||
| 44 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
| 45 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
| 46 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
| 47 | @touch lib | 50 | @touch lib |
| 48 | 51 | ||
| 49 | files: | 52 | files: |
| @@ -82,351 +85,336 @@ clean: | |||
| 82 | 85 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 87 | ||
| 85 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 88 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h |
| 86 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 89 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 87 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 88 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 91 | v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 89 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 90 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 91 | v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 92 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 94 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 93 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 95 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 94 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 95 | v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 97 | v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 97 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 98 | v3_akey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 98 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 99 | v3_akey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 99 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 100 | v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 100 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 101 | v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 102 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 101 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 103 | v3_akey.o: ../cryptlib.h | 102 | v3_akey.o: ../cryptlib.h v3_akey.c |
| 104 | v3_alt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 103 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h |
| 105 | v3_alt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 104 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 106 | v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 105 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 107 | v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 108 | v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 109 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 110 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 111 | v3_akeya.o: ../../include/openssl/opensslconf.h | ||
| 112 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 113 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 114 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 115 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 116 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 117 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | ||
| 118 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 119 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 107 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 120 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 108 | v3_alt.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 121 | v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 110 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 122 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 111 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 123 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 112 | v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 124 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 113 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 125 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 114 | v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 126 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 115 | v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 116 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 117 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 118 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 127 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 119 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 120 | v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 129 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 121 | v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h | 130 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 122 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 131 | v3_alt.o: ../cryptlib.h v3_alt.c |
| 123 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 132 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h |
| 133 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 124 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 134 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 125 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 135 | v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 126 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 127 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 136 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 128 | v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 129 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 138 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 130 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 139 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 131 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 132 | v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 133 | v3_bcons.o: ../../include/openssl/opensslconf.h | 140 | v3_bcons.o: ../../include/openssl/opensslconf.h |
| 134 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 141 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 135 | v3_bcons.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 142 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 136 | v3_bcons.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 143 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 137 | v3_bcons.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 144 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 138 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 139 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 145 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 140 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h | 146 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c |
| 141 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 147 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
| 142 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 148 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 143 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 149 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 144 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 150 | v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 145 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 151 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 146 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 152 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 147 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 153 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 148 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 149 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 150 | v3_bitst.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 154 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 152 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 155 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 153 | v3_bitst.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 156 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 154 | v3_bitst.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 157 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 155 | v3_bitst.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 158 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 156 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 157 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 159 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 158 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h | 160 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c |
| 159 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 161 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h |
| 160 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 162 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 161 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 163 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 162 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 164 | v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 163 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 165 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 164 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 166 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 165 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 166 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 168 | v3_conf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 169 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 168 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 170 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 169 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 171 | v3_conf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 170 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 172 | v3_conf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 171 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 173 | v3_conf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 172 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 174 | v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 175 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 173 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 176 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h | 174 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c |
| 177 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 175 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h |
| 178 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 176 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 179 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 177 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 180 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 178 | v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 181 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 182 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 179 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 183 | v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 180 | v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 184 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 181 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 185 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 182 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 186 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 187 | v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 188 | v3_cpols.o: ../../include/openssl/opensslconf.h | 183 | v3_cpols.o: ../../include/openssl/opensslconf.h |
| 189 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 184 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 190 | v3_cpols.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 185 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 191 | v3_cpols.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 186 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 192 | v3_cpols.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 187 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 193 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 194 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 188 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 195 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h | 189 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c |
| 196 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 190 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h |
| 197 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 191 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 198 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 192 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 199 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 193 | v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 200 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 201 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 202 | v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 195 | v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 203 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 196 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 204 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 197 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 205 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 206 | v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 207 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 198 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 208 | v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 199 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 209 | v3_crld.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 200 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 210 | v3_crld.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 201 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 211 | v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 202 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 212 | v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 213 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 203 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 214 | v3_crld.o: ../cryptlib.h | 204 | v3_crld.o: ../cryptlib.h v3_crld.c |
| 215 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 205 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h |
| 216 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 206 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 217 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 207 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 218 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 208 | v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 219 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 209 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 220 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 210 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 221 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 211 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 222 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 223 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 224 | v3_enum.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 225 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 212 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 226 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 213 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 227 | v3_enum.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 214 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 228 | v3_enum.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 215 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 229 | v3_enum.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 216 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 230 | v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 231 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 217 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 232 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h | 218 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c |
| 233 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 219 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h |
| 234 | v3_extku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 220 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 235 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 221 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 236 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 222 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 237 | v3_extku.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 223 | v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 238 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 239 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 224 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 240 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 225 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 241 | v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 226 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 242 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 227 | v3_extku.o: ../../include/openssl/opensslconf.h |
| 243 | v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 228 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 244 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 229 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 245 | v3_extku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 230 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 246 | v3_extku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 231 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 247 | v3_extku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 248 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 249 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 232 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 250 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h | 233 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c |
| 251 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 234 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h |
| 252 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 235 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 253 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 236 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 254 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 237 | v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 255 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 256 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 238 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 257 | v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 239 | v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 258 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 240 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 259 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 241 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 260 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 261 | v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 262 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 242 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 263 | v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 243 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 264 | v3_genn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 244 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 265 | v3_genn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 245 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 266 | v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 246 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 267 | v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 268 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 247 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 269 | v3_genn.o: ../cryptlib.h | 248 | v3_genn.o: ../cryptlib.h v3_genn.c |
| 270 | v3_ia5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 249 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 271 | v3_ia5.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 250 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 272 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 273 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 251 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 274 | v3_ia5.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 252 | v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 275 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 276 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 253 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 277 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 254 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 278 | v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 255 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 279 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 256 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 280 | v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 257 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 281 | v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 282 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 283 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 284 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 258 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 285 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 259 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 286 | v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 260 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 287 | v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h | 261 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 288 | v3_int.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 262 | v3_ia5.o: ../cryptlib.h v3_ia5.c |
| 289 | v3_int.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 263 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h |
| 290 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 264 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 265 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 266 | v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 267 | v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 268 | v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 269 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 270 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 271 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 272 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 273 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 274 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 275 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 276 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 277 | v3_info.o: ../cryptlib.h v3_info.c | ||
| 278 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 279 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 291 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 280 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 292 | v3_int.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 281 | v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 293 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 294 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 282 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 295 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 283 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 296 | v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 284 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 297 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 285 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 298 | v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 286 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 299 | v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 300 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 301 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 302 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 287 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 303 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 288 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 304 | v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 289 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 305 | v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h | 290 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 306 | v3_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 291 | v3_int.o: ../cryptlib.h v3_int.c |
| 307 | v3_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 292 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 308 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 293 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 309 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 294 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 310 | v3_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 295 | v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 311 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 312 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 296 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 313 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 297 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 314 | v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 298 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 315 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 299 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 316 | v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 300 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 317 | v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 318 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 319 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 320 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 301 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 321 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 302 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 322 | v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 303 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 323 | v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h | 304 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 324 | v3_pku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 305 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c |
| 325 | v3_pku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 306 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h |
| 307 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 308 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 309 | v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 310 | v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 311 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 312 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 313 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
| 314 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 315 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
| 316 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 317 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 318 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 319 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
| 320 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | ||
| 321 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 322 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 326 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 323 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 327 | v3_pku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 324 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 328 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 329 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 325 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 330 | v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 326 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 331 | v3_pku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 327 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 332 | v3_pku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 328 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 333 | v3_pku.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 334 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 335 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 329 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 336 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 330 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 337 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 331 | v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 338 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 332 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 339 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 333 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 340 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
| 341 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 334 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 342 | v3_pku.o: ../cryptlib.h | 335 | v3_pku.o: ../cryptlib.h v3_pku.c |
| 343 | v3_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 336 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 344 | v3_prn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 337 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 345 | v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 346 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 338 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 347 | v3_prn.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 339 | v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 348 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 349 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 340 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 350 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 341 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 351 | v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 342 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 352 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 343 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 353 | v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 344 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 354 | v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 355 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 356 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 357 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 345 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 358 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 346 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 359 | v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 347 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 360 | v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h | 348 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 361 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 349 | v3_prn.o: ../cryptlib.h v3_prn.c |
| 362 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 350 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h |
| 363 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 351 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 364 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 352 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 365 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 353 | v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 366 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 354 | v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 367 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 355 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 368 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 356 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 369 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 357 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 370 | v3_skey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 358 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 359 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 360 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 361 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 362 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 363 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | ||
| 364 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 365 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 366 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
| 367 | v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
| 368 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 369 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 370 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 373 | v3_skey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 373 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 374 | v3_skey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 374 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 375 | v3_skey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 375 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 376 | v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 377 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 376 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 378 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h | 377 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c |
| 379 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 378 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h |
| 380 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 379 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 381 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 380 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 382 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 381 | v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 383 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 384 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 382 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 385 | v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 383 | v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 386 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 384 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 387 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 385 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 388 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
| 389 | v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
| 390 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 386 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
| 391 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 387 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 392 | v3_sxnet.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 388 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 393 | v3_sxnet.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 389 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 394 | v3_sxnet.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 390 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 395 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 396 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 391 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 397 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h | 392 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c |
| 398 | v3_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 393 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 399 | v3_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 394 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 400 | v3_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 401 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 395 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 402 | v3_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 396 | v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 403 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
| 404 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 397 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 405 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 398 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 406 | v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 399 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 407 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 400 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 408 | v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 401 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 409 | v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 410 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 411 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 412 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 402 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 413 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 403 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 414 | v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 404 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 415 | v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h | 405 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 406 | v3_utl.o: ../cryptlib.h v3_utl.c | ||
| 416 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 407 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 417 | v3err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 408 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 418 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 409 | v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 419 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 420 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 410 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 421 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 411 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 422 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 412 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 423 | v3err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 413 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 424 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 414 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 425 | v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 415 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 426 | v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
| 427 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 428 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 429 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 416 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 430 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 417 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 431 | v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 418 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
| 432 | v3err.o: ../../include/openssl/x509v3.h | 419 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 420 | v3err.o: v3err.c | ||
diff --git a/src/lib/libssl/src/doc/crypto/BIO_new_bio_pair.pod b/src/lib/libssl/src/doc/crypto/BIO_new_bio_pair.pod index 2256ba9d34..1a8dbc577b 100644 --- a/src/lib/libssl/src/doc/crypto/BIO_new_bio_pair.pod +++ b/src/lib/libssl/src/doc/crypto/BIO_new_bio_pair.pod | |||
| @@ -12,7 +12,8 @@ BIO_new_bio_pair - create a new BIO pair | |||
| 12 | 12 | ||
| 13 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
| 14 | 14 | ||
| 15 | BIO_new_bio_pair() creates a buffering BIO pair. It has two endpoints between | 15 | BIO_new_bio_pair() creates a buffering BIO pair based on the |
| 16 | L<SSL_set_bio(3)|SSL_set_bio(3)> method. The BIO pair has two endpoints between which | ||
| 16 | data can be buffered. Its typical use is to connect one endpoint as underlying | 17 | data can be buffered. Its typical use is to connect one endpoint as underlying |
| 17 | input/output BIO to an SSL and access the other one controlled by the program | 18 | input/output BIO to an SSL and access the other one controlled by the program |
| 18 | instead of accessing the network connection directly. | 19 | instead of accessing the network connection directly. |
| @@ -38,7 +39,7 @@ without having to go through the SSL-interface. | |||
| 38 | BIO *internal_bio, *network_bio; | 39 | BIO *internal_bio, *network_bio; |
| 39 | ... | 40 | ... |
| 40 | BIO_new_bio_pair(internal_bio, 0, network_bio, 0); | 41 | BIO_new_bio_pair(internal_bio, 0, network_bio, 0); |
| 41 | SSL_set_bio(ssl, internal_bio); | 42 | SSL_set_bio(ssl, internal_bio, internal_bio); |
| 42 | SSL_operations(); | 43 | SSL_operations(); |
| 43 | ... | 44 | ... |
| 44 | 45 | ||
| @@ -67,7 +68,7 @@ and must be transfered to the network. Use BIO_ctrl_get_read_request() to | |||
| 67 | find out, how many bytes must be written into the buffer before the | 68 | find out, how many bytes must be written into the buffer before the |
| 68 | SSL_operation() can successfully be continued. | 69 | SSL_operation() can successfully be continued. |
| 69 | 70 | ||
| 70 | =head1 IMPORTANT | 71 | =head1 WARNING |
| 71 | 72 | ||
| 72 | As the data is buffered, SSL_operation() may return with a ERROR_SSL_WANT_READ | 73 | As the data is buffered, SSL_operation() may return with a ERROR_SSL_WANT_READ |
| 73 | condition, but there is still data in the write buffer. An application must | 74 | condition, but there is still data in the write buffer. An application must |
diff --git a/src/lib/libssl/src/ssl/Makefile.ssl b/src/lib/libssl/src/ssl/Makefile.ssl index f4b13bf83b..2a3f8406d8 100644 --- a/src/lib/libssl/src/ssl/Makefile.ssl +++ b/src/lib/libssl/src/ssl/Makefile.ssl | |||
| @@ -5,23 +5,28 @@ | |||
| 5 | DIR= ssl | 5 | DIR= ssl |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I../crypto -I../include | 8 | INCLUDES= -I../crypto -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | AR= ar r | 17 | AR= ar r |
| 18 | # KRB5 stuff | ||
| 19 | KRB5_INCLUDES= | ||
| 20 | LIBKRB5= | ||
| 15 | 21 | ||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 17 | 23 | ||
| 18 | ERR=ssl | 24 | GENERAL=Makefile README ssl-lib.com install.com |
| 19 | ERRC=ssl_err | ||
| 20 | GENERAL=Makefile README | ||
| 21 | TEST=ssltest.c | 25 | TEST=ssltest.c |
| 22 | APPS= | 26 | APPS= |
| 23 | 27 | ||
| 24 | LIB=$(TOP)/libssl.a | 28 | LIB=$(TOP)/libssl.a |
| 29 | SHARED_LIB= libssl$(SHLIB_EXT) | ||
| 25 | LIBSRC= \ | 30 | LIBSRC= \ |
| 26 | s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ | 31 | s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ |
| 27 | s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ | 32 | s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ |
| @@ -30,7 +35,7 @@ LIBSRC= \ | |||
| 30 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ | 35 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ |
| 31 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ | 36 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ |
| 32 | ssl_asn1.c ssl_txt.c ssl_algs.c \ | 37 | ssl_asn1.c ssl_txt.c ssl_algs.c \ |
| 33 | bio_ssl.c $(ERRC).c | 38 | bio_ssl.c ssl_err.c kssl.c |
| 34 | LIBOBJ= \ | 39 | LIBOBJ= \ |
| 35 | s2_meth.o s2_srvr.o s2_clnt.o s2_lib.o s2_enc.o s2_pkt.o \ | 40 | s2_meth.o s2_srvr.o s2_clnt.o s2_lib.o s2_enc.o s2_pkt.o \ |
| 36 | s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o s3_pkt.o s3_both.o \ | 41 | s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o s3_pkt.o s3_both.o \ |
| @@ -39,40 +44,44 @@ LIBOBJ= \ | |||
| 39 | ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \ | 44 | ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \ |
| 40 | ssl_ciph.o ssl_stat.o ssl_rsa.o \ | 45 | ssl_ciph.o ssl_stat.o ssl_rsa.o \ |
| 41 | ssl_asn1.o ssl_txt.o ssl_algs.o \ | 46 | ssl_asn1.o ssl_txt.o ssl_algs.o \ |
| 42 | bio_ssl.o $(ERRC).o | 47 | bio_ssl.o ssl_err.o kssl.o |
| 43 | 48 | ||
| 44 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
| 45 | 50 | ||
| 46 | EXHEADER= ssl.h ssl2.h ssl3.h ssl23.h tls1.h | 51 | EXHEADER= ssl.h ssl2.h ssl3.h ssl23.h tls1.h kssl.h |
| 47 | HEADER= $(EXHEADER) ssl_locl.h | 52 | HEADER= $(EXHEADER) ssl_locl.h kssl_lcl.h |
| 48 | 53 | ||
| 49 | ALL= $(GENERAL) $(SRC) $(HEADER) | 54 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 50 | 55 | ||
| 51 | top: | 56 | top: |
| 52 | (cd ..; $(MAKE) DIRS=$(DIR) all) | 57 | (cd ..; $(MAKE) DIRS=$(DIR) all) |
| 53 | 58 | ||
| 54 | all: lib | 59 | all: lib shared |
| 55 | 60 | ||
| 56 | lib: $(LIBOBJ) | 61 | lib: $(LIBOBJ) |
| 57 | $(AR) $(LIB) $(LIBOBJ) | 62 | $(AR) $(LIB) $(LIBOBJ) |
| 58 | sh $(TOP)/util/ranlib.sh $(LIB) | 63 | $(RANLIB) $(LIB) || echo Never mind. |
| 59 | @touch lib | 64 | @touch lib |
| 60 | 65 | ||
| 66 | shared: | ||
| 67 | if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 68 | (cd ..; make $(SHARED_LIB)); \ | ||
| 69 | fi | ||
| 70 | |||
| 61 | files: | 71 | files: |
| 62 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 72 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 63 | 73 | ||
| 64 | links: | 74 | links: |
| 65 | /bin/rm -f Makefile | 75 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 66 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 76 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) |
| 67 | $(TOP)/util/mklink.sh ../include $(EXHEADER) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) |
| 68 | $(TOP)/util/mklink.sh ../test $(TEST) | 78 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
| 69 | $(TOP)/util/mklink.sh ../apps $(APPS) | ||
| 70 | 79 | ||
| 71 | install: | 80 | install: |
| 72 | @for i in $(EXHEADER) ; \ | 81 | @for i in $(EXHEADER) ; \ |
| 73 | do \ | 82 | do \ |
| 74 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 83 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 75 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 84 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 76 | done; | 85 | done; |
| 77 | 86 | ||
| 78 | tags: | 87 | tags: |
| @@ -84,17 +93,644 @@ lint: | |||
| 84 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 85 | 94 | ||
| 86 | depend: | 95 | depend: |
| 87 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 96 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 88 | 97 | ||
| 89 | dclean: | 98 | dclean: |
| 90 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 99 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 91 | mv -f Makefile.new $(MAKEFILE) | 100 | mv -f Makefile.new $(MAKEFILE) |
| 92 | 101 | ||
| 93 | clean: | 102 | clean: |
| 94 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 103 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 95 | |||
| 96 | errors: | ||
| 97 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 98 | perl ../crypto/err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 99 | 104 | ||
| 100 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 105 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 106 | |||
| 107 | bio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 108 | bio_ssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 109 | bio_ssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 110 | bio_ssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 111 | bio_ssl.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 112 | bio_ssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 113 | bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 114 | bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 115 | bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 116 | bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 117 | bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 118 | bio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 119 | bio_ssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 120 | bio_ssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 121 | bio_ssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 122 | bio_ssl.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 123 | bio_ssl.o: ../include/openssl/x509_vfy.h bio_ssl.c | ||
| 124 | kssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 125 | kssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 126 | kssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 127 | kssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 128 | kssl.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 129 | kssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h | ||
| 130 | kssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 131 | kssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 132 | kssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 133 | kssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 134 | kssl.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 135 | kssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 136 | kssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 137 | kssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 138 | kssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 139 | kssl.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 140 | kssl.o: ../include/openssl/x509_vfy.h kssl.c | ||
| 141 | s23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 142 | s23_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 143 | s23_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 144 | s23_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 145 | s23_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 146 | s23_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 147 | s23_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 148 | s23_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 149 | s23_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 150 | s23_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 151 | s23_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 152 | s23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 153 | s23_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 154 | s23_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 155 | s23_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 156 | s23_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 157 | s23_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_clnt.c | ||
| 158 | s23_clnt.o: ssl_locl.h | ||
| 159 | s23_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 160 | s23_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 161 | s23_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 162 | s23_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 163 | s23_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 164 | s23_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 165 | s23_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 166 | s23_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 167 | s23_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 168 | s23_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 169 | s23_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 170 | s23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 171 | s23_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 172 | s23_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 173 | s23_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 174 | s23_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 175 | s23_lib.o: ../include/openssl/x509_vfy.h s23_lib.c ssl_locl.h | ||
| 176 | s23_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 177 | s23_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 178 | s23_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 179 | s23_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 180 | s23_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 181 | s23_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 182 | s23_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 183 | s23_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 184 | s23_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 185 | s23_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 186 | s23_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 187 | s23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 188 | s23_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 189 | s23_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 190 | s23_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 191 | s23_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 192 | s23_meth.o: ../include/openssl/x509_vfy.h s23_meth.c ssl_locl.h | ||
| 193 | s23_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 194 | s23_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 195 | s23_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 196 | s23_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 197 | s23_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 198 | s23_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 199 | s23_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 200 | s23_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 201 | s23_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 202 | s23_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 203 | s23_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 204 | s23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 205 | s23_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 206 | s23_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 207 | s23_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 208 | s23_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 209 | s23_pkt.o: ../include/openssl/x509_vfy.h s23_pkt.c ssl_locl.h | ||
| 210 | s23_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 211 | s23_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 212 | s23_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 213 | s23_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 214 | s23_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 215 | s23_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 216 | s23_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 217 | s23_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 218 | s23_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 219 | s23_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 220 | s23_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 221 | s23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 222 | s23_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 223 | s23_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 224 | s23_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 225 | s23_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 226 | s23_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_srvr.c | ||
| 227 | s23_srvr.o: ssl_locl.h | ||
| 228 | s2_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 229 | s2_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 230 | s2_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 231 | s2_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 232 | s2_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 233 | s2_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 234 | s2_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 235 | s2_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 236 | s2_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 237 | s2_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 238 | s2_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 239 | s2_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 240 | s2_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 241 | s2_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 242 | s2_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 243 | s2_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 244 | s2_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_clnt.c | ||
| 245 | s2_clnt.o: ssl_locl.h | ||
| 246 | s2_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 247 | s2_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 248 | s2_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 249 | s2_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 250 | s2_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 251 | s2_enc.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 252 | s2_enc.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 253 | s2_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 254 | s2_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 255 | s2_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 256 | s2_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 257 | s2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 258 | s2_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 259 | s2_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 260 | s2_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 261 | s2_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 262 | s2_enc.o: ../include/openssl/x509_vfy.h s2_enc.c ssl_locl.h | ||
| 263 | s2_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 264 | s2_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 265 | s2_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 266 | s2_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 267 | s2_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 268 | s2_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 269 | s2_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
| 270 | s2_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 271 | s2_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 272 | s2_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 273 | s2_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 274 | s2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 275 | s2_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 276 | s2_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 277 | s2_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 278 | s2_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 279 | s2_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_lib.c | ||
| 280 | s2_lib.o: ssl_locl.h | ||
| 281 | s2_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 282 | s2_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 283 | s2_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 284 | s2_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 285 | s2_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 286 | s2_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 287 | s2_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 288 | s2_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 289 | s2_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 290 | s2_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 291 | s2_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 292 | s2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 293 | s2_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 294 | s2_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 295 | s2_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 296 | s2_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 297 | s2_meth.o: ../include/openssl/x509_vfy.h s2_meth.c ssl_locl.h | ||
| 298 | s2_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 299 | s2_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 300 | s2_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 301 | s2_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 302 | s2_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 303 | s2_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 304 | s2_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 305 | s2_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 306 | s2_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 307 | s2_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 308 | s2_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 309 | s2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 310 | s2_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 311 | s2_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 312 | s2_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 313 | s2_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 314 | s2_pkt.o: ../include/openssl/x509_vfy.h s2_pkt.c ssl_locl.h | ||
| 315 | s2_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 316 | s2_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 317 | s2_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 318 | s2_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 319 | s2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 320 | s2_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 321 | s2_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 322 | s2_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 323 | s2_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 324 | s2_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 325 | s2_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 326 | s2_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 327 | s2_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 328 | s2_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 329 | s2_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 330 | s2_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 331 | s2_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_srvr.c | ||
| 332 | s2_srvr.o: ssl_locl.h | ||
| 333 | s3_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 334 | s3_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 335 | s3_both.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 336 | s3_both.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 337 | s3_both.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 338 | s3_both.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 339 | s3_both.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 340 | s3_both.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 341 | s3_both.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 342 | s3_both.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 343 | s3_both.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 344 | s3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 345 | s3_both.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 346 | s3_both.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 347 | s3_both.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 348 | s3_both.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 349 | s3_both.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_both.c | ||
| 350 | s3_both.o: ssl_locl.h | ||
| 351 | s3_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 352 | s3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 353 | s3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 354 | s3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 355 | s3_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 356 | s3_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 357 | s3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
| 358 | s3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 359 | s3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 360 | s3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 361 | s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 362 | s3_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 363 | s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 364 | s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 365 | s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 366 | s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 367 | s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 368 | s3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h | ||
| 369 | s3_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 370 | s3_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 371 | s3_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 372 | s3_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 373 | s3_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 374 | s3_enc.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 375 | s3_enc.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
| 376 | s3_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 377 | s3_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 378 | s3_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 379 | s3_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 380 | s3_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 381 | s3_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 382 | s3_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 383 | s3_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 384 | s3_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 385 | s3_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_enc.c | ||
| 386 | s3_enc.o: ssl_locl.h | ||
| 387 | s3_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 388 | s3_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 389 | s3_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 390 | s3_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 391 | s3_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 392 | s3_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 393 | s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
| 394 | s3_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 395 | s3_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 396 | s3_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 397 | s3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 398 | s3_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 399 | s3_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 400 | s3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 401 | s3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 402 | s3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 403 | s3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h | ||
| 404 | s3_lib.o: s3_lib.c ssl_locl.h | ||
| 405 | s3_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 406 | s3_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 407 | s3_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 408 | s3_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 409 | s3_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 410 | s3_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 411 | s3_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 412 | s3_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 413 | s3_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 414 | s3_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 415 | s3_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 416 | s3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 417 | s3_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 418 | s3_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 419 | s3_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 420 | s3_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 421 | s3_meth.o: ../include/openssl/x509_vfy.h s3_meth.c ssl_locl.h | ||
| 422 | s3_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 423 | s3_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 424 | s3_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 425 | s3_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 426 | s3_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 427 | s3_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 428 | s3_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 429 | s3_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 430 | s3_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 431 | s3_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 432 | s3_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 433 | s3_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 434 | s3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 435 | s3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 436 | s3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 437 | s3_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 438 | s3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h | ||
| 439 | s3_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 440 | s3_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 441 | s3_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 442 | s3_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 443 | s3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 444 | s3_srvr.o: ../include/openssl/evp.h ../include/openssl/krb5_asn.h | ||
| 445 | s3_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 446 | s3_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | ||
| 447 | s3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 448 | s3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 449 | s3_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 450 | s3_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 451 | s3_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 452 | s3_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 453 | s3_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 454 | s3_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 455 | s3_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 456 | s3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h | ||
| 457 | s3_srvr.o: s3_srvr.c ssl_locl.h | ||
| 458 | ssl_algs.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 459 | ssl_algs.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 460 | ssl_algs.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 461 | ssl_algs.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 462 | ssl_algs.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 463 | ssl_algs.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 464 | ssl_algs.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 465 | ssl_algs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 466 | ssl_algs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 467 | ssl_algs.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 468 | ssl_algs.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 469 | ssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 470 | ssl_algs.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 471 | ssl_algs.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 472 | ssl_algs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 473 | ssl_algs.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 474 | ssl_algs.o: ../include/openssl/x509_vfy.h ssl_algs.c ssl_locl.h | ||
| 475 | ssl_asn1.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/asn1_mac.h | ||
| 476 | ssl_asn1.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 477 | ssl_asn1.o: ../include/openssl/buffer.h ../include/openssl/comp.h | ||
| 478 | ssl_asn1.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 479 | ssl_asn1.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 480 | ssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 481 | ssl_asn1.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 482 | ssl_asn1.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 483 | ssl_asn1.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 484 | ssl_asn1.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 485 | ssl_asn1.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 486 | ssl_asn1.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 487 | ssl_asn1.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 488 | ssl_asn1.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 489 | ssl_asn1.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 490 | ssl_asn1.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 491 | ssl_asn1.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_asn1.c | ||
| 492 | ssl_asn1.o: ssl_locl.h | ||
| 493 | ssl_cert.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 494 | ssl_cert.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 495 | ssl_cert.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 496 | ssl_cert.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 497 | ssl_cert.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 498 | ssl_cert.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 499 | ssl_cert.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 500 | ssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 501 | ssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 502 | ssl_cert.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 503 | ssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 504 | ssl_cert.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 505 | ssl_cert.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 506 | ssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 507 | ssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 508 | ssl_cert.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 509 | ssl_cert.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 510 | ssl_cert.o: ../include/openssl/x509v3.h ssl_cert.c ssl_locl.h | ||
| 511 | ssl_ciph.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 512 | ssl_ciph.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 513 | ssl_ciph.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 514 | ssl_ciph.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 515 | ssl_ciph.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 516 | ssl_ciph.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 517 | ssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 518 | ssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 519 | ssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 520 | ssl_ciph.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 521 | ssl_ciph.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 522 | ssl_ciph.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 523 | ssl_ciph.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 524 | ssl_ciph.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 525 | ssl_ciph.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 526 | ssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 527 | ssl_ciph.o: ../include/openssl/x509_vfy.h ssl_ciph.c ssl_locl.h | ||
| 528 | ssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 529 | ssl_err.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 530 | ssl_err.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 531 | ssl_err.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 532 | ssl_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 533 | ssl_err.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 534 | ssl_err.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 535 | ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 536 | ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 537 | ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 538 | ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 539 | ssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 540 | ssl_err.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 541 | ssl_err.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 542 | ssl_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 543 | ssl_err.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 544 | ssl_err.o: ../include/openssl/x509_vfy.h ssl_err.c | ||
| 545 | ssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 546 | ssl_err2.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 547 | ssl_err2.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 548 | ssl_err2.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 549 | ssl_err2.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 550 | ssl_err2.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 551 | ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 552 | ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 553 | ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 554 | ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 555 | ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 556 | ssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 557 | ssl_err2.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 558 | ssl_err2.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 559 | ssl_err2.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 560 | ssl_err2.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 561 | ssl_err2.o: ../include/openssl/x509_vfy.h ssl_err2.c | ||
| 562 | ssl_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 563 | ssl_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 564 | ssl_lib.o: ../include/openssl/comp.h ../include/openssl/conf.h | ||
| 565 | ssl_lib.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 566 | ssl_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 567 | ssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 568 | ssl_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 569 | ssl_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 570 | ssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 571 | ssl_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 572 | ssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 573 | ssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 574 | ssl_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 575 | ssl_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 576 | ssl_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 577 | ssl_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 578 | ssl_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 579 | ssl_lib.o: ../include/openssl/x509v3.h kssl_lcl.h ssl_lib.c ssl_locl.h | ||
| 580 | ssl_rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 581 | ssl_rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 582 | ssl_rsa.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 583 | ssl_rsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 584 | ssl_rsa.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 585 | ssl_rsa.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 586 | ssl_rsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 587 | ssl_rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 588 | ssl_rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 589 | ssl_rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 590 | ssl_rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 591 | ssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 592 | ssl_rsa.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 593 | ssl_rsa.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 594 | ssl_rsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 595 | ssl_rsa.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 596 | ssl_rsa.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_rsa.c | ||
| 597 | ssl_sess.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 598 | ssl_sess.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 599 | ssl_sess.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 600 | ssl_sess.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 601 | ssl_sess.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 602 | ssl_sess.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 603 | ssl_sess.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 604 | ssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 605 | ssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 606 | ssl_sess.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 607 | ssl_sess.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 608 | ssl_sess.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 609 | ssl_sess.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 610 | ssl_sess.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 611 | ssl_sess.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 612 | ssl_sess.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 613 | ssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
| 614 | ssl_sess.o: ssl_sess.c | ||
| 615 | ssl_stat.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 616 | ssl_stat.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 617 | ssl_stat.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 618 | ssl_stat.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 619 | ssl_stat.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 620 | ssl_stat.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 621 | ssl_stat.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 622 | ssl_stat.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 623 | ssl_stat.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 624 | ssl_stat.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 625 | ssl_stat.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 626 | ssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 627 | ssl_stat.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 628 | ssl_stat.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 629 | ssl_stat.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 630 | ssl_stat.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 631 | ssl_stat.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_stat.c | ||
| 632 | ssl_txt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 633 | ssl_txt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 634 | ssl_txt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 635 | ssl_txt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 636 | ssl_txt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 637 | ssl_txt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 638 | ssl_txt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 639 | ssl_txt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 640 | ssl_txt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 641 | ssl_txt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 642 | ssl_txt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 643 | ssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 644 | ssl_txt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 645 | ssl_txt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 646 | ssl_txt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 647 | ssl_txt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 648 | ssl_txt.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_txt.c | ||
| 649 | t1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 650 | t1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 651 | t1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 652 | t1_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 653 | t1_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 654 | t1_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 655 | t1_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 656 | t1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 657 | t1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 658 | t1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 659 | t1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 660 | t1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 661 | t1_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 662 | t1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 663 | t1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 664 | t1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 665 | t1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
| 666 | t1_clnt.o: t1_clnt.c | ||
| 667 | t1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 668 | t1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 669 | t1_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 670 | t1_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 671 | t1_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 672 | t1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h | ||
| 673 | t1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 674 | t1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | ||
| 675 | t1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 676 | t1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 677 | t1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 678 | t1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 679 | t1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 680 | t1_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 681 | t1_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 682 | t1_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 683 | t1_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 684 | t1_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_enc.c | ||
| 685 | t1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 686 | t1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 687 | t1_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 688 | t1_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 689 | t1_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 690 | t1_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 691 | t1_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 692 | t1_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 693 | t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 694 | t1_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 695 | t1_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 696 | t1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 697 | t1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 698 | t1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 699 | t1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 700 | t1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 701 | t1_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_lib.c | ||
| 702 | t1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 703 | t1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 704 | t1_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 705 | t1_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 706 | t1_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 707 | t1_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 708 | t1_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 709 | t1_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 710 | t1_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 711 | t1_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 712 | t1_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | ||
| 713 | t1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 714 | t1_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 715 | t1_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 716 | t1_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 717 | t1_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
| 718 | t1_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_meth.c | ||
| 719 | t1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 720 | t1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 721 | t1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 722 | t1_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 723 | t1_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 724 | t1_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
| 725 | t1_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 726 | t1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 727 | t1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 728 | t1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
| 729 | t1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 730 | t1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 731 | t1_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
| 732 | t1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
| 733 | t1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
| 734 | t1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 735 | t1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
| 736 | t1_srvr.o: t1_srvr.c | ||
diff --git a/src/lib/libssl/src/test/Makefile.ssl b/src/lib/libssl/src/test/Makefile.ssl index b3de76751e..8a06e69188 100644 --- a/src/lib/libssl/src/test/Makefile.ssl +++ b/src/lib/libssl/src/test/Makefile.ssl | |||
| @@ -5,19 +5,26 @@ | |||
| 5 | DIR= test | 5 | DIR= test |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I../include | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG= -g | 9 | CFLAG= -g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP= /usr/local/ssl | 12 | INSTALLTOP= /usr/local/ssl |
| 11 | MAKEFILE= Makefile.ssl | 13 | MAKEFILE= Makefile.ssl |
| 12 | MAKE= make -f $(MAKEFILE) | 14 | MAKE= make -f $(MAKEFILE) |
| 13 | MAKEDEPEND= makedepend -f$(MAKEFILE) | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 17 | PERL= perl | ||
| 14 | 18 | ||
| 15 | PEX_LIBS= | 19 | PEX_LIBS= |
| 16 | EX_LIBS= #-lnsl -lsocket | 20 | EX_LIBS= #-lnsl -lsocket |
| 17 | 21 | ||
| 18 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 19 | 23 | ||
| 20 | GENERAL=Makefile.ssl | 24 | GENERAL=Makefile.ssl maketests.com \ |
| 25 | tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \ | ||
| 26 | tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \ | ||
| 27 | testca.com VMSca-response.1 VMSca-response.2 | ||
| 21 | 28 | ||
| 22 | DLIBCRYPTO= ../libcrypto.a | 29 | DLIBCRYPTO= ../libcrypto.a |
| 23 | DLIBSSL= ../libssl.a | 30 | DLIBSSL= ../libssl.a |
| @@ -25,6 +32,7 @@ LIBCRYPTO= -L.. -lcrypto | |||
| 25 | LIBSSL= -L.. -lssl | 32 | LIBSSL= -L.. -lssl |
| 26 | 33 | ||
| 27 | BNTEST= bntest | 34 | BNTEST= bntest |
| 35 | ECTEST= ectest | ||
| 28 | EXPTEST= exptest | 36 | EXPTEST= exptest |
| 29 | IDEATEST= ideatest | 37 | IDEATEST= ideatest |
| 30 | SHATEST= shatest | 38 | SHATEST= shatest |
| @@ -32,6 +40,7 @@ SHA1TEST= sha1test | |||
| 32 | MDC2TEST= mdc2test | 40 | MDC2TEST= mdc2test |
| 33 | RMDTEST= rmdtest | 41 | RMDTEST= rmdtest |
| 34 | MD2TEST= md2test | 42 | MD2TEST= md2test |
| 43 | MD4TEST= md4test | ||
| 35 | MD5TEST= md5test | 44 | MD5TEST= md5test |
| 36 | HMACTEST= hmactest | 45 | HMACTEST= hmactest |
| 37 | RC2TEST= rc2test | 46 | RC2TEST= rc2test |
| @@ -45,25 +54,35 @@ DHTEST= dhtest | |||
| 45 | DSATEST= dsatest | 54 | DSATEST= dsatest |
| 46 | METHTEST= methtest | 55 | METHTEST= methtest |
| 47 | SSLTEST= ssltest | 56 | SSLTEST= ssltest |
| 57 | RSATEST= rsa_test | ||
| 58 | ENGINETEST= enginetest | ||
| 59 | EVPTEST= evp_test | ||
| 48 | 60 | ||
| 49 | EXE= $(BNTEST) $(IDEATEST) $(MD2TEST) $(MD5TEST) $(HMACTEST) \ | 61 | TESTS= alltests |
| 62 | |||
| 63 | EXE= $(BNTEST) $(ECTEST) $(IDEATEST) $(MD2TEST) $(MD4TEST) $(MD5TEST) $(HMACTEST) \ | ||
| 50 | $(RC2TEST) $(RC4TEST) $(RC5TEST) \ | 64 | $(RC2TEST) $(RC4TEST) $(RC5TEST) \ |
| 51 | $(DESTEST) $(SHATEST) $(SHA1TEST) $(MDC2TEST) $(RMDTEST) \ | 65 | $(DESTEST) $(SHATEST) $(SHA1TEST) $(MDC2TEST) $(RMDTEST) \ |
| 52 | $(RANDTEST) $(DHTEST) \ | 66 | $(RANDTEST) $(DHTEST) $(ENGINETEST) \ |
| 53 | $(BFTEST) $(CASTTEST) $(SSLTEST) $(EXPTEST) $(DSATEST) | 67 | $(BFTEST) $(CASTTEST) $(SSLTEST) $(EXPTEST) $(DSATEST) $(RSATEST) \ |
| 68 | $(EVPTEST) | ||
| 54 | 69 | ||
| 55 | # $(METHTEST) | 70 | # $(METHTEST) |
| 56 | 71 | ||
| 57 | OBJ= $(BNTEST).o $(IDEATEST).o $(MD2TEST).o $(MD5TEST).o $(HMACTEST).o \ | 72 | OBJ= $(BNTEST).o $(ECTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ |
| 73 | $(HMACTEST).o \ | ||
| 58 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 74 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
| 59 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(MDC2TEST).o $(RMDTEST).o \ | 75 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(MDC2TEST).o $(RMDTEST).o \ |
| 60 | $(RANDTEST).o $(DHTEST).o $(CASTTEST).o \ | 76 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
| 61 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o | 77 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
| 62 | SRC= $(BNTEST).c $(IDEATEST).c $(MD2TEST).c $(MD5TEST).c $(HMACTEST).c \ | 78 | $(EVPTEST).o |
| 79 | SRC= $(BNTEST).c $(ECTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | ||
| 80 | $(HMACTEST).c \ | ||
| 63 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 81 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
| 64 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ | 82 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
| 65 | $(RANDTEST).c $(DHTEST).c $(CASTTEST).c \ | 83 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
| 66 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c | 84 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
| 85 | $(EVPTEST).c | ||
| 67 | 86 | ||
| 68 | EXHEADER= | 87 | EXHEADER= |
| 69 | HEADER= $(EXHEADER) | 88 | HEADER= $(EXHEADER) |
| @@ -71,18 +90,17 @@ HEADER= $(EXHEADER) | |||
| 71 | ALL= $(GENERAL) $(SRC) $(HEADER) | 90 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 72 | 91 | ||
| 73 | top: | 92 | top: |
| 74 | (cd ..; $(MAKE) DIRS=$(DIR) all) | 93 | (cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all) |
| 75 | 94 | ||
| 76 | all: exe | 95 | all: exe |
| 77 | 96 | ||
| 78 | exe: $(EXE) | 97 | exe: $(EXE) |
| 79 | 98 | ||
| 80 | files: | 99 | files: |
| 81 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 82 | 101 | ||
| 83 | links: | 102 | links: |
| 84 | /bin/rm -f Makefile | 103 | @@$(TOP)/util/point.sh Makefile.ssl Makefile |
| 85 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 86 | 104 | ||
| 87 | errors: | 105 | errors: |
| 88 | 106 | ||
| @@ -91,18 +109,28 @@ install: | |||
| 91 | tags: | 109 | tags: |
| 92 | ctags $(SRC) | 110 | ctags $(SRC) |
| 93 | 111 | ||
| 94 | tests: exe apps \ | 112 | tests: exe apps $(TESTS) |
| 95 | test_des test_idea test_sha test_md5 test_hmac test_md2 test_mdc2 \ | ||
| 96 | test_rc2 test_rc4 test_rc5 test_bf test_cast \ | ||
| 97 | test_rand test_enc test_x509 test_rsa test_crl test_sid test_req \ | ||
| 98 | test_pkcs7 test_bn test_verify test_dh test_dsa test_reqgen \ | ||
| 99 | test_ss test_ssl test_ca | ||
| 100 | 113 | ||
| 101 | apps: | 114 | apps: |
| 102 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) | 115 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) |
| 103 | 116 | ||
| 117 | alltests: | ||
| 118 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ | ||
| 119 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | ||
| 120 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) | ||
| 121 | alltests.chooser: \ | ||
| 122 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | ||
| 123 | test_md2 test_mdc2 \ | ||
| 124 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_rd \ | ||
| 125 | test_rand test_bn test_ec test_enc test_x509 test_rsa test_crl test_sid \ | ||
| 126 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | ||
| 127 | test_ss test_ca test_engine test_evp test_ssl | ||
| 128 | |||
| 129 | test_evp: | ||
| 130 | ./$(EVPTEST) evptests.txt | ||
| 131 | |||
| 104 | test_des: | 132 | test_des: |
| 105 | #./$(DESTEST) | 133 | ./$(DESTEST) |
| 106 | 134 | ||
| 107 | test_idea: | 135 | test_idea: |
| 108 | ./$(IDEATEST) | 136 | ./$(IDEATEST) |
| @@ -117,6 +145,9 @@ test_mdc2: | |||
| 117 | test_md5: | 145 | test_md5: |
| 118 | ./$(MD5TEST) | 146 | ./$(MD5TEST) |
| 119 | 147 | ||
| 148 | test_md4: | ||
| 149 | ./$(MD4TEST) | ||
| 150 | |||
| 120 | test_hmac: | 151 | test_hmac: |
| 121 | ./$(HMACTEST) | 152 | ./$(HMACTEST) |
| 122 | 153 | ||
| @@ -157,6 +188,7 @@ test_x509: | |||
| 157 | 188 | ||
| 158 | test_rsa: | 189 | test_rsa: |
| 159 | @sh ./trsa 2>/dev/null | 190 | @sh ./trsa 2>/dev/null |
| 191 | ./$(RSATEST) | ||
| 160 | 192 | ||
| 161 | test_crl: | 193 | test_crl: |
| 162 | @sh ./tcrl 2>/dev/null | 194 | @sh ./tcrl 2>/dev/null |
| @@ -173,54 +205,72 @@ test_pkcs7: | |||
| 173 | @sh ./tpkcs7d 2>/dev/null | 205 | @sh ./tpkcs7d 2>/dev/null |
| 174 | 206 | ||
| 175 | test_bn: | 207 | test_bn: |
| 208 | @echo starting big number library test, could take a while... | ||
| 209 | @./$(BNTEST) >tmp.bntest | ||
| 210 | @echo quit >>tmp.bntest | ||
| 211 | @echo "running bc" | ||
| 212 | @<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"' | ||
| 176 | @echo 'test a^b%c implementations' | 213 | @echo 'test a^b%c implementations' |
| 177 | ./$(EXPTEST) | 214 | ./$(EXPTEST) |
| 178 | @echo starting big number library test, could take a while... | 215 | |
| 179 | @(./$(BNTEST)|bc) | awk '{ \ | 216 | test_ec: |
| 180 | if ($$0 != "0") {print "error"; exit(1); } \ | 217 | @echo 'test elliptic curves' |
| 181 | if (((NR+1)%64) == 0) print NR+1," tests done"; }' | 218 | ./$(ECTEST) |
| 182 | 219 | ||
| 183 | test_verify: | 220 | test_verify: |
| 184 | @echo "The following command should have some OK's and some failures" | 221 | @echo "The following command should have some OK's and some failures" |
| 185 | @echo "There are definitly a few expired certificates" | 222 | @echo "There are definitly a few expired certificates" |
| 186 | ../apps/ssleay verify -CApath ../certs ../certs/*.pem | 223 | ../apps/openssl verify -CApath ../certs ../certs/*.pem |
| 187 | 224 | ||
| 188 | test_dh: | 225 | test_dh: |
| 189 | @echo "Generate as set of DH parameters" | 226 | @echo "Generate a set of DH parameters" |
| 190 | ./$(DHTEST) | 227 | ./$(DHTEST) |
| 191 | 228 | ||
| 192 | test_dsa: | 229 | test_dsa: |
| 193 | @echo "Generate as set of DSA parameters" | 230 | @echo "Generate a set of DSA parameters" |
| 194 | ./$(DSATEST) | 231 | ./$(DSATEST) |
| 232 | ./$(DSATEST) -app2_1 | ||
| 195 | 233 | ||
| 196 | test_reqgen: | 234 | test_gen: |
| 197 | @echo "Generate and verify a certificate request" | 235 | @echo "Generate and verify a certificate request" |
| 198 | @sh ./testgen | 236 | @sh ./testgen |
| 199 | 237 | ||
| 200 | test_ss: | 238 | test_ss keyU.ss certU.ss certCA.ss: testss |
| 201 | @echo "Generate and certify a test certificate" | 239 | @echo "Generate and certify a test certificate" |
| 202 | @sh ./testss | 240 | @sh ./testss |
| 203 | 241 | ||
| 204 | test_ssl: | 242 | test_engine: |
| 243 | @echo "Manipulate the ENGINE structures" | ||
| 244 | ./$(ENGINETEST) | ||
| 245 | |||
| 246 | test_ssl: keyU.ss certU.ss certCA.ss | ||
| 205 | @echo "test SSL protocol" | 247 | @echo "test SSL protocol" |
| 206 | @sh ./testssl | 248 | @sh ./testssl keyU.ss certU.ss certCA.ss |
| 207 | 249 | ||
| 208 | test_ca: | 250 | test_ca: |
| 209 | @echo "Generate and certify a test certificate via the 'ca' program" | 251 | @if ../apps/openssl no-rsa; then \ |
| 210 | @sh ./testca | 252 | echo "skipping CA.sh test -- requires RSA"; \ |
| 253 | else \ | ||
| 254 | echo "Generate and certify a test certificate via the 'ca' program"; \ | ||
| 255 | sh ./testca; \ | ||
| 256 | fi | ||
| 257 | |||
| 258 | test_rd: #$(RDTEST) | ||
| 259 | # @echo "test Rijndael" | ||
| 260 | # ./$(RDTEST) | ||
| 211 | 261 | ||
| 212 | lint: | 262 | lint: |
| 213 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 263 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 214 | 264 | ||
| 215 | depend: | 265 | depend: |
| 216 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(SRC) | 266 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 217 | 267 | ||
| 218 | dclean: | 268 | dclean: |
| 219 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 269 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 220 | mv -f Makefile.new $(MAKEFILE) | 270 | mv -f Makefile.new $(MAKEFILE) |
| 221 | 271 | ||
| 222 | clean: | 272 | clean: |
| 223 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss log | 273 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log |
| 224 | 274 | ||
| 225 | $(DLIBSSL): | 275 | $(DLIBSSL): |
| 226 | (cd ../ssl; $(MAKE)) | 276 | (cd ../ssl; $(MAKE)) |
| @@ -228,9 +278,15 @@ $(DLIBSSL): | |||
| 228 | $(DLIBCRYPTO): | 278 | $(DLIBCRYPTO): |
| 229 | (cd ../crypto; $(MAKE)) | 279 | (cd ../crypto; $(MAKE)) |
| 230 | 280 | ||
| 281 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) | ||
| 282 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 283 | |||
| 231 | $(BNTEST): $(BNTEST).o $(DLIBCRYPTO) | 284 | $(BNTEST): $(BNTEST).o $(DLIBCRYPTO) |
| 232 | $(CC) -o $(BNTEST) $(CFLAGS) $(BNTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 285 | $(CC) -o $(BNTEST) $(CFLAGS) $(BNTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 233 | 286 | ||
| 287 | $(ECTEST): $(ECTEST).o $(DLIBCRYPTO) | ||
| 288 | $(CC) -o $(ECTEST) $(CFLAGS) $(ECTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 289 | |||
| 234 | $(EXPTEST): $(EXPTEST).o $(DLIBCRYPTO) | 290 | $(EXPTEST): $(EXPTEST).o $(DLIBCRYPTO) |
| 235 | $(CC) -o $(EXPTEST) $(CFLAGS) $(EXPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 291 | $(CC) -o $(EXPTEST) $(CFLAGS) $(EXPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 236 | 292 | ||
| @@ -252,6 +308,9 @@ $(RMDTEST): $(RMDTEST).o $(DLIBCRYPTO) | |||
| 252 | $(MDC2TEST): $(MDC2TEST).o $(DLIBCRYPTO) | 308 | $(MDC2TEST): $(MDC2TEST).o $(DLIBCRYPTO) |
| 253 | $(CC) -o $(MDC2TEST) $(CFLAGS) $(MDC2TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 309 | $(CC) -o $(MDC2TEST) $(CFLAGS) $(MDC2TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 254 | 310 | ||
| 311 | $(MD4TEST): $(MD4TEST).o $(DLIBCRYPTO) | ||
| 312 | $(CC) -o $(MD4TEST) $(CFLAGS) $(MD4TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 313 | |||
| 255 | $(MD5TEST): $(MD5TEST).o $(DLIBCRYPTO) | 314 | $(MD5TEST): $(MD5TEST).o $(DLIBCRYPTO) |
| 256 | $(CC) -o $(MD5TEST) $(CFLAGS) $(MD5TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 315 | $(CC) -o $(MD5TEST) $(CFLAGS) $(MD5TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 257 | 316 | ||
| @@ -289,6 +348,198 @@ $(METHTEST): $(METHTEST).o $(DLIBCRYPTO) | |||
| 289 | $(CC) -o $(METHTEST) $(CFLAGS) $(METHTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 348 | $(CC) -o $(METHTEST) $(CFLAGS) $(METHTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 290 | 349 | ||
| 291 | $(SSLTEST): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 350 | $(SSLTEST): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
| 292 | $(CC) -o $(SSLTEST) $(CFLAGS) $(SSLTEST).o $(PEX_LIBS) $(LIBSSL) $(LIBCRYPTO) $(EX_LIBS) | 351 | $(CC) -o $(SSLTEST) $(CFLAGS) $(SSLTEST).o $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) |
| 352 | |||
| 353 | $(ENGINETEST): $(ENGINETEST).o $(DLIBCRYPTO) | ||
| 354 | $(CC) -o $(ENGINETEST) $(CFLAGS) $(ENGINETEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 355 | |||
| 356 | $(EVPTEST): $(EVPTEST).o $(DLIBCRYPTO) | ||
| 357 | $(CC) -o $(EVPTEST) $(CFLAGS) $(EVPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 358 | |||
| 359 | #$(RDTEST).o: $(RDTEST).c | ||
| 360 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(RDTEST).c | ||
| 361 | |||
| 362 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) | ||
| 363 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 293 | 364 | ||
| 294 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 365 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 366 | |||
| 367 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h | ||
| 368 | bftest.o: ../include/openssl/opensslconf.h bftest.c | ||
| 369 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 370 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 371 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 372 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 373 | bntest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 374 | bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 375 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 376 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 377 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 378 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 379 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 380 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 381 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
| 382 | casttest.o: ../include/openssl/cast.h casttest.c | ||
| 383 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 384 | destest.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | ||
| 385 | destest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 386 | destest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 387 | destest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 388 | destest.o: ../include/openssl/ui_compat.h destest.c | ||
| 389 | dhtest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 390 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 391 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 392 | dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 393 | dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 394 | dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
| 395 | dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c | ||
| 396 | dsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 397 | dsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 398 | dsatest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 399 | dsatest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 400 | dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 401 | dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 402 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 403 | dsatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 404 | dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 405 | dsatest.o: ../include/openssl/ui.h dsatest.c | ||
| 406 | ectest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 407 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 408 | ectest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 409 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
| 410 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 411 | ectest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 412 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 413 | ectest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 414 | ectest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 415 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h ectest.c | ||
| 416 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 417 | enginetest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 418 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 419 | enginetest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 420 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 421 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 422 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 423 | enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 424 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 425 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 426 | enginetest.o: enginetest.c | ||
| 427 | evp_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 428 | evp_test.o: ../include/openssl/bn.h ../include/openssl/conf.h | ||
| 429 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 430 | evp_test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 431 | evp_test.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 432 | evp_test.o: ../include/openssl/evp.h ../include/openssl/lhash.h | ||
| 433 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 434 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 435 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 436 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 437 | evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 438 | evp_test.o: ../include/openssl/ui.h evp_test.c | ||
| 439 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 440 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 441 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 442 | exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 443 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 444 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 445 | exptest.o: ../include/openssl/symhacks.h exptest.c | ||
| 446 | hmactest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 447 | hmactest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 448 | hmactest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 449 | hmactest.o: ../include/openssl/hmac.h ../include/openssl/md5.h | ||
| 450 | hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 451 | hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 452 | hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 453 | hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h hmactest.c | ||
| 454 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h | ||
| 455 | ideatest.o: ideatest.c | ||
| 456 | md2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 457 | md2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 458 | md2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 459 | md2test.o: ../include/openssl/md2.h ../include/openssl/obj_mac.h | ||
| 460 | md2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 461 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 462 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 463 | md2test.o: ../include/openssl/symhacks.h md2test.c | ||
| 464 | md4test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 465 | md4test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 466 | md4test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 467 | md4test.o: ../include/openssl/md4.h ../include/openssl/obj_mac.h | ||
| 468 | md4test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 469 | md4test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 470 | md4test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 471 | md4test.o: ../include/openssl/symhacks.h md4test.c | ||
| 472 | md5test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 473 | md5test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 474 | md5test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 475 | md5test.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | ||
| 476 | md5test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 477 | md5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 478 | md5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 479 | md5test.o: ../include/openssl/symhacks.h md5test.c | ||
| 480 | mdc2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 481 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 482 | mdc2test.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 483 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 484 | mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 485 | mdc2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 486 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 487 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 488 | mdc2test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 489 | mdc2test.o: ../include/openssl/ui_compat.h mdc2test.c | ||
| 490 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c | ||
| 491 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | ||
| 492 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | ||
| 493 | rc5test.o: ../include/openssl/rc5.h rc5test.c | ||
| 494 | rmdtest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 495 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 496 | rmdtest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 497 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 498 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 499 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/ripemd.h | ||
| 500 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 501 | rmdtest.o: ../include/openssl/symhacks.h rmdtest.c | ||
| 502 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 503 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 504 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 505 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 506 | rsa_test.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 507 | rsa_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 508 | rsa_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 509 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 510 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 511 | rsa_test.o: ../include/openssl/ui.h rsa_test.c | ||
| 512 | sha1test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 513 | sha1test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 514 | sha1test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 515 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 516 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 517 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 518 | sha1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 519 | sha1test.o: ../include/openssl/symhacks.h sha1test.c | ||
| 520 | shatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 521 | shatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 522 | shatest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 523 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 524 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 525 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 526 | shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 527 | shatest.o: ../include/openssl/symhacks.h shatest.c | ||
| 528 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 529 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 530 | ssltest.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 531 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 532 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 533 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 534 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 535 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 536 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 537 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 538 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 539 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 540 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 541 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 542 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 543 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 544 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 545 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssltest.c | ||
diff --git a/src/lib/libssl/src/tools/Makefile.ssl b/src/lib/libssl/src/tools/Makefile.ssl index 537e97d268..b46ea44f6a 100644 --- a/src/lib/libssl/src/tools/Makefile.ssl +++ b/src/lib/libssl/src/tools/Makefile.ssl | |||
| @@ -5,34 +5,42 @@ | |||
| 5 | DIR= tools | 5 | DIR= tools |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I$(TOP) -I../../include |
| 9 | CFLAG=-g | 9 | CFLAG=-g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
| 11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
| 12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 14 | 17 | ||
| 15 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 16 | 19 | ||
| 17 | GENERAL=Makefile.ssl | 20 | GENERAL=Makefile.ssl |
| 18 | TEST= | 21 | TEST= |
| 19 | APPS= c_hash c_info c_issuer c_name c_rehash | 22 | APPS= c_rehash |
| 23 | MISC_APPS= c_hash c_info c_issuer c_name | ||
| 20 | 24 | ||
| 21 | all: | 25 | all: |
| 22 | 26 | ||
| 23 | install: | 27 | install: |
| 24 | @for i in $(APPS) ; \ | 28 | @for i in $(APPS) ; \ |
| 25 | do \ | 29 | do \ |
| 26 | (cp $$i $(INSTALLTOP)/bin/$$i; \ | 30 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \ |
| 27 | chmod 755 $(INSTALLTOP)/bin/$$i ); \ | 31 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \ |
| 32 | done; | ||
| 33 | @for i in $(MISC_APPS) ; \ | ||
| 34 | do \ | ||
| 35 | (cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i; \ | ||
| 36 | chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \ | ||
| 28 | done; | 37 | done; |
| 29 | 38 | ||
| 30 | files: | 39 | files: |
| 31 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 40 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 32 | 41 | ||
| 33 | links: | 42 | links: |
| 34 | /bin/rm -f Makefile | 43 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 35 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 36 | 44 | ||
| 37 | lint: | 45 | lint: |
| 38 | 46 | ||
| @@ -43,11 +51,11 @@ errors: | |||
| 43 | depend: | 51 | depend: |
| 44 | 52 | ||
| 45 | dclean: | 53 | dclean: |
| 46 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 54 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 47 | mv -f Makefile.new $(MAKEFILE) | 55 | mv -f Makefile.new $(MAKEFILE) |
| 48 | 56 | ||
| 49 | clean: | 57 | clean: |
| 50 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 58 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 51 | 59 | ||
| 52 | errors: | 60 | errors: |
| 53 | 61 | ||
diff --git a/src/lib/libssl/src/util/pl/Mingw32f.pl b/src/lib/libssl/src/util/pl/Mingw32f.pl index a53c537646..44f5673d7a 100644 --- a/src/lib/libssl/src/util/pl/Mingw32f.pl +++ b/src/lib/libssl/src/util/pl/Mingw32f.pl | |||
| @@ -11,9 +11,9 @@ $rm='del'; | |||
| 11 | 11 | ||
| 12 | $cc='gcc'; | 12 | $cc='gcc'; |
| 13 | if ($debug) | 13 | if ($debug) |
| 14 | { $cflags="-g2 -ggdb"; } | 14 | { $cflags="-g2 -ggdb -DDSO_WIN32"; } |
| 15 | else | 15 | else |
| 16 | { $cflags="-O3 -fomit-frame-pointer"; } | 16 | { $cflags="-O3 -fomit-frame-pointer -DDSO_WIN32"; } |
| 17 | 17 | ||
| 18 | $obj='.o'; | 18 | $obj='.o'; |
| 19 | $ofile='-o '; | 19 | $ofile='-o '; |
diff --git a/src/lib/libssl/test/Makefile.ssl b/src/lib/libssl/test/Makefile.ssl index b3de76751e..8a06e69188 100644 --- a/src/lib/libssl/test/Makefile.ssl +++ b/src/lib/libssl/test/Makefile.ssl | |||
| @@ -5,19 +5,26 @@ | |||
| 5 | DIR= test | 5 | DIR= test |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I../include | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG= -g | 9 | CFLAG= -g |
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 10 | INSTALLTOP= /usr/local/ssl | 12 | INSTALLTOP= /usr/local/ssl |
| 11 | MAKEFILE= Makefile.ssl | 13 | MAKEFILE= Makefile.ssl |
| 12 | MAKE= make -f $(MAKEFILE) | 14 | MAKE= make -f $(MAKEFILE) |
| 13 | MAKEDEPEND= makedepend -f$(MAKEFILE) | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 17 | PERL= perl | ||
| 14 | 18 | ||
| 15 | PEX_LIBS= | 19 | PEX_LIBS= |
| 16 | EX_LIBS= #-lnsl -lsocket | 20 | EX_LIBS= #-lnsl -lsocket |
| 17 | 21 | ||
| 18 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
| 19 | 23 | ||
| 20 | GENERAL=Makefile.ssl | 24 | GENERAL=Makefile.ssl maketests.com \ |
| 25 | tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \ | ||
| 26 | tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \ | ||
| 27 | testca.com VMSca-response.1 VMSca-response.2 | ||
| 21 | 28 | ||
| 22 | DLIBCRYPTO= ../libcrypto.a | 29 | DLIBCRYPTO= ../libcrypto.a |
| 23 | DLIBSSL= ../libssl.a | 30 | DLIBSSL= ../libssl.a |
| @@ -25,6 +32,7 @@ LIBCRYPTO= -L.. -lcrypto | |||
| 25 | LIBSSL= -L.. -lssl | 32 | LIBSSL= -L.. -lssl |
| 26 | 33 | ||
| 27 | BNTEST= bntest | 34 | BNTEST= bntest |
| 35 | ECTEST= ectest | ||
| 28 | EXPTEST= exptest | 36 | EXPTEST= exptest |
| 29 | IDEATEST= ideatest | 37 | IDEATEST= ideatest |
| 30 | SHATEST= shatest | 38 | SHATEST= shatest |
| @@ -32,6 +40,7 @@ SHA1TEST= sha1test | |||
| 32 | MDC2TEST= mdc2test | 40 | MDC2TEST= mdc2test |
| 33 | RMDTEST= rmdtest | 41 | RMDTEST= rmdtest |
| 34 | MD2TEST= md2test | 42 | MD2TEST= md2test |
| 43 | MD4TEST= md4test | ||
| 35 | MD5TEST= md5test | 44 | MD5TEST= md5test |
| 36 | HMACTEST= hmactest | 45 | HMACTEST= hmactest |
| 37 | RC2TEST= rc2test | 46 | RC2TEST= rc2test |
| @@ -45,25 +54,35 @@ DHTEST= dhtest | |||
| 45 | DSATEST= dsatest | 54 | DSATEST= dsatest |
| 46 | METHTEST= methtest | 55 | METHTEST= methtest |
| 47 | SSLTEST= ssltest | 56 | SSLTEST= ssltest |
| 57 | RSATEST= rsa_test | ||
| 58 | ENGINETEST= enginetest | ||
| 59 | EVPTEST= evp_test | ||
| 48 | 60 | ||
| 49 | EXE= $(BNTEST) $(IDEATEST) $(MD2TEST) $(MD5TEST) $(HMACTEST) \ | 61 | TESTS= alltests |
| 62 | |||
| 63 | EXE= $(BNTEST) $(ECTEST) $(IDEATEST) $(MD2TEST) $(MD4TEST) $(MD5TEST) $(HMACTEST) \ | ||
| 50 | $(RC2TEST) $(RC4TEST) $(RC5TEST) \ | 64 | $(RC2TEST) $(RC4TEST) $(RC5TEST) \ |
| 51 | $(DESTEST) $(SHATEST) $(SHA1TEST) $(MDC2TEST) $(RMDTEST) \ | 65 | $(DESTEST) $(SHATEST) $(SHA1TEST) $(MDC2TEST) $(RMDTEST) \ |
| 52 | $(RANDTEST) $(DHTEST) \ | 66 | $(RANDTEST) $(DHTEST) $(ENGINETEST) \ |
| 53 | $(BFTEST) $(CASTTEST) $(SSLTEST) $(EXPTEST) $(DSATEST) | 67 | $(BFTEST) $(CASTTEST) $(SSLTEST) $(EXPTEST) $(DSATEST) $(RSATEST) \ |
| 68 | $(EVPTEST) | ||
| 54 | 69 | ||
| 55 | # $(METHTEST) | 70 | # $(METHTEST) |
| 56 | 71 | ||
| 57 | OBJ= $(BNTEST).o $(IDEATEST).o $(MD2TEST).o $(MD5TEST).o $(HMACTEST).o \ | 72 | OBJ= $(BNTEST).o $(ECTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ |
| 73 | $(HMACTEST).o \ | ||
| 58 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 74 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
| 59 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(MDC2TEST).o $(RMDTEST).o \ | 75 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(MDC2TEST).o $(RMDTEST).o \ |
| 60 | $(RANDTEST).o $(DHTEST).o $(CASTTEST).o \ | 76 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
| 61 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o | 77 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
| 62 | SRC= $(BNTEST).c $(IDEATEST).c $(MD2TEST).c $(MD5TEST).c $(HMACTEST).c \ | 78 | $(EVPTEST).o |
| 79 | SRC= $(BNTEST).c $(ECTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | ||
| 80 | $(HMACTEST).c \ | ||
| 63 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 81 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
| 64 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ | 82 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
| 65 | $(RANDTEST).c $(DHTEST).c $(CASTTEST).c \ | 83 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
| 66 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c | 84 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
| 85 | $(EVPTEST).c | ||
| 67 | 86 | ||
| 68 | EXHEADER= | 87 | EXHEADER= |
| 69 | HEADER= $(EXHEADER) | 88 | HEADER= $(EXHEADER) |
| @@ -71,18 +90,17 @@ HEADER= $(EXHEADER) | |||
| 71 | ALL= $(GENERAL) $(SRC) $(HEADER) | 90 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 72 | 91 | ||
| 73 | top: | 92 | top: |
| 74 | (cd ..; $(MAKE) DIRS=$(DIR) all) | 93 | (cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all) |
| 75 | 94 | ||
| 76 | all: exe | 95 | all: exe |
| 77 | 96 | ||
| 78 | exe: $(EXE) | 97 | exe: $(EXE) |
| 79 | 98 | ||
| 80 | files: | 99 | files: |
| 81 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 82 | 101 | ||
| 83 | links: | 102 | links: |
| 84 | /bin/rm -f Makefile | 103 | @@$(TOP)/util/point.sh Makefile.ssl Makefile |
| 85 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | ||
| 86 | 104 | ||
| 87 | errors: | 105 | errors: |
| 88 | 106 | ||
| @@ -91,18 +109,28 @@ install: | |||
| 91 | tags: | 109 | tags: |
| 92 | ctags $(SRC) | 110 | ctags $(SRC) |
| 93 | 111 | ||
| 94 | tests: exe apps \ | 112 | tests: exe apps $(TESTS) |
| 95 | test_des test_idea test_sha test_md5 test_hmac test_md2 test_mdc2 \ | ||
| 96 | test_rc2 test_rc4 test_rc5 test_bf test_cast \ | ||
| 97 | test_rand test_enc test_x509 test_rsa test_crl test_sid test_req \ | ||
| 98 | test_pkcs7 test_bn test_verify test_dh test_dsa test_reqgen \ | ||
| 99 | test_ss test_ssl test_ca | ||
| 100 | 113 | ||
| 101 | apps: | 114 | apps: |
| 102 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) | 115 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) |
| 103 | 116 | ||
| 117 | alltests: | ||
| 118 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ | ||
| 119 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | ||
| 120 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) | ||
| 121 | alltests.chooser: \ | ||
| 122 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | ||
| 123 | test_md2 test_mdc2 \ | ||
| 124 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_rd \ | ||
| 125 | test_rand test_bn test_ec test_enc test_x509 test_rsa test_crl test_sid \ | ||
| 126 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | ||
| 127 | test_ss test_ca test_engine test_evp test_ssl | ||
| 128 | |||
| 129 | test_evp: | ||
| 130 | ./$(EVPTEST) evptests.txt | ||
| 131 | |||
| 104 | test_des: | 132 | test_des: |
| 105 | #./$(DESTEST) | 133 | ./$(DESTEST) |
| 106 | 134 | ||
| 107 | test_idea: | 135 | test_idea: |
| 108 | ./$(IDEATEST) | 136 | ./$(IDEATEST) |
| @@ -117,6 +145,9 @@ test_mdc2: | |||
| 117 | test_md5: | 145 | test_md5: |
| 118 | ./$(MD5TEST) | 146 | ./$(MD5TEST) |
| 119 | 147 | ||
| 148 | test_md4: | ||
| 149 | ./$(MD4TEST) | ||
| 150 | |||
| 120 | test_hmac: | 151 | test_hmac: |
| 121 | ./$(HMACTEST) | 152 | ./$(HMACTEST) |
| 122 | 153 | ||
| @@ -157,6 +188,7 @@ test_x509: | |||
| 157 | 188 | ||
| 158 | test_rsa: | 189 | test_rsa: |
| 159 | @sh ./trsa 2>/dev/null | 190 | @sh ./trsa 2>/dev/null |
| 191 | ./$(RSATEST) | ||
| 160 | 192 | ||
| 161 | test_crl: | 193 | test_crl: |
| 162 | @sh ./tcrl 2>/dev/null | 194 | @sh ./tcrl 2>/dev/null |
| @@ -173,54 +205,72 @@ test_pkcs7: | |||
| 173 | @sh ./tpkcs7d 2>/dev/null | 205 | @sh ./tpkcs7d 2>/dev/null |
| 174 | 206 | ||
| 175 | test_bn: | 207 | test_bn: |
| 208 | @echo starting big number library test, could take a while... | ||
| 209 | @./$(BNTEST) >tmp.bntest | ||
| 210 | @echo quit >>tmp.bntest | ||
| 211 | @echo "running bc" | ||
| 212 | @<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"' | ||
| 176 | @echo 'test a^b%c implementations' | 213 | @echo 'test a^b%c implementations' |
| 177 | ./$(EXPTEST) | 214 | ./$(EXPTEST) |
| 178 | @echo starting big number library test, could take a while... | 215 | |
| 179 | @(./$(BNTEST)|bc) | awk '{ \ | 216 | test_ec: |
| 180 | if ($$0 != "0") {print "error"; exit(1); } \ | 217 | @echo 'test elliptic curves' |
| 181 | if (((NR+1)%64) == 0) print NR+1," tests done"; }' | 218 | ./$(ECTEST) |
| 182 | 219 | ||
| 183 | test_verify: | 220 | test_verify: |
| 184 | @echo "The following command should have some OK's and some failures" | 221 | @echo "The following command should have some OK's and some failures" |
| 185 | @echo "There are definitly a few expired certificates" | 222 | @echo "There are definitly a few expired certificates" |
| 186 | ../apps/ssleay verify -CApath ../certs ../certs/*.pem | 223 | ../apps/openssl verify -CApath ../certs ../certs/*.pem |
| 187 | 224 | ||
| 188 | test_dh: | 225 | test_dh: |
| 189 | @echo "Generate as set of DH parameters" | 226 | @echo "Generate a set of DH parameters" |
| 190 | ./$(DHTEST) | 227 | ./$(DHTEST) |
| 191 | 228 | ||
| 192 | test_dsa: | 229 | test_dsa: |
| 193 | @echo "Generate as set of DSA parameters" | 230 | @echo "Generate a set of DSA parameters" |
| 194 | ./$(DSATEST) | 231 | ./$(DSATEST) |
| 232 | ./$(DSATEST) -app2_1 | ||
| 195 | 233 | ||
| 196 | test_reqgen: | 234 | test_gen: |
| 197 | @echo "Generate and verify a certificate request" | 235 | @echo "Generate and verify a certificate request" |
| 198 | @sh ./testgen | 236 | @sh ./testgen |
| 199 | 237 | ||
| 200 | test_ss: | 238 | test_ss keyU.ss certU.ss certCA.ss: testss |
| 201 | @echo "Generate and certify a test certificate" | 239 | @echo "Generate and certify a test certificate" |
| 202 | @sh ./testss | 240 | @sh ./testss |
| 203 | 241 | ||
| 204 | test_ssl: | 242 | test_engine: |
| 243 | @echo "Manipulate the ENGINE structures" | ||
| 244 | ./$(ENGINETEST) | ||
| 245 | |||
| 246 | test_ssl: keyU.ss certU.ss certCA.ss | ||
| 205 | @echo "test SSL protocol" | 247 | @echo "test SSL protocol" |
| 206 | @sh ./testssl | 248 | @sh ./testssl keyU.ss certU.ss certCA.ss |
| 207 | 249 | ||
| 208 | test_ca: | 250 | test_ca: |
| 209 | @echo "Generate and certify a test certificate via the 'ca' program" | 251 | @if ../apps/openssl no-rsa; then \ |
| 210 | @sh ./testca | 252 | echo "skipping CA.sh test -- requires RSA"; \ |
| 253 | else \ | ||
| 254 | echo "Generate and certify a test certificate via the 'ca' program"; \ | ||
| 255 | sh ./testca; \ | ||
| 256 | fi | ||
| 257 | |||
| 258 | test_rd: #$(RDTEST) | ||
| 259 | # @echo "test Rijndael" | ||
| 260 | # ./$(RDTEST) | ||
| 211 | 261 | ||
| 212 | lint: | 262 | lint: |
| 213 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 263 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 214 | 264 | ||
| 215 | depend: | 265 | depend: |
| 216 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(SRC) | 266 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 217 | 267 | ||
| 218 | dclean: | 268 | dclean: |
| 219 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 269 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 220 | mv -f Makefile.new $(MAKEFILE) | 270 | mv -f Makefile.new $(MAKEFILE) |
| 221 | 271 | ||
| 222 | clean: | 272 | clean: |
| 223 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss log | 273 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log |
| 224 | 274 | ||
| 225 | $(DLIBSSL): | 275 | $(DLIBSSL): |
| 226 | (cd ../ssl; $(MAKE)) | 276 | (cd ../ssl; $(MAKE)) |
| @@ -228,9 +278,15 @@ $(DLIBSSL): | |||
| 228 | $(DLIBCRYPTO): | 278 | $(DLIBCRYPTO): |
| 229 | (cd ../crypto; $(MAKE)) | 279 | (cd ../crypto; $(MAKE)) |
| 230 | 280 | ||
| 281 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) | ||
| 282 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 283 | |||
| 231 | $(BNTEST): $(BNTEST).o $(DLIBCRYPTO) | 284 | $(BNTEST): $(BNTEST).o $(DLIBCRYPTO) |
| 232 | $(CC) -o $(BNTEST) $(CFLAGS) $(BNTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 285 | $(CC) -o $(BNTEST) $(CFLAGS) $(BNTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 233 | 286 | ||
| 287 | $(ECTEST): $(ECTEST).o $(DLIBCRYPTO) | ||
| 288 | $(CC) -o $(ECTEST) $(CFLAGS) $(ECTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 289 | |||
| 234 | $(EXPTEST): $(EXPTEST).o $(DLIBCRYPTO) | 290 | $(EXPTEST): $(EXPTEST).o $(DLIBCRYPTO) |
| 235 | $(CC) -o $(EXPTEST) $(CFLAGS) $(EXPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 291 | $(CC) -o $(EXPTEST) $(CFLAGS) $(EXPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 236 | 292 | ||
| @@ -252,6 +308,9 @@ $(RMDTEST): $(RMDTEST).o $(DLIBCRYPTO) | |||
| 252 | $(MDC2TEST): $(MDC2TEST).o $(DLIBCRYPTO) | 308 | $(MDC2TEST): $(MDC2TEST).o $(DLIBCRYPTO) |
| 253 | $(CC) -o $(MDC2TEST) $(CFLAGS) $(MDC2TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 309 | $(CC) -o $(MDC2TEST) $(CFLAGS) $(MDC2TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 254 | 310 | ||
| 311 | $(MD4TEST): $(MD4TEST).o $(DLIBCRYPTO) | ||
| 312 | $(CC) -o $(MD4TEST) $(CFLAGS) $(MD4TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 313 | |||
| 255 | $(MD5TEST): $(MD5TEST).o $(DLIBCRYPTO) | 314 | $(MD5TEST): $(MD5TEST).o $(DLIBCRYPTO) |
| 256 | $(CC) -o $(MD5TEST) $(CFLAGS) $(MD5TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 315 | $(CC) -o $(MD5TEST) $(CFLAGS) $(MD5TEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 257 | 316 | ||
| @@ -289,6 +348,198 @@ $(METHTEST): $(METHTEST).o $(DLIBCRYPTO) | |||
| 289 | $(CC) -o $(METHTEST) $(CFLAGS) $(METHTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 348 | $(CC) -o $(METHTEST) $(CFLAGS) $(METHTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 290 | 349 | ||
| 291 | $(SSLTEST): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 350 | $(SSLTEST): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
| 292 | $(CC) -o $(SSLTEST) $(CFLAGS) $(SSLTEST).o $(PEX_LIBS) $(LIBSSL) $(LIBCRYPTO) $(EX_LIBS) | 351 | $(CC) -o $(SSLTEST) $(CFLAGS) $(SSLTEST).o $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) |
| 352 | |||
| 353 | $(ENGINETEST): $(ENGINETEST).o $(DLIBCRYPTO) | ||
| 354 | $(CC) -o $(ENGINETEST) $(CFLAGS) $(ENGINETEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 355 | |||
| 356 | $(EVPTEST): $(EVPTEST).o $(DLIBCRYPTO) | ||
| 357 | $(CC) -o $(EVPTEST) $(CFLAGS) $(EVPTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 358 | |||
| 359 | #$(RDTEST).o: $(RDTEST).c | ||
| 360 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(RDTEST).c | ||
| 361 | |||
| 362 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) | ||
| 363 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 293 | 364 | ||
| 294 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 365 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 366 | |||
| 367 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h | ||
| 368 | bftest.o: ../include/openssl/opensslconf.h bftest.c | ||
| 369 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 370 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 371 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 372 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 373 | bntest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 374 | bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 375 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 376 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 377 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 378 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 379 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 380 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 381 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
| 382 | casttest.o: ../include/openssl/cast.h casttest.c | ||
| 383 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 384 | destest.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | ||
| 385 | destest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 386 | destest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 387 | destest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 388 | destest.o: ../include/openssl/ui_compat.h destest.c | ||
| 389 | dhtest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 390 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 391 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 392 | dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 393 | dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 394 | dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
| 395 | dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c | ||
| 396 | dsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 397 | dsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 398 | dsatest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 399 | dsatest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 400 | dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 401 | dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 402 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 403 | dsatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 404 | dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 405 | dsatest.o: ../include/openssl/ui.h dsatest.c | ||
| 406 | ectest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 407 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 408 | ectest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 409 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
| 410 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 411 | ectest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 412 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 413 | ectest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 414 | ectest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 415 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h ectest.c | ||
| 416 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 417 | enginetest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 418 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 419 | enginetest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 420 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 421 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 422 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 423 | enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 424 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 425 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 426 | enginetest.o: enginetest.c | ||
| 427 | evp_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 428 | evp_test.o: ../include/openssl/bn.h ../include/openssl/conf.h | ||
| 429 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
| 430 | evp_test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 431 | evp_test.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 432 | evp_test.o: ../include/openssl/evp.h ../include/openssl/lhash.h | ||
| 433 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 434 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 435 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 436 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 437 | evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 438 | evp_test.o: ../include/openssl/ui.h evp_test.c | ||
| 439 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 440 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 441 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 442 | exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 443 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 444 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 445 | exptest.o: ../include/openssl/symhacks.h exptest.c | ||
| 446 | hmactest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 447 | hmactest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 448 | hmactest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 449 | hmactest.o: ../include/openssl/hmac.h ../include/openssl/md5.h | ||
| 450 | hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 451 | hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 452 | hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 453 | hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h hmactest.c | ||
| 454 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h | ||
| 455 | ideatest.o: ideatest.c | ||
| 456 | md2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 457 | md2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 458 | md2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 459 | md2test.o: ../include/openssl/md2.h ../include/openssl/obj_mac.h | ||
| 460 | md2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 461 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 462 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 463 | md2test.o: ../include/openssl/symhacks.h md2test.c | ||
| 464 | md4test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 465 | md4test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 466 | md4test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 467 | md4test.o: ../include/openssl/md4.h ../include/openssl/obj_mac.h | ||
| 468 | md4test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 469 | md4test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 470 | md4test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 471 | md4test.o: ../include/openssl/symhacks.h md4test.c | ||
| 472 | md5test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 473 | md5test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 474 | md5test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 475 | md5test.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | ||
| 476 | md5test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 477 | md5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 478 | md5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 479 | md5test.o: ../include/openssl/symhacks.h md5test.c | ||
| 480 | mdc2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 481 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 482 | mdc2test.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 483 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 484 | mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 485 | mdc2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 486 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 487 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 488 | mdc2test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 489 | mdc2test.o: ../include/openssl/ui_compat.h mdc2test.c | ||
| 490 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c | ||
| 491 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | ||
| 492 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | ||
| 493 | rc5test.o: ../include/openssl/rc5.h rc5test.c | ||
| 494 | rmdtest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 495 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 496 | rmdtest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 497 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 498 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 499 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/ripemd.h | ||
| 500 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 501 | rmdtest.o: ../include/openssl/symhacks.h rmdtest.c | ||
| 502 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 503 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 504 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 505 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 506 | rsa_test.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 507 | rsa_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 508 | rsa_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 509 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 510 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 511 | rsa_test.o: ../include/openssl/ui.h rsa_test.c | ||
| 512 | sha1test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 513 | sha1test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 514 | sha1test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 515 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 516 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 517 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 518 | sha1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 519 | sha1test.o: ../include/openssl/symhacks.h sha1test.c | ||
| 520 | shatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 521 | shatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 522 | shatest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | ||
| 523 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 524 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 525 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 526 | shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 527 | shatest.o: ../include/openssl/symhacks.h shatest.c | ||
| 528 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 529 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
| 530 | ssltest.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
| 531 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 532 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 533 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 534 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
| 535 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 536 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 537 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
| 538 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
| 539 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 540 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 541 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
| 542 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 543 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 544 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 545 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssltest.c | ||
