summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2018-12-12 21:40:31 -0600
committerTim Harder <radhermit@gentoo.org>2018-12-13 00:47:14 -0600
commitfa5f777475b902cc5721e3c7db0f663f9040930c (patch)
tree3ecce2e85ac767a2441e538d74492a6d014d9aa0 /net-irc/weechat/files
parentnet-irc/weechat: stabilize 2.3 (diff)
downloadgentoo-fa5f777475b902cc5721e3c7db0f663f9040930c.tar.gz
gentoo-fa5f777475b902cc5721e3c7db0f663f9040930c.tar.bz2
gentoo-fa5f777475b902cc5721e3c7db0f663f9040930c.zip
net-irc/weechat: remove old
Signed-off-by: Tim Harder <radhermit@gentoo.org>
Diffstat (limited to 'net-irc/weechat/files')
-rw-r--r--net-irc/weechat/files/weechat-1.2-tinfo.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/net-irc/weechat/files/weechat-1.2-tinfo.patch b/net-irc/weechat/files/weechat-1.2-tinfo.patch
deleted file mode 100644
index e6ae9e0f205b..000000000000
--- a/net-irc/weechat/files/weechat-1.2-tinfo.patch
+++ /dev/null
@@ -1,32 +0,0 @@
- src/gui/curses/CMakeLists.txt | 11 +++++++++--
- 1 file changed, 9 insertions(+), 2 deletions(-)
-
-diff --git a/src/gui/curses/CMakeLists.txt b/src/gui/curses/CMakeLists.txt
-index 284956f..492fc77 100644
---- a/src/gui/curses/CMakeLists.txt
-+++ b/src/gui/curses/CMakeLists.txt
-@@ -35,7 +35,14 @@ main.c)
-
- set(EXECUTABLE weechat)
-
--find_package(Ncurses)
-+
-+find_package(PkgConfig)
-+pkg_search_module(NCURSES ncursesw ncurses)
-+
-+if(NOT NCURSES_FOUND)
-+ find_package(Ncurses)
-+endif(NCURSES_FOUND)
-+
- if(NCURSES_FOUND)
- check_include_files(ncursesw/ncurses.h NCURSESW_HEADERS)
- if(NCURSESW_HEADERS)
-@@ -46,7 +53,7 @@ if(NCURSES_FOUND)
- add_definitions(-DHAVE_NCURSES_H)
- endif()
- endif()
-- list(APPEND EXTRA_LIBS ${NCURSES_LIBRARY})
-+ list(APPEND EXTRA_LIBS ${NCURSES_LIBRARY} ${NCURSES_LIBRARIES} )
- endif()
-
- if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")