* Broken build detected by mmadia: When compiling with jam -j8 the atheroswifi

driver may not build due to dependencies to the kernel_c++_structs.h header.
  Normally this header is build by jam when building the libfreebsd_network.a
  library, with the first network driver so to speak.
  Adding a rule to the atheroswifi Jamfile to build kernel_c++_structs.h
  would be the wrong fix, because the atheroswifi doesn't need condition
  variables.
  The correct fix is to remove the #include <condvar.h> statement from proc.h.
  And while I'm at it, I remove all the other include statements, too, as none
  of them are needed by this header (all drivers are still compiling).
* Thank you mmadia for the heads up.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35349 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Colin Günther 2010-01-30 19:04:45 +00:00
parent 382a4b129a
commit 3c08c615dc
1 changed files with 0 additions and 8 deletions

View File

@ -6,12 +6,4 @@
#define _FBSD_COMPAT_SYS_PROC_H_
#include <sys/callout.h>
#include <sys/event.h>
#include <sys/condvar.h>
#include <sys/queue.h>
#include <sys/_mutex.h>
#include <sys/priority.h>
#include <sys/pcpu.h>
#endif /* _FBSD_COMPAT_SYS_PROC_H_ */