
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
21 lines
483 B
PHP
21 lines
483 B
PHP
# $NetBSD: sha.inc,v 1.3 2014/04/15 10:02:21 joerg Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/sha/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/sha
|
|
|
|
|
|
SHA_SRCS += sha_dgst.c sha1dgst.c sha_one.c sha1_one.c
|
|
|
|
# Replaced OpenSSL version to avoid overlap with libc
|
|
SHA_SRCS+= libc-sha512.c libc-sha256.c
|
|
|
|
SRCS += ${SHA_SRCS}
|
|
|
|
.for cryptosrc in ${SHA_SRCS}
|
|
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/sha ${SHACPPFLAGS}
|
|
.endfor
|