source:
freewrt/package/openssl/patches/999-cfg-opts.patch@
ef25365
| Last change on this file since ef25365 was ef25365, checked in by , 18 years ago | |
|---|---|
|
|
| File size: 1.6 KB | |
-
openssl-0.9.8h
diff -Nur openssl-0.9.8h.orig/apps/ocsp.c openssl-0.9.8h/apps/ocsp.c
old new 55 55 * Hudson (tjh@cryptsoft.com). 56 56 * 57 57 */ 58 #ifndef OPENSSL_NO_OCSP59 58 #define USE_SOCKETS 60 59 #include <stdio.h> 61 60 #include <stdlib.h> … … 65 64 #include <openssl/ssl.h> 66 65 #include <openssl/err.h> 67 66 67 #ifndef OPENSSL_NO_OCSP 68 68 69 /* Maximum leeway in validity period: default 5 minutes */ 69 70 #define MAX_VALIDITY_PERIOD (5 * 60) 70 71 -
apps/progs.pl
diff -Nur openssl-0.9.8h.orig/apps/progs.pl openssl-0.9.8h/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 elsif ( ($_ =~ /^cms$/)) 47 49 { print "#ifndef OPENSSL_NO_CMS\n${str}#endif\n"; } 48 50 else -
crypto/x509v3/v3_ocsp.c
diff -Nur openssl-0.9.8h.orig/crypto/x509v3/v3_ocsp.c openssl-0.9.8h/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.
