1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 20:55:20 +03:00
aports/testing/wpewebkit/patch-gettext.patch
David Demelier 2c11287f7e testing/wpewebkit: new aport
https://wpewebkit.org
WebKit port optimized for embedded devices
2021-09-04 23:24:28 +00:00

15 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)