in seabios (sysutils/firmware/vmm).
/usr/bin/ld.bfd: scripts/kconfig/zconf.tab.o: invalid relocation type 42
/usr/bin/ld.bfd: BFD 2.17 assertion fail /usr/src/gnu/usr.bin/binutils-2.17/bfd/elf64-x86-64.c:259
...
/usr/bin/ld.bfd: scripts/kconfig/conf.o(.text+0x3b3): unresolvable L<8B>^]^A^Z^E relocation against symbol `__sF'
etc.
- fixes ssh brute force (upstream commit a2de33fd2b, sebastia@ ran into
the problem too and came up with the same [fix|workaround])
- add a few more protocols
- remove bogus patch in a file that's regenerated during build, use
PATCHORIG to avoid it recurring
- use a whitelist rather than blacklist approach for patch-configure and
avoid patching so many lines, to reduce conflict risk during updates
- general port maintenance; use DEBUG_PACKAGES, don't unconditionally
strip, convert gui-disabling PSEUDO_FLAVOR to use BUILD_PACKAGES,
fix HOMEPAGE, etc.
tested by sebastia@
Out-of-cycle release to fix regressions in MariaDB 10.5.7
Follow up to MDEV-19838 to alter protocol checks to support the
following implementations (which add garbage to the end of some
packets):
mysqlnd (from PHP < 7.3) (MDEV-24121)
mysql-connector-python (all versions) (MDEV-24134)
and mysql-connector-java (all versions)
Luassert extends Lua's built-in assertions to provide additional tests
and the ability to create your own. It comes preloaded with argument
formatters for common Lua types, but it is easy to roll your own.
ok cwen@
1) Fix javascript crashes at runtime
Take a patch from Daniel Kolesa @ Void-PPC to avoid segfaults in consumers as
soon as javascript is used. Keep it powerpc-only for now, since it has not
yet been reviewed by upstream and can have consequences on other 32-bit archs.
2) Fix colors
Colors were off as soon as javascript is involved. Disabling context GL fixes
the issue (but hurts performances). Another patch was needed because of a
missing include when this option is disabled.
Thanks to sthen and aja for hints!
OK aja@ (maintainer)
pulseaudio has rust in its chain of dependencies since spidermonkey78.
Disable the -pulse subpackage on !rust archs, and work around a meson issue
about pulse autodetection not being honoured, so these plugins can be built
there and used by www/webkitgtk4 notably. Tested on powerpc.
improvements (thanks!) and no objection from aja@
CodeWarrior styled asm inline functions are used for powerpc optimisation,
guarded by "__POWERPC__" that base-clang defines, but not base-gcc.
As such, undefine __POWERPC__ to revert the situation as it was when powerpc
was a gcc arch. Runtime tests by Anthony Richardby (thanks!) and me.
OK sthen@