config generator (including setting MIBDIRS) when changing the generator
input file. add an example showing use with OPENBSD-PF-MIB (which just had
a commit in src/ that will prevent snmp_exporter from using a hexdump of
various names, so if someone is trying this right now they should pick up
the updated MIB first).
Parts borrowed from https://yetiops.net/posts/openbsd-snmp-exporter/
- deltify.c: explicitly include <endian.h> for be64toh() (naddy)
- rebase/histedit -l: error out if no backups for the requested branch exist
- fix use of uninitialized stat buffer during status crawl (found by naddy)
* Disable the peephole optimizer on mips64 to avoid occasional crashes.
* Ensure sufficient alignment of builtin bytecode arrays so that
compiler.c can cast and access the data through struct ibf_header
without crashing (OpenBSD/mips64 requires strict alignment).
OK jeremy@
see https://www.mozilla.org/en-US/firefox/87.0/releasenotes/
fixes https://www.mozilla.org/en-US/security/advisories/mfsa2021-10/
- revert parts of #1696958 breaking downloads to ~/Downloads because of
unveil() interaction, until a better fix is found. Or unveil support
being ripped out, out of frustration.
- patch out toolkit/components/downloads/DownloadUIHelper.jsm to make
sure strings["downloadsFolder"] isnt localized, which would break
downloads for users with a langpack installed/enabled (as
~/Telechargements isnt unveiled by default)
- include patch from RJ Johnson in #1697721, fixing various web developer
issues with profiles created after unveil() integration (missing
<profile>/storage/permanent dir)
- add a blurb to README about creating/using ~/Downloads with unveil()
while here replace --disable-optimize by --enable-optimize=${CFLAGS},
since bug #1689284 using --disable-optimize + --enable-release doesnt
optimize rust code anymore, resulting in a +100Mb increase on
libxul.so seen with firefox 87
--enable-optimize workaround suggested in #1695572