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/i386/stand/boot | |
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/i386/stand/boot')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 41f53741a4d..7e906ebe038 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.50 2013/04/23 12:28:51 jsing Exp $ +# $OpenBSD: Makefile,v 1.51 2013/04/23 16:41:13 jsing Exp $ COPTS?= MAN?= boot.8 @@ -56,7 +56,7 @@ SRCS+= aes_xts.c explicit_bzero.c hmac_sha1.c pbkdf2.c rijndael.c sha1.c SRCS+= strlcpy.c .PATH: ${S}/lib/libkern/arch/i386 -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 |