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
691bdbd1
Commit
691bdbd1
authored
Jun 23, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Rename the shared heap segment to avoid a Mac OS linker bug with 16-char names.
parent
e920f5f7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
main.c
loader/main.c
+1
-1
No files found.
configure
View file @
691bdbd1
...
...
@@ -7274,7 +7274,7 @@ fi
IOKITLIB
=
"-framework IOKit -framework CoreFoundation"
LDEXECFLAGS
=
"-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHARED
_
HEAP,0x7f000000"
LDEXECFLAGS
=
"-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHAREDHEAP,0x7f000000"
if
test
"
$ac_cv_header_DiskArbitration_DiskArbitration_h
"
=
"yes"
then
...
...
configure.ac
View file @
691bdbd1
...
...
@@ -580,7 +580,7 @@ case $host_os in
AC_SUBST(SECURITYLIB,"-framework Security -framework CoreFoundation")
AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
AC_SUBST(IOKITLIB,"-framework IOKit -framework CoreFoundation")
AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHARED
_
HEAP,0x7f000000"])
AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHAREDHEAP,0x7f000000"])
if test "$ac_cv_header_DiskArbitration_DiskArbitration_h" = "yes"
then
dnl DiskArbitration API is not public on Darwin < 8.0, use it only if header found
...
...
loader/main.c
View file @
691bdbd1
...
...
@@ -41,7 +41,7 @@
#ifdef __APPLE__
asm
(
".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x60000000"
);
asm
(
".zerofill WINE_SHARED
_HEAP, WINE_SHARED_
HEAP, ___wine_shared_heap, 0x03000000"
);
asm
(
".zerofill WINE_SHARED
HEAP, WINE_SHARED
HEAP, ___wine_shared_heap, 0x03000000"
);
extern
char
__wine_dos
[
0x60000000
],
__wine_shared_heap
[
0x03000000
];
static
const
struct
wine_preload_info
wine_main_preload_info
[]
=
...
...
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