From 3457006a9adc5597bb8043f95fdf6a8d22080994 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 1 Nov 2021 18:12:13 +0100 Subject: [PATCH] WebPositive: fix linking with static libraries Some symbols were available because they were reexported by haikuwebkit 1.8.2, but they won't be exported anymore in the next releases. So we need to link to libnetservices.a directly, and link to it before the .so files to make sure the symbols from the static library are used. --- src/apps/webpositive/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/webpositive/Jamfile b/src/apps/webpositive/Jamfile index 28692ccc1c..134c4b0d89 100644 --- a/src/apps/webpositive/Jamfile +++ b/src/apps/webpositive/Jamfile @@ -70,10 +70,10 @@ for architectureObject in [ MultiArchSubDirSetup ] { Application WebPositive : $(sources) : + bnetapi [ MultiArchDefaultGristFiles libnetservices.a libcolumnlistview.a ] [ BuildFeatureAttribute webkit : libraries ] [ TargetLibstdc++ ] localestub shared - [ MultiArchDefaultGristFiles libcolumnlistview.a ] - be network libnetservices.a tracker translation + be network tracker translation : WebPositive.rdef ;