summaryrefslogtreecommitdiff
path: root/UnixPkg/Sec/X64
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-03-05 08:08:47 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2011-03-05 08:08:47 +0000
commit692477d411ec4e489caa04308ab6ed12edb3646d (patch)
treea3650c669a7e91f9dbb07c0e7fe8edc7b9b00ce9 /UnixPkg/Sec/X64
parent2dcef689963d9f975b0d792e677c2d43cf3cc995 (diff)
downloadedk2-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/Sec/X64')
-rw-r--r--UnixPkg/Sec/X64/MangleGasket.S10
1 files changed, 3 insertions, 7 deletions
diff --git a/UnixPkg/Sec/X64/MangleGasket.S b/UnixPkg/Sec/X64/MangleGasket.S
index d457f6be12..ea1e6aa2eb 100644
--- a/UnixPkg/Sec/X64/MangleGasket.S
+++ b/UnixPkg/Sec/X64/MangleGasket.S
@@ -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