
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
25 lines
596 B
PHP
25 lines
596 B
PHP
# $NetBSD: crypto.inc,v 1.4 2014/04/15 10:02:21 joerg Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto
|
|
|
|
|
|
CRYPTO_SRCS = cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c \
|
|
cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c
|
|
SRCS += ${CRYPTO_SRCS}
|
|
|
|
.if !defined(CPUID)
|
|
CRYPTO_SRCS+= mem_clr.c
|
|
.else
|
|
CRYPTO_SRCS+= ${CPUID_SRCS}
|
|
CRYPTOCPPFLAGS=-DOPENSSL_CPUID_OBJ
|
|
.endif
|
|
|
|
.for cryptosrc in ${CRYPTO_SRCS}
|
|
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/crypto ${CRYPTOCPPFLAGS}
|
|
.endfor
|