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 | |
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')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/cdboot/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/i386/stand/pxeboot/Makefile | 4 |
3 files changed, 6 insertions, 6 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 diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index b7d9c58c9d0..e8e1bd6d769 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2013/01/18 21:09:04 espie Exp $ +# $OpenBSD: Makefile,v 1.18 2013/04/23 16:41:13 jsing Exp $ MAN= cdboot.8 @@ -35,7 +35,7 @@ SRCS+= cd9660.c ufs.c SRCS+= aes_xts.c explicit_bzero.c hmac_sha1.c pbkdf2.c rijndael.c sha1.c .PATH: ${S}/lib/libkern/arch/i386 -SRCS+= moddi3.c divdi3.c qdivrem.c +SRCS+= divdi3.c moddi3.c qdivrem.c udivdi3.c umoddi3.c .PATH: ${S}/lib/libkern SRCS+= strlcpy.c diff --git a/sys/arch/i386/stand/pxeboot/Makefile b/sys/arch/i386/stand/pxeboot/Makefile index ae861e70b0d..83cfd0de5b8 100644 --- a/sys/arch/i386/stand/pxeboot/Makefile +++ b/sys/arch/i386/stand/pxeboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2013/01/18 21:09:04 espie Exp $ +# $OpenBSD: Makefile,v 1.15 2013/04/23 16:41:13 jsing Exp $ MAN= pxeboot.8 @@ -38,7 +38,7 @@ SRCS+= bootp.c ether.c netif.c rpc.c SRCS+= aes_xts.c explicit_bzero.c hmac_sha1.c pbkdf2.c rijndael.c sha1.c .PATH: ${S}/lib/libkern/arch/i386 -SRCS+= moddi3.c divdi3.c qdivrem.c +SRCS+= divdi3.c moddi3.c qdivrem.c udivdi3.c umoddi3.c .PATH: ${S}/lib/libkern SRCS+= strlcpy.c |