Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
tools/build/bootstrap-m4: regenerate after d37f81e35bReviewed by: jkim
Revert "contrib/flex: Drop local __dead2 patch"I missed the review comment to commit the changes separately, willreland in multiple smaller commits.Requested By: jkimThis reverts commit bbd42
Revert "contrib/flex: Drop local __dead2 patch"I missed the review comment to commit the changes separately, willreland in multiple smaller commits.Requested By: jkimThis reverts commit bbd421cdf6d8c6102e6fd3979c5bec21ace3c2e3.
show more ...
contrib/flex: Drop local __dead2 patchUpstream flex has added a yynoreturn, so this diff is no longer needed.Partially reverts r181269. Also regenerate the pre-generated files thatare used for bo
contrib/flex: Drop local __dead2 patchUpstream flex has added a yynoreturn, so this diff is no longer needed.Partially reverts r181269. Also regenerate the pre-generated files thatare used for bootstrapping.Reviewed By: jkimDifferential Revision: https://reviews.freebsd.org/D29679
Add necessary Makefile.inc1 infrastructure for building on non-FreeBSDThe most awkward bit in this patch is the bootstrapping of m4:We can't simply use the host version of m4 since that is not com
Add necessary Makefile.inc1 infrastructure for building on non-FreeBSDThe most awkward bit in this patch is the bootstrapping of m4:We can't simply use the host version of m4 since that is not compatiblewith the flags passed by lex (at least on macOS, possibly also on Linux).Therefore we need to bootstrap m4, but lex needs m4 to build and m4 alsodepends on lex (which needs m4 to generate any files). To work around thiscyclic dependency we can build a bootstrap version of m4 (with pre-generatedfiles) then use that to build the real m4.This patch also changes the xz/unxz/dd tools to always use the host versionsince the version in the source tree cannot easily be bootstrapped on macOSor Linux.Reviewed By: brooks, imp (earlier version)Differential Revision: https://reviews.freebsd.org/D25992