Re: git: e94a554e5542 - main - net/libproxy: bump consumers
Date: Tue, 21 Jan 2025 09:25:21 UTC
On Mon, 20 Jan 2025 13:09:07 +0300 Vladimir Druzenko wrote: > 20.01.2025 08:02, Charlie Li пишет: >> The branch main has been updated by vishwin: >> >> URL: https://cgit.FreeBSD.org/ports/commit/?id=e94a554e5542a7f4a03dfc004d22f21635446626 >> >> commit e94a554e5542a7f4a03dfc004d22f21635446626 >> Author: Charlie Li <vishwin@FreeBSD.org> >> AuthorDate: 2025-01-20 04:58:55 +0000 >> Commit: Charlie Li <vishwin@FreeBSD.org> >> CommitDate: 2025-01-20 05:01:30 +0000 >> >> net/libproxy: bump consumers >> >> PR: 284088 >> --- >> irc/hexchat/Makefile | 1 + >> net/glib-networking/Makefile | 1 + >> security/beid/Makefile | 1 + >> sysutils/signon-ui/Makefile | 2 +- >> 4 files changed, 4 insertions(+), 1 deletion(-) > > Hello! > > $ firefox > XPCOMGlueLoad error for file /usr/local/lib/firefox/libxul.so: > /usr/local/lib/libproxy.so.1: version LIBPROXY_0.4.16 required by > /usr/local/lib/firefox/libxul.so not defined This error means there's something wrong with symbol versioning in libproxy. The meson output contains this line: Compiler for C supports link arguments -Wl,--version-script,/usr/ports/net/libproxy/work/libproxy-0.5.9/src/libproxy/libproxy.map: NO The details are in _build/meson-logs/meson-log.txt: Command line: `cc /usr/ports/net/libproxy/work/libproxy-0.5.9/_build/meson-private/tmpxpd8ylph/testfile.c -o /usr/ports/net/libproxy/work/libproxy-0.5.9/_build/meson-private/tmpxpd8ylph/output.exe -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 -O0 -Werror=implicit-function-declaration -Wl,--fatal-warnings -Wl,--version-script,/tmp/obj/usr/freebsd/ports/main/net/libproxy/work/libproxy-0.5.9/src/libproxy/libproxy.map` -> 1 stderr: ld: error: version script assignment of 'LIBPROXY_0.4.16' to symbol 'px_proxy_factory_new' failed: symbol not defined ld: error: version script assignment of 'LIBPROXY_0.4.16' to symbol 'px_proxy_factory_get_proxies' failed: symbol not defined ld: error: version script assignment of 'LIBPROXY_0.4.16' to symbol 'px_proxy_factory_free_proxies' failed: symbol not defined ld: error: version script assignment of 'LIBPROXY_0.4.16' to symbol 'px_proxy_factory_free' failed: symbol not defined ld: error: version script assignment of 'LIBPROXY_0.5.5' to symbol 'px_proxy_factory_get_type' failed: symbol not defined ld: error: version script assignment of 'LIBPROXY_0.5.5' to symbol 'px_proxy_factory_copy' failed: symbol not defined clang: error: linker command failed with exit code 1 (use -v to see invocation) Clang is more strict than gcc about this. The attached patches should fix it.