science/dirac: fix build on powerpc64* and armv7
Only tested on powerpc64le, hopefully powerpc64 and armv7 also build.
REAL*16 is not supported on those arches, but only stieltjes uses it,
so the port builds after disabling it.
usr.sbin/httpd: inherit gzip-static in locations
Location configuration inherited most server level options but dropped
gzip-static, so requests matching a location skipped static gzip lookup
even when the parent server enabled it.
Add an explicit no gzip-static state and inherit the gzip flag pair only
when the location has not set either form, preserving location specific
overrides.
Reported by and OK: job@
net/wifibox-core: fix build
Apparently there is a bug in the upstream `Makefile` and the
`devd` configuration file is always created in the staging
directory, but because the `@comment` prefix is used for FreeBSD
14 and later, it is ignored and excluded from the package.
Obtained from: https://github.com/pgj/freebsd-wifibox-port/commit/0534401cfc9f4722a7d9c93ade5695916ad3d598
While technically allowed, shared libraries without PT_LOAD segments
don't really make any sense. Bail out early to avoid the bits of code
that assume that we have a PT_LOAD sagment. This avoids a NULL pointer
dereference on i386 (which uses library_mquery.c) or bogus mmap calls
on other architectures (which use library.c).
The potential NULL pointer dereference in library_mquery.c was found by
Frank Denis.
ok guenther@