http://bugs.winehq.org/show_bug.cgi?id=33812
Bug #: 33812 Summary: wine installed outside of $PATH uses the wrong libwine.so Product: Wine Version: 1.6-rc2 Platform: x86 OS/Version: Linux Status: NEW Keywords: download, regression Severity: normal Priority: P2 Component: build-env AssignedTo: wine-bugs@winehq.org ReportedBy: austinenglish@gmail.com Classification: Unclassified
I install the latest wine to /usr/local, but have several old versions in /opt/oldwine/wine-$VERSION to make it easier to test old versions.
Starting with wine-1.5.30, however, there's a bug: austin@debian-home:~$ /opt/oldwine/wine-1.5.30/bin/wine --version wine-1.6-rc1 (which is the version currently in /usr/local/)
older wine had no issue: austin@debian-home:~$ /opt/oldwine/wine-1.4/bin/wine --version wine-1.4
Regression test blames: commit 11fe51b61b21bdaa517657f80d8e833c3bf0acf3 Author: Francois Gouget fgouget@free.fr Date: Mon May 6 01:05:33 2013 +0200
gphoto2.ds: Check for libgphoto2 and libgphoto2_port independently.
Reverting part of the patch fixes the issue: diff --git a/configure.ac b/configure.ac index c6b04ea..aa8cc8f 100644 --- a/configure.ac +++ b/configure.ac @@ -3172,7 +3172,7 @@ WINE_CONFIG_MAKEFILE([documentation]) WINE_CONFIG_MAKEFILE([fonts],,[install-lib]) WINE_CONFIG_MAKEFILE([include],,[install-dev]) WINE_CONFIG_MAKEFILE([libs/port]) -WINE_CONFIG_MAKEFILE([libs/wine]) +WINE_CONFIG_MAKEFILE([libs/wine],,[install-dev,install-lib]) WINE_CONFIG_MAKEFILE([libs/wpp]) WINE_CONFIG_MAKEFILE([loader],,[install-lib,manpage]) WINE_CONFIG_PROGRAM(aspnet_regiis,,[install])
I sent the patch, but filing a bug so that it's not lost in the freeze.