diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-03-13 18:42:21 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-03-13 22:42:44 +0100 |
commit | ce547357b8dde39f192f15538582b7aa6a1a8596 (patch) | |
tree | 1cad3b05434a2521aada00e7ba0c1351fa181ded /README.md | |
parent | Fix a few db access crashes (diff) | |
download | nheko-ce547357b8dde39f192f15538582b7aa6a1a8596.tar.xz |
Disable bundled OpenSSL by default, even with hunter
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md index 78b3ff52..a857a0a1 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ brew install --cask nheko Nheko can use bundled version for most of those libraries automatically, if the versions in your distro are too old. To use them, you can enable the hunter integration by passing `-DHUNTER_ENABLED=ON`. It is probably wise to link those dependencies statically by passing `-DBUILD_SHARED_LIBS=OFF` -You can select which bundled dependencies you want to use by passing various `-DUSE_BUNDLED_*` flags. By default all dependencies are bundled *if* you enable hunter. +You can select which bundled dependencies you want to use by passing various `-DUSE_BUNDLED_*` flags. By default all dependencies are bundled *if* you enable hunter. (The exception to that is OpenSSL, which is always disabled by default.) If you experience build issues and you are trying to link `mtxclient` library without hunter, make sure the library version(commit) as mentioned in the `CMakeList.txt` is used. Sometimes we have to make breaking changes in `mtxclient` and for that period the master branch of both repos may not be compatible. The bundle flags are currently: @@ -159,6 +159,8 @@ The bundle flags are currently: - USE_BUNDLED_LMDBXX - USE_BUNDLED_TWEENY +A note on bundled OpenSSL: You need to explicitly enable it and it will not be using your system certificate directory by default, if you enable it. You need to override that at runtime with the SSL_CERT_FILE variable. On Windows it will still be using your system certificates though, since it loads them from the system store instead of the OpenSSL directory. + #### Linux If you don't want to install any external dependencies, you can generate an AppImage locally using docker. It is not that well maintained though... |