Make release is now falling over in if_fe.c due to Warner's pccard changes:

if_fe.c uses PCCARD_MODULE() and is part of GENERIC. I've #ifdef'ed out
the #include of "card.h" to hopefully disable pccard support in this
driver until it can be converted. I'm not positive this will fix make
release, but it can't possibly make it any worse than it is now.

I hope this stuff settles down soon.
This commit is contained in:
Bill Paul 1999-10-25 17:04:17 +00:00
parent 5dd05de905
commit b7da85ec26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52490
2 changed files with 6 additions and 0 deletions

View File

@ -102,7 +102,10 @@
#include <i386/isa/icu.h>
/* PCCARD suport */
/* XXX FIXME! doesn't work with new pccard code, must be converted! */
#ifdef notdef
#include "card.h"
#endif
#if NCARD > 0
#include <sys/kernel.h>
#include <sys/select.h>

View File

@ -102,7 +102,10 @@
#include <i386/isa/icu.h>
/* PCCARD suport */
/* XXX FIXME! doesn't work with new pccard code, must be converted! */
#ifdef notdef
#include "card.h"
#endif
#if NCARD > 0
#include <sys/kernel.h>
#include <sys/select.h>