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
This commit is contained in:
@@ -889,9 +889,8 @@ ASM_PFX(Gasketgetifaddrs):
|
||||
ret
|
||||
|
||||
|
||||
|
||||
ASM_GLOBAL _Gasketfreeifaddrs
|
||||
_Gasketfreeifaddrs:
|
||||
ASM_GLOBAL ASM_PFX(Gasketfreeifaddrs)
|
||||
ASM_PFX(Gasketfreeifaddrs):
|
||||
pushq %rbp // stack frame is for the debugger
|
||||
movq %rsp, %rbp
|
||||
|
||||
@@ -900,7 +899,7 @@ _Gasketfreeifaddrs:
|
||||
|
||||
movq %rcx, %rdi // Swizzle args
|
||||
|
||||
call _freeifaddrs
|
||||
call ASM_PFX(freeifaddrs)
|
||||
|
||||
|
||||
popq %rdi // restore state
|
||||
@@ -909,9 +908,6 @@ _Gasketfreeifaddrs:
|
||||
ret
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ASM_GLOBAL ASM_PFX(GasketUgaClose)
|
||||
ASM_PFX(GasketUgaClose):
|
||||
pushq %rbp // stack frame is for the debugger
|
||||
|
Reference in New Issue
Block a user