diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2013-04-23 16:41:14 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2013-04-23 16:41:14 +0000 |
commit | 994462ac40a3ec66ee8cebf67e4775444c93a953 (patch) | |
tree | 7bbe9bf4e02a3dc0e91d2ea767abe0be05a45841 /sys/arch/amd64/stand/cdboot | |
parent | 95e95619630534f9964a29abcc04a36d72db77af (diff) |
Include udivdi3/umoddi3 when compiling the amd64/i386 boot blocks - they
are needed for the upcoming type changes.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64/stand/cdboot')
-rw-r--r-- | sys/arch/amd64/stand/cdboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/stand/cdboot/Makefile b/sys/arch/amd64/stand/cdboot/Makefile index 8fc81e41ced..3cb4593571a 100644 --- a/sys/arch/amd64/stand/cdboot/Makefile +++ b/sys/arch/amd64/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.19 2013/01/18 21:09:04 espie Exp $ +# $OpenBSD: Makefile,v 1.20 2013/04/23 16:41:13 jsing Exp $ MAN= cdboot.8 @@ -34,7 +34,7 @@ SRCS+= ufs.c cd9660.c SRCS+= aes_xts.c explicit_bzero.c hmac_sha1.c pbkdf2.c rijndael.c sha1.c .PATH: ${S}/lib/libkern/arch/i386 ${S}/lib/libkern -SRCS+= divdi3.c moddi3.c qdivrem.c +SRCS+= divdi3.c moddi3.c qdivrem.c udivdi3.c umoddi3.c .PATH: ${S}/lib/libz SRCS+= adler32.c crc32.c inflate.c inftrees.c |