diff options
author | zlg <zlg@zlg.space> | 2018-11-21 01:50:16 -0800 |
---|---|---|
committer | zlg <zlg@zlg.space> | 2018-11-21 02:53:31 -0800 |
commit | e4969194f5031b1c56a9cc7aee5f0a13d8243584 (patch) | |
tree | 8148ca43ecf3cffed269037fd03edc528c20d61b /user/weechat/fix-unsigned-char.patch | |
parent | e48520ec1e55df33a5303920467f286f3b1566f7 (diff) | |
download | packages-e4969194f5031b1c56a9cc7aee5f0a13d8243584.tar.gz packages-e4969194f5031b1c56a9cc7aee5f0a13d8243584.tar.bz2 packages-e4969194f5031b1c56a9cc7aee5f0a13d8243584.tar.xz packages-e4969194f5031b1c56a9cc7aee5f0a13d8243584.zip |
user/weechat: fix overzealous highlighting bug
Diffstat (limited to 'user/weechat/fix-unsigned-char.patch')
-rw-r--r-- | user/weechat/fix-unsigned-char.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/user/weechat/fix-unsigned-char.patch b/user/weechat/fix-unsigned-char.patch new file mode 100644 index 000000000..d4acd1986 --- /dev/null +++ b/user/weechat/fix-unsigned-char.patch @@ -0,0 +1,37 @@ +This patch is backported from the upcoming 2.4 release. It corrects +highlighting behavior for plugins such as urlserver.py. + +See-Also: https://github.com/weechat/weechat/issues/1277 +Patch-Author: Sébastien Helleu <flashcode@flashtux.org> + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 0ae69ea0f..1d7738af5 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -27,8 +27,8 @@ project(weechat C) + set(CMAKE_VERBOSE_MAKEFILE OFF) + set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) + set(CMAKE_SKIP_RPATH ON) +-set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") +-set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror-implicit-function-declaration") ++set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsigned-char -Wall -Wextra -Werror-implicit-function-declaration") ++set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsigned-char -Wall -Wextra -Werror-implicit-function-declaration") + + # version + execute_process(COMMAND ${CMAKE_SOURCE_DIR}/version.sh devel-major OUTPUT_VARIABLE VERSION_MAJOR) +diff --git a/configure.ac b/configure.ac +index d267ca10f..a0bf00078 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1330,7 +1330,7 @@ AC_DEFINE_UNQUOTED(WEECHAT_SHAREDIR, "$WEECHAT_SHAREDIR") + weechat_libdir=${libdir}/weechat + AC_SUBST(weechat_libdir) + +-COMMON_CFLAGS="-Wall -Wextra -Werror-implicit-function-declaration" ++COMMON_CFLAGS="-fsigned-char -Wall -Wextra -Werror-implicit-function-declaration" + AC_MSG_CHECKING([whether we have GNU assembler]) + GAS=`as --version < /dev/null 2>/dev/null | grep GNU` + if test "$GAS"; then +-- +2.19.1 + |