0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-03 20:43:33 +00:00
Files
packages/net/httping/patches/010-nls.patch
Rosen Penev 824b2c09a0 httping: fix compilation with full NLS
-lintl is needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-11-21 20:30:42 -08:00

14 lines
238 B
Diff

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,7 +30,9 @@ add_executable(
set(CMAKE_BUILD_TYPE Debug)
-target_link_libraries(httping m)
+find_package(Intl)
+
+target_link_libraries(httping m Intl::Intl)
include(FindPkgConfig)