Building editors/libreoffice with lld 17 results in the following link
errors:
ld: error: version script assignment of 'PRIVATE_1.4' to symbol '_ZN3sal13backtrace_getEm' failed: symbol not defined
ld: error: version script assignment of 'GLIBCXX_3.4' to symbol '_ZNSs4_Rep20_S_empty_rep_storageE' failed: symbol not defined
Add -Wl,--undefined-version to LDFLAGS to suppress these error, as the
previous fix did not work in all cases.
PR: 274697
Approved by: office (blanket)
Fixes: 6338934b7c
MFH: 2024Q4
This reverts commit 6338934b7c:
Building editors/libreoffice with lld 17 results in the following link
errors:
ld: error: version script assignment of 'PRIVATE_1.4' to symbol '_ZN3sal13backtrace_getEm' failed: symbol not defined
ld: error: version script assignment of 'GLIBCXX_3.4' to symbol '_ZNSs4_Rep20_S_empty_rep_storageE' failed: symbol not defined
Upstream fixed this only for Linux with:
baddc742c3
Add the same block to the more generic unxgcc.mk makefile, so it gets
picked up for FreeBSD too.
PR: 274697
Author: Dimitry Andric <dim@FreeBSD.org>
When building math/py-cvxopt the following error is displayed:
Error: /usr/local/lib/python3.9/site-packages/cvxopt/dsdp.cpython-39.so is
linked to /usr/local/lib/libdsdp.so which does not have a SONAME.
math/dsdp needs to be fixed.
Since I’m there, also install the static library.
PR: 274851
Approved by: yuri 'maintainer)
Revert an upstream change to tools/winebuild/res32.c that exposed
resource contraints for clang on i386 (cf. the upstream reports
at https://github.com/llvm/llvm-project/issues/62339
and https://bugs.winehq.org/show_bug.cgi?id=54889 ).
Apply this patch only on i386 to minimize divergence and risk on
64-bit x86.
PR: 273987 [1], 271201 [2]
Bi-sected by: Damjan Jovanovic <damjan.jov@gmail.com> [2]
Motivated by: scf [1]
Since SSL support is being changed and sudo can be built without it, add
a new SSL option, on by default.
When option is enabled, use --enable-openssl=${OPENSSLBASE} to make sure
it consumes desired OpenSSL implementation. Also add pkgconfig
dependency because configure script rely on it to detect openssl
details.
PR: 274753
Reported by: tburns@hrsd.com
Sponsored by: Rubicon Communications, LLC ("Netgate")
Switch back to STANDARD_BOOTSTRAP on i386, amd64 and aarch64 as default
option instead of LTO_BOOTSTRAP, forwarding the changes already commited
in the devel ports (commits daf12c76bd,
872d61f8ea, and
da4cb11216).
Users wanting to use LTO_BOOTSTRAP can still enable the option manually.
PR: 273397
Tested by: exp-run (antoine)
This module offers a lightweight Perl wrapper for the libtermkey
library, which serves as a valuable tool for abstractly handling
keypress events in terminal-based programs. Instead of delivering raw
bytes directly from the TTY device, this library furnishes data
structures that describe keys, facilitating a more organized and
user-friendly approach to key event processing.