git: a4f9c6a9e6e1 - stable/13 - md5: Fix cross-build after c2870e576bd2

Stefan Eßer se at FreeBSD.org
Mon Jun 28 16:14:49 UTC 2021


The branch stable/13 has been updated by se:

URL: https://cgit.FreeBSD.org/src/commit/?id=a4f9c6a9e6e18d8d2825f322f91698a2ca77505b

commit a4f9c6a9e6e18d8d2825f322f91698a2ca77505b
Author:     Jessica Clarke <jrtc27 at FreeBSD.org>
AuthorDate: 2021-06-25 21:00:11 +0000
Commit:     Stefan Eßer <se at 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>


More information about the dev-commits-src-all mailing list