summaryrefslogtreecommitdiff
path: root/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch')
-rw-r--r--dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch b/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch
deleted file mode 100644
index 673c6f86c972..000000000000
--- a/dev-libs/libcec/files/libcec-4.0.2-no-tinfo.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- libcec-libcec-4.0.2/src/cec-client/CMakeLists.txt
-+++ libcec-libcec-4.0.2/src/cec-client/CMakeLists.txt
-@@ -27,8 +27,12 @@ set(cecclient_SOURCES cec-client.cpp)
- check_library_exists(curses initscr "" HAVE_CURSES_API)
- if (HAVE_CURSES_API)
- list(APPEND cecclient_SOURCES curses/CursesControl.cpp)
-+
-+ # tinfo
-+ find_library(HAVE_CURSES_TINFO tinfo)
- endif()
-
-+
- add_executable(cec-client ${cecclient_SOURCES})
- set_target_properties(cec-client PROPERTIES VERSION ${LIBCEC_VERSION_MAJOR}.${LIBCEC_VERSION_MINOR}.${LIBCEC_VERSION_PATCH})
- target_link_libraries(cec-client ${p8-platform_LIBRARIES})
-@@ -44,6 +48,9 @@ if (NOT WIN32)
- # curses
- if (HAVE_CURSES_API)
- target_link_libraries(cec-client curses)
-+ if (HAVE_CURSES_TINFO)
-+ target_link_libraries(cec-client tinfo)
-+ endif()
- endif()
-
- # rt