CVS: winex configure.ac,1.114,1.115
[email protected] 14 Dec 2007 20:07:28 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex configure.ac,1.114,1.115Update of /var/lib/cvsd/cvsroot/winex
In directory agravaine:/tmp/cvs-serv13872
Modified Files:
configure.ac
Log Message:
Add the port/ subdirectory to our LD_LIBRARY_PATH override, so we can use
it to run tools linked against libwine_port.so (widl) at build time.
Index: configure.ac
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/configure.ac,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- configure.ac 14 Dec 2007 20:07:05 -0000 1.114
+++ configure.ac 14 Dec 2007 20:07:26 -0000 1.115
@@ -1458,12 +1458,12 @@
if test "$LIBEXT" = "so"; then
DLLFLAGS="-fPIC"
- LDPATH="LD_LIBRARY_PATH=\"\$(TOPOBJDIR)/unicode:\$\$LD_LIBRARY_PATH\""
+ LDPATH="LD_LIBRARY_PATH=\"\$(TOPOBJDIR)/port:\$(TOPOBJDIR)/unicode:\$\$LD_LIBRARY_PATH\""
elif test "$LIBEXT" = "dll"; then
#DLLFLAGS="-fPIC" # -fPIC doesn't work(at least in cygwin-b20) - FIXME
- LDPATH="PATH=\"\$(TOPOBJDIR)/unicode:\$\$PATH\""
+ LDPATH="PATH=\"\$(TOPOBJDIR)/port:\"\$(TOPOBJDIR)/unicode:\$\$PATH\""
elif test "$LIBEXT" = "dylib"; then
- LDPATH="DYLD_LIBRARY_PATH=\"\$(TOPOBJDIR)/unicode:\$\$DYLD_LIBRARY_PATH\""
+ LDPATH="DYLD_LIBRARY_PATH=\"\$(TOPOBJDIR)/port:\$(TOPOBJDIR)/unicode:\$\$DYLD_LIBRARY_PATH\""
LDSHARED="\$(CC) -dynamiclib -fPIC -undefined dynamic_lookup"
fi