svn commit: r285417 - head/lib/libmd

Craig Rodrigues rodrigc at FreeBSD.org
Sun Jul 12 03:39:38 UTC 2015


Author: rodrigc
Date: Sun Jul 12 03:39:36 2015
New Revision: 285417
URL: https://svnweb.freebsd.org/changeset/base/285417

Log:
  Add new include path for sha256.h
  
  This fixes the bootstrap build on FreeBSD 10.
  
  Submitted by:	andrew

Modified:
  head/lib/libmd/Makefile

Modified: head/lib/libmd/Makefile
==============================================================================
--- head/lib/libmd/Makefile	Sun Jul 12 00:26:22 2015	(r285416)
+++ head/lib/libmd/Makefile	Sun Jul 12 03:39:36 2015	(r285417)
@@ -48,7 +48,8 @@ CLEANFILES+=	md[245]hl.c md[245].ref md[
 # in which case:
 #   * macros are used to rename symbols to libcrypt internal names
 #   * no weak aliases are generated
-CFLAGS+= -I${.CURDIR} -DWEAK_REFS
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys/crypto/sha2
+CFLAGS+= -DWEAK_REFS
 .PATH: ${.CURDIR}/${MACHINE_ARCH} ${.CURDIR}/../../sys/crypto/sha2
 
 .if exists(${MACHINE_ARCH}/sha.S)


More information about the svn-src-all mailing list