source:
freewrt/package/openssl/patches/999-cfg-opts.patch@
de7e642
| Last change on this file since de7e642 was de7e642, checked in by , 19 years ago | |
|---|---|
|
|
| File size: 1.6 KB | |
-
openssl-0.9.8d
diff -urN openssl-0.9.8d.orig/apps/ocsp.c openssl-0.9.8d/apps/ocsp.c
old new 55 55 * Hudson (tjh@cryptsoft.com). 56 56 * 57 57 */ 58 #ifndef OPENSSL_NO_OCSP59 58 60 59 #include <stdio.h> 61 60 #include <string.h> … … 66 65 #include <openssl/ssl.h> 67 66 #include <openssl/bn.h> 68 67 68 #ifndef OPENSSL_NO_OCSP 69 69 70 /* Maximum leeway in validity period: default 5 minutes */ 70 71 #define MAX_VALIDITY_PERIOD (5 * 60) 71 72 -
apps/progs.pl
diff -urN openssl-0.9.8d.orig/apps/progs.pl openssl-0.9.8d/apps/progs.pl
old new 43 43 { print "#ifndef OPENSSL_NO_DH\n${str}#endif\n"; } 44 44 elsif ( ($_ =~ /^pkcs12$/)) 45 45 { print "#if !defined(OPENSSL_NO_DES) && !defined(OPENSSL_NO_SHA1)\n${str}#endif\n"; } 46 elsif ( ($_ =~ /^ocsp$/)) 47 { print "#ifndef OPENSSL_NO_OCSP\n${str}#endif\n"; } 46 48 else 47 49 { print $str; } 48 50 } -
crypto/x509v3/v3_ocsp.c
diff -urN openssl-0.9.8d.orig/crypto/x509v3/v3_ocsp.c openssl-0.9.8d/crypto/x509v3/v3_ocsp.c
old new 56 56 * 57 57 */ 58 58 59 #ifndef OPENSSL_NO_OCSP60 61 59 #include <stdio.h> 62 60 #include "cryptlib.h" 63 61 #include <openssl/conf.h> … … 65 63 #include <openssl/ocsp.h> 66 64 #include <openssl/x509v3.h> 67 65 66 #ifndef OPENSSL_NO_OCSP 67 68 68 /* OCSP extensions and a couple of CRL entry extensions 69 69 */ 70 70
Note:
See TracBrowser
for help on using the repository browser.
