Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
95740b30
Commit
95740b30
authored
Oct 08, 2010
by
Austin English
Committed by
Alexandre Julliard
Oct 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix compile on Hurd.
parent
7bfa513b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
macho_module.c
dlls/dbghelp/macho_module.c
+3
-3
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
95740b30
...
...
@@ -5798,6 +5798,7 @@ for ac_header in \
linux/types.h
\
linux/ucdrom.h
\
mach-o/nlist.h
\
mach-o/loader.h
\
mach/mach.h
\
mach/machine.h
\
machine/cpu.h
\
...
...
configure.ac
View file @
95740b30
...
...
@@ -418,6 +418,7 @@ AC_CHECK_HEADERS(\
linux/types.h \
linux/ucdrom.h \
mach-o/nlist.h \
mach-o/loader.h \
mach/mach.h \
mach/machine.h \
machine/cpu.h \
...
...
dlls/dbghelp/macho_module.c
View file @
95740b30
...
...
@@ -26,7 +26,7 @@
#include "dbghelp_private.h"
#ifdef
__MACH__
#ifdef
HAVE_MACH_O_LOADER_H
#include <assert.h>
#include <stdarg.h>
...
...
@@ -1409,7 +1409,7 @@ struct module* macho_load_module(struct process* pcs, const WCHAR* name, unsign
return
ml
.
macho_info
.
module
;
}
#else
/* !__MACH__
*/
#else
/* HAVE_MACH_O_LOADER_H
*/
BOOL
macho_synchronize_module_list
(
struct
process
*
pcs
)
{
...
...
@@ -1441,4 +1441,4 @@ BOOL macho_load_debug_info(struct module* module, struct macho_file_map* fmap)
{
return
FALSE
;
}
#endif
/*
__MACH__
*/
#endif
/*
HAVE_MACH_O_LOADER_H
*/
include/config.h.in
View file @
95740b30
...
...
@@ -466,6 +466,9 @@
/* Define to 1 if you have the <mach-o/dyld_images.h> header file. */
#undef HAVE_MACH_O_DYLD_IMAGES_H
/* Define to 1 if you have the <mach-o/loader.h> header file. */
#undef HAVE_MACH_O_LOADER_H
/* Define to 1 if you have the <mach-o/nlist.h> header file. */
#undef HAVE_MACH_O_NLIST_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment