diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2014-02-13 16:09:35 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-13 16:09:35 +0100 |
commit | c324610226cef15ecfb1235113c8243b068084c8 (patch) | |
tree | a01906e791edaebf6b64e787fd14dcd7df672f15 | |
parent | f821a94cc412bc4afc7fc751cf040e88603c6b98 (diff) | |
download | weechat-c324610226cef15ecfb1235113c8243b068084c8.zip |
core: fix freeze/crash in gnutls (bug #41576)
The link is now made against pthread on all platforms.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/gui/curses/CMakeLists.txt | 4 |
3 files changed, 3 insertions, 3 deletions
@@ -37,6 +37,7 @@ Alphabetically: * Gwenn * Hasan Kiran (turgay) * Ivan Sichmann Freitas +* Jason A. Donenfeld (zx2c4) * JD Horelick (jdhore) * Jim Ramsay (lack) * Jiri Golembiovsky (GolemJ) @@ -11,6 +11,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] == Version 0.4.4 (under dev!) +* core: fix freeze/crash in gnutls (bug #41576) * core: fix cmake warning CMP0007 on "make uninstall" (bug #41528) * core: add signals "key_combo_{default|search|cursor}" * core: display a warning in case of inconsistency between the options diff --git a/src/gui/curses/CMakeLists.txt b/src/gui/curses/CMakeLists.txt index 325c6117b..a8927bce4 100644 --- a/src/gui/curses/CMakeLists.txt +++ b/src/gui/curses/CMakeLists.txt @@ -53,9 +53,7 @@ IF(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") ENDIF(HAVE_BACKTRACE) ENDIF(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") -IF(${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") - LIST(APPEND EXTRA_LIBS "pthread") -ENDIF(${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD") +LIST(APPEND EXTRA_LIBS "pthread") IF(ICONV_LIBRARY) LIST(APPEND EXTRA_LIBS ${ICONV_LIBRARY}) |