mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
After pkubaj@ fixed armv7 support in ports commit5094662
, the fix was upstreamed. Unfortunately upstream made a mistake in processing the patch, leading to broken code on armv7. This was subsequently fixed in the linked commit, but has not made its way into the ports tree yet. Fix the build once again by importing the patch from the commit above. See also: https://cgit.freebsd.org/ports/commit/?id=50946628c31aff06f6ff06504d5164466d34428c See also:78a10b6095
PR: 264550 Approved by: bsd@abinet.ru (maintainer)
16 lines
498 B
C++
16 lines
498 B
C++
Partial application of upstream commit 78a10b6 to fix
|
|
armv7 support fix.
|
|
|
|
https://github.com/ZoneMinder/zoneminder/commit/78a10b6095b3759d341a1a336ac2b73a880871b4
|
|
|
|
--- src/zm_utils.cpp.orig 2021-12-10 22:36:30 UTC
|
|
+++ src/zm_utils.cpp
|
|
@@ -231,6 +231,8 @@ void HwCapsDetect() {
|
|
unsigned long auxval = 0;
|
|
elf_aux_info(AT_HWCAP, &auxval, sizeof(auxval));
|
|
if (auxval & HWCAP_NEON) {
|
|
+ #else
|
|
+ {
|
|
#error Unsupported OS.
|
|
#endif
|
|
Debug(1,"Detected ARM (AArch32) processor with Neon");
|