Files
BMLFS/patches/wpewebkit-alpine/patch-gettext.patch
2021-10-02 00:51:36 -05: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)