Download raw body.
devel/startup-notification: fix wantlib
Hi, After upgrading packages to the snapshot after major libs bumps, I found that libstartup-notification-.so.2.0 was not upgraded / still referencing libpthreads.so.27.1. Turns out to be a missing WANTLIB. ok ? Index: Makefile =================================================================== RCS file: /local/cvs/ports/devel/startup-notification/Makefile,v diff -u -p -u -r1.33 Makefile --- Makefile 11 Mar 2022 18:53:29 -0000 1.33 +++ Makefile 20 Jul 2025 15:46:07 -0000 @@ -2,7 +2,7 @@ COMMENT= library for tracking applicati GNOME_PROJECT= startup-notification GNOME_VERSION= 0.12 -REVISION= 8 +REVISION= 9 CATEGORIES= devel @@ -13,7 +13,7 @@ HOMEPAGE= http://www.freedesktop.org/wi # LGPLv2 PERMIT_PACKAGE= Yes -WANTLIB += X11 X11-xcb Xau Xdmcp xcb xcb-util +WANTLIB += X11 X11-xcb Xau Xdmcp xcb xcb-util pthread MODULES= x11/gnome -- Matthieu Herrb
devel/startup-notification: fix wantlib