William Knop : dbghelp: Fix for non-elf build (undefined symbol: _elf_is_in_thunk_area).

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jun 27 15:49:13 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 289a068b4fcc61821f913f0be9c8dce2b12cce50
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=289a068b4fcc61821f913f0be9c8dce2b12cce50

Author: William Knop <william.knop at gmail.com>
Date:   Tue Jun 27 02:32:38 2006 -0400

dbghelp: Fix for non-elf build (undefined symbol: _elf_is_in_thunk_area).

---

 dlls/dbghelp/elf_module.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c
index 4e86ec2..11ddfb8 100644
--- a/dlls/dbghelp/elf_module.c
+++ b/dlls/dbghelp/elf_module.c
@@ -1489,4 +1489,10 @@ BOOL elf_load_debug_info(struct module* 
 {
     return FALSE;
 }
+
+int elf_is_in_thunk_area(unsigned long addr,
+                         const struct elf_thunk_area* thunks)
+{
+    return -1;
+}
 #endif  /* __ELF__ */




More information about the wine-cvs mailing list