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
79c2e077
Commit
79c2e077
authored
Jun 08, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Set install name to an absolute path for the installed library on Mac OS.
parent
9719bcaf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
Makefile.in
libs/wine/Makefile.in
+2
-2
No files found.
configure
View file @
79c2e077
...
...
@@ -13161,7 +13161,7 @@ fi
DLLFLAGS
=
"
$DLLFLAGS
-fPIC"
LDDLLFLAGS
=
"-bundle -multiply_defined suppress"
LIBWINE_LDFLAGS
=
"-multiply_defined suppress"
LDSHARED
=
"
\$
(CC) -dynamiclib
-install_name @executable_path/
\`\$
(RELPATH)
\$
(bindir)
\$
(libdir)
\`
/
\$
(DYNAME)
"
LDSHARED
=
"
\$
(CC) -dynamiclib"
STRIP
=
"
$STRIP
-u -r"
COREFOUNDATIONLIB
=
"-framework CoreFoundation"
...
...
configure.ac
View file @
79c2e077
...
...
@@ -975,7 +975,7 @@ case $host_os in
DLLFLAGS="$DLLFLAGS -fPIC"
LDDLLFLAGS="-bundle -multiply_defined suppress"
LIBWINE_LDFLAGS="-multiply_defined suppress"
LDSHARED="\$(CC) -dynamiclib
-install_name @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/\$(DYNAME)
"
LDSHARED="\$(CC) -dynamiclib"
STRIP="$STRIP -u -r"
dnl declare needed frameworks
AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
...
...
libs/wine/Makefile.in
View file @
79c2e077
...
...
@@ -134,10 +134,10 @@ libwine.dll: $(OBJS) wine.def Makefile.in
DYLIB_LDFLAGS
=
-compatibility_version
$(SOVERSION)
-current_version
$(VERSION)
libwine.$(VERSION).dylib
:
$(OBJS) $(RELPATH) Makefile.in
$(LDSHARED)
$(DYLIB_LDFLAGS)
$(OBJS)
$(EXTRALIBS)
$(LDFLAGS)
$(LIBS)
-o
$@
$(LDSHARED)
-install_name
$(libdir)
/
$(DYNAME)
$(DYLIB_LDFLAGS)
$(OBJS)
$(EXTRALIBS)
$(LDFLAGS)
$(LIBS)
-o
$@
libwine.$(SOVERSION).dylib
:
libwine.$(VERSION).dylib
$(RM)
$@
&&
$(LN_S)
libwine.
$(VERSION)
.dylib
$@
cp
-p
libwine.
$(VERSION)
.dylib
$@
&&
install_name_tool
-id
@executable_path/
`
$(RELPATH)
$(bindir)
$(libdir)
`
/
$(DYNAME)
$@
||
$(RM)
$@
libwine.dylib
:
libwine.$(SOVERSION).dylib
$(RM)
$@
&&
$(LN_S)
libwine.
$(SOVERSION)
.dylib
$@
...
...
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