235d54be57
- new command /print - logical and/or for tags in /filter and hook_print - gaps in buffer numbers - support of italic text - new options to customize default text search in buffers - use of IRC monitor command for /notify (if available on server) - new IRC server option "ssl_fingerprint" - new option to smart-filter IRC mode messages - new option for default IRC ban mask - support of IPv6 for DCC chat/file - auto check CRC32 of files received with DCC - many bugs fixed - add weechat-link-pthread.patch in order to link Weechat against libpthread fixing freezes/crashes with gnutls (backported from upstream git) OBS-URL: https://build.opensuse.org/package/show/server:irc/weechat?expand=0&rev=54
29 lines
913 B
Diff
29 lines
913 B
Diff
From 30073b511397646b9ef06ed657fda157dd8c6209 Mon Sep 17 00:00:00 2001
|
|
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
|
|
Date: Thu, 13 Feb 2014 14:36:23 +0100
|
|
Subject: [PATCH] Link against pthread on all platforms.
|
|
|
|
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
|
|
---
|
|
src/gui/curses/CMakeLists.txt | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
diff --git a/src/gui/curses/CMakeLists.txt b/src/gui/curses/CMakeLists.txt
|
|
index 325c611..a8927bc 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})
|
|
--
|
|
1.8.5.4
|
|
|