o Compat options have to be defined before sys/ioccom.h included, so move

inclusion of right after sys/param.h.
o Only vt_core module use compat options, move it from common header to module.

Reported by:	Larry Rosenman ler at lerctr dot org

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Aleksandr Rybalko 2013-12-09 15:28:34 +00:00
parent 0f49db6e47
commit c323f8035b
2 changed files with 3 additions and 1 deletions

View file

@ -46,7 +46,6 @@
#include <sys/terminal.h>
#include <sys/sysctl.h>
#include "opt_compat.h"
#include "opt_syscons.h"
#include "opt_splash.h"

View file

@ -34,6 +34,9 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include "opt_compat.h"
#include <sys/consio.h>
#include <sys/eventhandler.h>
#include <sys/fbio.h>