diff options
author | marcel <marcel@FreeBSD.org> | 2004-04-11 15:40:18 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-04-11 15:40:18 +0000 |
commit | 3085115018947f914e9e604cda0253a402928a4a (patch) | |
tree | b50cb36ed84f5d3890205e1b89abcdfb9c045106 /sys/modules/random | |
parent | 57c71790666de11b3929096425a3c151890adccc (diff) | |
download | FreeBSD-src-3085115018947f914e9e604cda0253a402928a4a.zip FreeBSD-src-3085115018947f914e9e604cda0253a402928a4a.tar.gz |
Include nehemiah.c only on i386, as is done for the non-modules
build.
Diffstat (limited to 'sys/modules/random')
-rw-r--r-- | sys/modules/random/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile index 9eee821..37c4d82 100644 --- a/sys/modules/random/Makefile +++ b/sys/modules/random/Makefile @@ -6,7 +6,9 @@ KMOD= random SRCS= randomdev.c probe.c +.if ${MACHINE} == "i386" SRCS+= nehemiah.c +.endif SRCS+= randomdev_soft.c yarrow.c hash.c SRCS+= rijndael-alg-fst.c rijndael-api-fst.c sha2.c SRCS+= bus_if.h device_if.h vnode_if.h |