svn commit: r276840 - head/sys/i386/i386
Warner Losh
imp at FreeBSD.org
Thu Jan 8 17:46:43 UTC 2015
Author: imp
Date: Thu Jan 8 17:46:42 2015
New Revision: 276840
URL: https://svnweb.freebsd.org/changeset/base/276840
Log:
Need to include opt_cpu.h to access CPU_DISABLE_SSE option. Thankfully, this
only broke i686 configs that disabled SSE.
Submitted by: nyan@
Modified:
head/sys/i386/i386/elf_machdep.c
Modified: head/sys/i386/i386/elf_machdep.c
==============================================================================
--- head/sys/i386/i386/elf_machdep.c Thu Jan 8 17:41:28 2015 (r276839)
+++ head/sys/i386/i386/elf_machdep.c Thu Jan 8 17:46:42 2015 (r276840)
@@ -26,6 +26,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_cpu.h"
+
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
More information about the svn-src-all
mailing list