On Sat, 11 Jul 2015 07:29:20 -0700 John-Mark Gurney <j...@funkthat.com> wrote: ... > The closest I can see is that sha256hl.c (from mdXhl.c) is including > "sha256.h" with double quotes, and getting the wrong header file.. >
I concur, the following fixes libmd to use the correct header. Andrew Index: lib/libmd/Makefile =================================================================== --- lib/libmd/Makefile (revision 285383) +++ lib/libmd/Makefile (working copy) @@ -49,6 +49,7 @@ # * macros are used to rename symbols to libcrypt internal names # * no weak aliases are generated CFLAGS+= -I${.CURDIR} -DWEAK_REFS +CFLAGS+= -I${.CURDIR}/../../sys/crypto/sha2 .PATH: ${.CURDIR}/${MACHINE_ARCH} ${.CURDIR}/../../sys/crypto/sha2 .if exists(${MACHINE_ARCH}/sha.S) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"