aboutsummaryrefslogtreecommitdiff
path: root/crypto/crypto.def (follow)
Commit message (Collapse)AuthorAgeFilesLines
* implement support for hiding symbols in libcryptokinichiro2016-12-261-3743/+0
| | | | | | - delete crypto.def and generate it from Symbols.list - remove BIO_s_log since bss_log.c is not included on Windows - add Windows specific symbols by crypto/crypto_win.list
* Fix for tests on Visual Studiokinichiro2016-11-061-0/+10
| | | | | | - always link static ssl library for tests - copy DLLs for openssl.exe after building tests - add functions to crypto.def
* export ASN1_time_parseBrent Cook2016-11-061-0/+1
|
* remove more KRB5Brent Cook2016-11-061-11/+0
|
* remove defined symbolsBrent Cook2016-11-061-46/+0
|
* export DLLs functions for MSVC with CMakekinichiro2016-10-301-0/+3789
- Add 3 DEF files to export functions from Windows DLLs - Add gettimeofday to crypto/crypto.def (*1) - Remove gai_strerrorA from tls/tls.def (*1) - Fix CMakeLists.txt to use DEF files as PRIVATE - Change DLL import library file name since it duplicates with static library - Ignore compiler warning C4267, and Edit CMAKE_C_FLAGS not to overwrite it (*1) - Add USE_SHARED option to build openssl.exe with shared libraries (*1) (*1) recommended by @mcnameej