Date: Thu, 19 Apr 2018 08:56:54 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r332761 - stable/11/sys/x86/x86 Message-ID: <201804190856.w3J8usIs063080@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804190856.w3J8usIs063080>