diff options
author | nyan <nyan@FreeBSD.org> | 2005-11-09 12:22:26 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2005-11-09 12:22:26 +0000 |
commit | ca9c26ef897fe1292a20b916d70dc57f7f1b86fd (patch) | |
tree | 0c20a8c5bc59a69c11620f34352405223b9d62a8 | |
parent | d172c34eff421b891e451456d0a555e7bba3d61f (diff) | |
download | FreeBSD-src-ca9c26ef897fe1292a20b916d70dc57f7f1b86fd.zip FreeBSD-src-ca9c26ef897fe1292a20b916d70dc57f7f1b86fd.tar.gz |
Fix pc98 build.
-rw-r--r-- | sys/i386/i386/pmap.c | 2 | ||||
-rw-r--r-- | sys/i386/i386/vm_machdep.c | 2 | ||||
-rw-r--r-- | sys/i386/pci/pci_cfgreg.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index 36aac8d..0295f77 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -106,7 +106,9 @@ __FBSDID("$FreeBSD$"); #include "opt_cpu.h" #include "opt_pmap.h" #include "opt_msgbuf.h" +#ifndef PC98 #include "opt_xbox.h" +#endif #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/i386/i386/vm_machdep.c b/sys/i386/i386/vm_machdep.c index 217ae8b..d176b82 100644 --- a/sys/i386/i386/vm_machdep.c +++ b/sys/i386/i386/vm_machdep.c @@ -47,7 +47,9 @@ __FBSDID("$FreeBSD$"); #include "opt_npx.h" #include "opt_reset.h" #include "opt_cpu.h" +#ifndef PC98 #include "opt_xbox.h" +#endif #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/i386/pci/pci_cfgreg.c b/sys/i386/pci/pci_cfgreg.c index 869649d..4ad3f44 100644 --- a/sys/i386/pci/pci_cfgreg.c +++ b/sys/i386/pci/pci_cfgreg.c @@ -30,7 +30,9 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#ifndef PC98 #include "opt_xbox.h" +#endif #include <sys/param.h> #include <sys/systm.h> |