aports/community/wpewebkit/patch-gettext.patch
2023-03-28 03:28:11 +02:00

16 lines
428 B
Diff

Add -lintl since it's not default in musl.
Upstream: not yet.
--- a/Source/WebKit/CMakeLists.txt 2021-07-02 17:40:14.028879924 +0200
+++ b/Source/WebKit/CMakeLists.txt 2021-07-02 17:41:31.015503465 +0200
@@ -360,6 +360,8 @@
list(APPEND WebKit_PRIVATE_LIBRARIES atomic)
endif ()
+list(APPEND WebKit_PRIVATE_LIBRARIES intl)
+
if (UNIX)
check_function_exists(shm_open SHM_OPEN_EXISTS)
if (NOT SHM_OPEN_EXISTS)