diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2022-11-23 20:48:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-23 20:48:25 +0100 |
| commit | 0799a7db12dc67165b2ca12125c8f747011a278c (patch) | |
| tree | 438520b2255aafc1a018adbc317497ded36efa29 | |
| parent | eb5d5347595c088dd9927151206f75a0084ad5c0 (diff) | |
| download | wiki-0799a7db12dc67165b2ca12125c8f747011a278c.tar.gz wiki-0799a7db12dc67165b2ca12125c8f747011a278c.tar.bz2 wiki-0799a7db12dc67165b2ca12125c8f747011a278c.zip | |
Revert "Revert "Update windows-core-installation for OpenSSL 3 (#820)" (#826)" (#836)
This reverts commit 739a72992d42373c38d75d3f97890ba3080eced2.
| -rw-r--r-- | docs/windows-core-installation.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/windows-core-installation.md b/docs/windows-core-installation.md index 4cf0879..ace3dc0 100644 --- a/docs/windows-core-installation.md +++ b/docs/windows-core-installation.md @@ -122,8 +122,9 @@ authserver.pbd worldserver.exe worldserver.pdb libmysql.dll -libeay32.dll / libcrypto-1_1.dll / libcrypto-1_1-x64.dll -ssleay32.dll / libssl-1_1.dll / libssl-1_1-x64.dll +libeay32.dll / libcrypto-1_1.dll / libcrypto-1_1-x64.dll (Only for OpenSSL 1.1.x and below) +ssleay32.dll / libssl-1_1.dll / libssl-1_1-x64.dll (Only for OpenSSL 1.1.x and below) +legacy.dll (Only for OpenSSL 3.0 and later) ``` In the **configs** folder you should find: @@ -133,18 +134,18 @@ authserver.conf.dist worldserver.conf.dist ``` -There are three DLL files that need to be manually added to this folder, and you need to copy them from the following installation/bin directories: +There are two/three DLL files that need to be manually added to this folder, and you need to copy them from the following installation/bin directories: **libmysql.dll** → C:\Program Files\MySQL\MySQL Server 8.x\lib\ *Note: You need the exact version of libmysql to correspond to the MySQL you have downloaded. Due to this you cannot download the DLL from the web and need to take it out of the folder.* -OpenSSL _before_ version 1.1.0: +#### OpenSSL _before_ version 1.1.0: **libeay32.dll** and **ssleay32.dll** → C:\OpenSSL-Win64\ or C:\OpenSSL-Win32\ *(depends on if your core is 64-bit or 32-bit)*. -OpenSSL 1.1.0 and more recent installed, names have changed: +#### OpenSSL 1.1.x names have changed: For 32-bit version: **libssl-1_1.dll** and @@ -154,6 +155,10 @@ For 64-bit version: **libssl-1_1-x64.dll** and **libcrypto-1_1-x64.dll** → C:\OpenSSL-Win64\bin +#### OpenSSL 3.0 and more recent installed, you need to copy: + +**leagacy.dll** + #### About compilation log and report pdb files only exist if you compile on Debug or RelWithDebInfo modes, it's not mandatory but it's recommended to compile core on at least RelWithDebInfo mode to get proper crashlogs. If you compile on Release mode the pdb files aren't needed. |
