svn commit: r221142 - head/lib/libcrypt
David E. O'Brien
obrien at FreeBSD.org
Wed Apr 27 21:33:57 UTC 2011
Author: obrien
Date: Wed Apr 27 21:33:56 2011
New Revision: 221142
URL: http://svn.freebsd.org/changeset/base/221142
Log:
Protect the reachover built symbols after the SHA256/512 crypt(3) addition.
Modified:
head/lib/libcrypt/Makefile
Modified: head/lib/libcrypt/Makefile
==============================================================================
--- head/lib/libcrypt/Makefile Wed Apr 27 21:13:40 2011 (r221141)
+++ head/lib/libcrypt/Makefile Wed Apr 27 21:33:56 2011 (r221142)
@@ -31,7 +31,9 @@ CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BL
SRCS+= auth.c property.c
.for sym in auth_getval property_find properties_read properties_free \
MD4Init MD4Final MD4Update MD4Pad \
- MD5Init MD5Final MD5Update MD5Pad
+ MD5Init MD5Final MD5Update MD5Pad \
+ SHA256_Init SHA256_Final SHA256_Update \
+ SHA512_Init SHA512_Final SHA512_Update
CFLAGS+= -D${sym}=__${sym}
.endfor
More information about the svn-src-head
mailing list