diff options
| author | 2018-09-19 20:04:45 +0200 | |
|---|---|---|
| committer | 2018-10-02 15:30:48 +0200 | |
| commit | aa484688623db59df3ef334a63eff98d98e362f3 (patch) | |
| tree | 23c2ccdbe5e562e281e1e96d306036f724856461 /externals | |
| parent | web_backend: protect jwt cache with a mutex (diff) | |
| download | yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.gz yuzu-aa484688623db59df3ef334a63eff98d98e362f3.tar.xz yuzu-aa484688623db59df3ef334a63eff98d98e362f3.zip | |
Review comments - part 3
Diffstat (limited to '')
| -rw-r--r-- | externals/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 6a573881d..1261062e8 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt | |||
| @@ -80,9 +80,9 @@ endif() | |||
| 80 | if (ENABLE_WEB_SERVICE) | 80 | if (ENABLE_WEB_SERVICE) |
| 81 | # LibreSSL | 81 | # LibreSSL |
| 82 | set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "") | 82 | set(LIBRESSL_SKIP_INSTALL ON CACHE BOOL "") |
| 83 | add_definitions(-DHAVE_INET_NTOP) | ||
| 84 | add_subdirectory(libressl EXCLUDE_FROM_ALL) | 83 | add_subdirectory(libressl EXCLUDE_FROM_ALL) |
| 85 | target_include_directories(ssl INTERFACE ./libressl/include) | 84 | target_include_directories(ssl INTERFACE ./libressl/include) |
| 85 | target_compile_definitions(ssl PRIVATE -DHAVE_INET_NTOP) | ||
| 86 | 86 | ||
| 87 | # lurlparser | 87 | # lurlparser |
| 88 | add_subdirectory(lurlparser EXCLUDE_FROM_ALL) | 88 | add_subdirectory(lurlparser EXCLUDE_FROM_ALL) |