mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
This is based on the feature_python3 branch to enable Python 3 support. - Add a run dependency on py-sqlite3 since too many plugins like the YouTube plugin expect it to be there - Only link kodi-gbm with libepoll-shim instead of every binary and library
30 lines
1 KiB
CMake
30 lines
1 KiB
CMake
--- cmake/modules/FindEpollShim.cmake.orig 2019-05-18 04:05:16 UTC
|
|
+++ cmake/modules/FindEpollShim.cmake
|
|
@@ -0,0 +1,27 @@
|
|
+# FindEpollShim
|
|
+# -------------
|
|
+# Finds the epoll-shim library
|
|
+#
|
|
+# This will define the following variables::
|
|
+#
|
|
+# EPOLLSHIM_FOUND - the system has epoll-shim
|
|
+# EPOLLSHIM_INCLUDE_DIR - the epoll-shim include directory
|
|
+# EPOLLSHIM_LIBRARY - the epoll-shim library
|
|
+
|
|
+if(PKG_CONFIG_FOUND)
|
|
+ pkg_check_modules(PC_EPOLLSHIM epoll-shim QUIET)
|
|
+endif()
|
|
+
|
|
+find_path(EPOLLSHIM_INCLUDE_DIR NAMES sys/epoll.h PATHS ${PC_EPOLLSHIM_INCLUDE_DIRS})
|
|
+find_library(EPOLLSHIM_LIBRARY NAMES epoll-shim PATHS ${PC_EPOLLSHIM_LIBDIR})
|
|
+
|
|
+include(FindPackageHandleStandardArgs)
|
|
+find_package_handle_standard_args(EpollShim
|
|
+ REQUIRED_VARS EPOLLSHIM_LIBRARY EPOLLSHIM_INCLUDE_DIR)
|
|
+
|
|
+if(EPOLLSHIM_FOUND)
|
|
+ set(EPOLLSHIM_INCLUDE_DIRS ${EPOLLSHIM_INCLUDE_DIR})
|
|
+ set(EPOLLSHIM_LIBRARIES ${EPOLLSHIM_LIBRARY})
|
|
+endif()
|
|
+
|
|
+mark_as_advanced(EPOLLSHIM_INCLUDE_DIR EPOLLSHIM_LIBRARY)
|