diff options
Diffstat (limited to 'testing/ttyd/fix-cmake.patch')
| -rw-r--r-- | testing/ttyd/fix-cmake.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/ttyd/fix-cmake.patch b/testing/ttyd/fix-cmake.patch deleted file mode 100644 index 274bfcb7ef..0000000000 --- a/testing/ttyd/fix-cmake.patch +++ /dev/null @@ -1,20 +0,0 @@ -find_package doesn't find Libwebsockets (with capital "L"). Eventually it finds -libwebsockets with pkg-config, but includes libwebsockets.a on the path first, -so the resulting library links libwebsockets statically. - ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -13,11 +13,11 @@ - set(SOURCE_FILES src/server.c src/http.c src/protocol.c src/utils.c) - - find_package(OpenSSL REQUIRED) --find_package(Libwebsockets ${LIBWEBSOCKETS_MIN_VERSION} QUIET) -+find_package(libwebsockets ${LIBWEBSOCKETS_MIN_VERSION} QUIET) - - find_package(PkgConfig) - --if(Libwebsockets_FOUND) -+if(libwebsockets_FOUND) - set(LIBWEBSOCKETS_INCLUDE_DIR ${LIBWEBSOCKETS_INCLUDE_DIR} ${LIBWEBSOCKETS_INCLUDE_DIRS}) - else() # try to find libwebsockets with pkg-config - pkg_check_modules(Libwebsockets REQUIRED libwebsockets>=${LIBWEBSOCKETS_MIN_VERSION}) |
