diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-05 08:08:47 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-05 08:08:47 +0000 |
commit | 692477d411ec4e489caa04308ab6ed12edb3646d (patch) | |
tree | a3650c669a7e91f9dbb07c0e7fe8edc7b9b00ce9 /UnixPkg/Include/Common | |
parent | 2dcef689963d9f975b0d792e677c2d43cf3cc995 (diff) | |
download | edk2-platforms-692477d411ec4e489caa04308ab6ed12edb3646d.tar.xz |
UnixPkg: Fix build for Linux
UnixPkg/UnixSnpDxe is currently BSD/OS X specific.
Therefore we only build it if "-D NETWORK_SUPPORT"
is used on the build command line.
UnixPkg/build.sh and UnixPkg/build64.sh are updated to
automatically define NETWORK_SUPPORT if building on OS X.
<net/if_dl.h> and <net/bpf.h> are also only included in
UnixPkg/Include/Common/UnixInclude.h if __APPLE__ is defined.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11346 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg/Include/Common')
-rw-r--r-- | UnixPkg/Include/Common/UnixInclude.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UnixPkg/Include/Common/UnixInclude.h b/UnixPkg/Include/Common/UnixInclude.h index e37fc4265a..3dbe09d8a2 100644 --- a/UnixPkg/Include/Common/UnixInclude.h +++ b/UnixPkg/Include/Common/UnixInclude.h @@ -62,11 +62,11 @@ Abstract: #include <netdb.h>
#include <netinet/in.h>
#include <net/if.h>
-#include <net/if_dl.h>
#include <ifaddrs.h>
-#include <net/bpf.h>
#ifdef __APPLE__
+#include <net/if_dl.h>
+#include <net/bpf.h>
#include <sys/param.h>
#include <sys/mount.h>
#define _XOPEN_SOURCE
|