Overview
Comment: | minor chnges to allow compilation with BSAFE or OpenSSL |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b26fff0537ed71e24091ada4715bfcc1 |
User & Date: | aborr on 2000-05-04 20:21:06 |
Other Links: | manifest | tags |
Context
2000-05-04
| ||
20:40 | added code to allow compilation with either OpenSSL or BSAFE check-in: cc4e8de2d7 user: aborr tags: trunk, scriptics-sc-2-0-b9 | |
20:21 | minor chnges to allow compilation with BSAFE or OpenSSL check-in: b26fff0537 user: aborr tags: trunk | |
20:12 | removed refs to SSL_CFLAGS check-in: eb88a05f81 user: aborr tags: trunk | |
Changes
Modified tlsInt.h from [c3268ac565] to [d57265c137].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | /* * Copyright (C) 1997-2000 Matt Newman <[email protected]> * |
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | + + + + | #define NO_RC2 #define NO_RC4 #define NO_RC5 #define NO_RSA #define NO_SSL2 #endif #ifdef BSAFE #include <ssl.h> #else #include <openssl/ssl.h> #endif #ifdef TCL_STORAGE_CLASS # undef TCL_STORAGE_CLASS #endif #ifdef BUILD_tls # define TCL_STORAGE_CLASS DLLEXPORT #else |
︙ |