Changes between Version 3 and Version 4 of Getting-Started/Installing-OpenSSL-Windows
- Timestamp:
- Apr 15, 2013 8:30:21 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/Installing-OpenSSL-Windows
v3 v4 10 10 3. Add OpenSSL include path to Visual Studio includes search directory. Make sure that OpenSSL header files can be accessed from the program with #include <openssl/ssl.h> construct. 11 11 4. Add OpenSSL library path to Visual Studio library search directory. Make sure the following libraries are accessible: 12 * For Debug build: libeay32MTd and ssleay32MTd. 13 * For Release build: libeay32MT and ssleay32MT. 12 * libeay32 and ssleay32 (it is recommended to use the same run-time option for PJSIP and the libraries). So, if you compile PJSIP with Multithreaded Debug (/MTd), you may need to use the same run-time option when compiling the library. Please consult the library's doc for more details. 14 13 15 14 Then to enable TLS transport support in PJSIP, please check [wiki:TLS configuring PJSIP with TLS].