Date: Mon, 28 Jun 2021 16:14:48 GMT From: =?utf-8?Q?Stefan E=C3=9Fer?= <se@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: a4f9c6a9e6e1 - stable/13 - md5: Fix cross-build after c2870e576bd2 Message-ID: <202106281614.15SGEm3B056249@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by se: URL: https://cgit.FreeBSD.org/src/commit/?id=a4f9c6a9e6e18d8d2825f322f91698a2ca77505b commit a4f9c6a9e6e18d8d2825f322f91698a2ca77505b Author: Jessica Clarke <jrtc27@FreeBSD.org> AuthorDate: 2021-06-25 21:00:11 +0000 Commit: Stefan Eßer <se@FreeBSD.org> CommitDate: 2021-06-28 16:14:02 +0000 md5: Fix cross-build after c2870e576bd2 On macOS and Linux the current set of headers do not end up pulling in sys/param.h, causing MAXPATHLEN to not be defined and the build to fail. (cherry picked from commit cab31e0e216c7defefd4aba14693ba2252ea7308) --- sbin/md5/md5.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index d4245d2aad4b..43a76227a9d2 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -21,6 +21,7 @@ __FBSDID("$FreeBSD$"); #include <sys/types.h> +#include <sys/param.h> #include <sys/time.h> #include <sys/resource.h> #include <err.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106281614.15SGEm3B056249>