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
3a0233d6
Commit
3a0233d6
authored
Jul 02, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Don't set LDPATH if not needed.
parent
446befbb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
7 deletions
+22
-7
configure
configure
+10
-4
configure.ac
configure.ac
+12
-3
No files found.
configure
View file @
3a0233d6
...
...
@@ -14089,16 +14089,22 @@ If you are using Linux, you will need a newer binutils.
{
(
exit
1
)
;
exit
1
;
}
;
}
fi
LDPATH
=
""
case
$build_os
in
cygwin
*
|
mingw32
*
)
LDPATH
=
"PATH=
\"\$
(TOOLSDIR)/libs/wine:
\$\$
PATH
\"
"
;;
;;
darwin
*
|
macosx
*
)
LDPATH
=
"DYLD_LIBRARY_PATH=
\"\$
(TOOLSDIR)/libs/wine:
\$\$
DYLD_LIBRARY_PATH
\"
"
;;
;;
linux
*
|
solaris
*
)
if
test
-z
"
$LDRPATH_LOCAL
"
then
LDPATH
=
"LD_LIBRARY_PATH=
\"\$
(TOOLSDIR)/libs/wine:
\$\$
LD_LIBRARY_PATH
\"
"
fi
;;
*
)
LDPATH
=
"LD_LIBRARY_PATH=
\"\$
(TOOLSDIR)/libs/wine:
\$\$
LD_LIBRARY_PATH
\"
"
;;
;;
esac
case
$host_os
in
...
...
configure.ac
View file @
3a0233d6
...
...
@@ -1064,13 +1064,22 @@ If you are using Linux, you will need a newer binutils.]
)
fi
AC_SUBST(LDPATH,"")
case $build_os in
cygwin*|mingw32*)
AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\"") ;;
LDPATH="PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\""
;;
darwin*|macosx*)
AC_SUBST(LDPATH,"DYLD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$DYLD_LIBRARY_PATH\"") ;;
;;
linux*|solaris*) dnl FIXME: What other platforms support $ORIGIN?
if test -z "$LDRPATH_LOCAL"
then
LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\""
fi
;;
*)
AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\"") ;;
LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\""
;;
esac
dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet
...
...
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