svn commit: r332761 - stable/11/sys/x86/x86

Andriy Gapon avg at FreeBSD.org
Thu Apr 19 08:56:55 UTC 2018


Author: avg
Date: Thu Apr 19 08:56:54 2018
New Revision: 332761
URL: https://svnweb.freebsd.org/changeset/base/332761

Log:
  fix pc98 compilation issue in r332760
  
  pc98 GENERIC still doesn't build, but at least there would be fewer
  issues to fix.

Modified:
  stable/11/sys/x86/x86/cpu_machdep.c

Modified: stable/11/sys/x86/x86/cpu_machdep.c
==============================================================================
--- stable/11/sys/x86/x86/cpu_machdep.c	Thu Apr 19 07:15:40 2018	(r332760)
+++ stable/11/sys/x86/x86/cpu_machdep.c	Thu Apr 19 08:56:54 2018	(r332761)
@@ -104,7 +104,9 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm_pager.h>
 #include <vm/vm_param.h>
 
+#ifndef PC98
 #include <isa/isareg.h>
+#endif
 
 #define	STATE_RUNNING	0x0
 #define	STATE_MWAIT	0x1


More information about the svn-src-all mailing list