Magellan Linux

Contents of /trunk/wine/patches/wine-0.9.49-LDPATH-hack.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 413 - (show annotations) (download)
Thu Nov 15 00:20:52 2007 UTC (16 years, 6 months ago) by niro
File size: 728 byte(s)
-temp fix for LDPATH issue

1 diff -Naur wine-0.9.49/configure.ac wine-0.9.49-magellan/configure.ac
2 --- wine-0.9.49/configure.ac 2007-11-09 17:56:12.000000000 +0100
3 +++ wine-0.9.49-magellan/configure.ac 2007-11-15 01:26:08.000000000 +0100
4 @@ -1200,19 +1200,12 @@
5
6 dnl **** Platform-specific checks ****
7
8 -AC_SUBST(LDPATH,"")
9 case $build_os in
10 cygwin*|mingw32*)
11 LDPATH="PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\""
12 ;;
13 darwin*|macosx*)
14 ;;
15 - linux*|solaris*) dnl FIXME: What other platforms support $ORIGIN?
16 - if test -z "$LDRPATH_LOCAL"
17 - then
18 - LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\""
19 - fi
20 - ;;
21 *)
22 LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\""
23 ;;