]> jfr.im git - irc/weechat/weechat.git/commitdiff
core, relay: fix include directory of libzstd origin/4.1
authorSébastien Helleu <redacted>
Sun, 26 May 2024 21:53:00 +0000 (23:53 +0200)
committerSébastien Helleu <redacted>
Sun, 26 May 2024 21:54:34 +0000 (23:54 +0200)
ChangeLog.adoc
src/core/CMakeLists.txt
src/plugins/relay/CMakeLists.txt

index e9af3351380cedea9d3ddb7b125a4fa9997dbc26..2be5cb905628951bbd12231d2e329a03ba473295 100644 (file)
@@ -15,6 +15,7 @@ For a list of important changes that require manual actions, please look at rele
 
 Bug fixes::
 
+  * core, relay: fix include directory of libzstd
   * core: add missing mouse events "alt-ctrl-button2" and "alt-ctrl-button3"
   * irc: fix crash in split of IRC message containing a newline if the server is not given
   * python: fix truncation of unsigned long long integer returned by function string_parse_size
index 2f21d146a03deb278b79cc1f2df07c27a7d4f099..21bffd57da81fcbe3d42952ec6b3e53d2c898759 100644 (file)
@@ -92,7 +92,7 @@ include_directories(${GNUTLS_INCLUDE_PATH})
 include_directories(${CURL_INCLUDE_DIRS})
 
 if(ENABLE_ZSTD)
-  include_directories(${ZSTD_INCLUDE_DIRS})
+  include_directories(${LIBZSTD_INCLUDE_DIRS})
 endif()
 
 include_directories("${CMAKE_BINARY_DIR}")
index 953aa722721efa6f6aa499461192bfbb03f06433..1d4e6d5d9d0b9674a84bbdd282351f9fb3550bc6 100644 (file)
@@ -51,7 +51,7 @@ list(APPEND LINK_LIBS ${GCRYPT_LDFLAGS})
 list(APPEND LINK_LIBS ${ZLIB_LIBRARY})
 
 if(ENABLE_ZSTD)
-  include_directories(${ZSTD_INCLUDE_DIRS})
+  include_directories(${LIBZSTD_INCLUDE_DIRS})
   list(APPEND LINK_LIBS ${LIBZSTD_LDFLAGS})
 endif()