From 3c08c615dc520164eb6434259bcbb18cc08bce4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20G=C3=BCnther?= Date: Sat, 30 Jan 2010 19:04:45 +0000 Subject: [PATCH] * 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 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 --- src/libs/compat/freebsd_network/compat/sys/proc.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libs/compat/freebsd_network/compat/sys/proc.h b/src/libs/compat/freebsd_network/compat/sys/proc.h index 6fdab128f6..1eb862a86a 100644 --- a/src/libs/compat/freebsd_network/compat/sys/proc.h +++ b/src/libs/compat/freebsd_network/compat/sys/proc.h @@ -6,12 +6,4 @@ #define _FBSD_COMPAT_SYS_PROC_H_ -#include -#include -#include -#include -#include -#include -#include - #endif /* _FBSD_COMPAT_SYS_PROC_H_ */