http://bugs.winehq.org/show_bug.cgi?id=3663
Summary: Running Qwix on wine version .9 crashes after the
initial loading screen
Product: Wine
Version: 0.9
Platform: Other
URL: www.teamavalaunch.com/qwix/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tn(a)chambers.no-ip.info
When I try and run Qwix using wine .9, I get the initial loading screen of the
app, but then shortly after it crashes. Attached is the log I generated from
+seh and debug info that a user on Freenode (thanks vitamin!!) helped me get.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3660
------- Additional Comments From hans(a)it.vu.nl 2005-26-10 07:00 -------
Created an attachment (id=1244)
--> (http://bugs.winehq.org/attachment.cgi?id=1244&action=view)
slightly improved stub implementation for SQLInstallDriverEx
This should get you past that error, but I'm afraid
the next call will be to SQLConfigDriver, which is also
an unimplemented stub. Let's take it one step at a time
though. Please try this patch and report back.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3662
Summary: aclocal.m4:WINE_GET_SONAME() may get a multiline result.
Product: Wine
Version: 0.9
Platform: PC
OS/Version: Solaris
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-ports
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: grubba(a)grubba.org
WINE_GET_SONAME does not protect against multiple lines in ldd output matching
the grep expression. This leads to configure failures on Solaris 10/x86.
>From config.log:
configure:13483: checking for -lGL soname
configure:13513: gcc -o conftest -I/usr/sfw/include -I/opt/sfw/include -I/opt/cs
w/include -L/usr/sfw/lib -R/usr/sfw/lib -L/usr/local/lib -R/usr/local/lib -L/op
t/sfw/lib -R/opt/sfw/lib -L/opt/csw/lib -R/opt/csw/lib conftest.c -lGL -L/usr/o
penwin/lib -R/usr/openwin/lib -lsocket -lnsl -lresolv -lsocket -lnsl >&5
configure:13519: $? = 0
configure:13522: test -z || test ! -s conftest.err
configure:13525: $? = 0
configure:13528: test -s conftest
configure:13531: $? = 0
configure:13548: result: libGL.so
libGL.so
configure:13557: checking for -ltxc_dxtn soname
WINE_GET_SONAME returning a multiline result causes all following configure
tests to fail due to the following lines in confdefs.h:
| #define SONAME_LIBGL "libGL.so
| libGL.so"
| /* end confdefs.h. */
Workaround:
Seed the configure cache by setting ac_cv_lib_soname_GL to "libGL.so":
ac_cv_lib_soname_GL="libGL.so" ./configure
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2778
------- Additional Comments From marcus(a)jet.franken.de 2005-26-10 06:54 -------
can you call the respective gcc line by hand,
gcc .... stuff ... --save-temps
cp xxx.s xxx.s.nom32
cp xxx.i xxx.i.nom32
and then
gcc -m32 ... same stuff .. --save-temps
cp xxx.s xxx.s.m32
cp xxx.i xxx.i.m32
and attach the 4 files to the report. Or at least the .s files.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3427
lordzanon(a)poczta.onet.pl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From lordzanon(a)poczta.onet.pl 2005-26-10 06:38 -------
Works in wine 0.9, so I'm closing it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2778
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2005-26-10 06:14 -------
even if it's not necessary the flag somehow seems to fix this weird bug. any
ideas how that's possible?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3660
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3660
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |hans(a)it.vu.nl
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-26-10 05:30 -------
Hans, do you want to have a look at it, since you just implemented
InstallDrivermanager ?
Thanks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2778
------- Additional Comments From marcus(a)jet.franken.de 2005-26-10 05:19 -------
this -m32 should not be necessary because the compiler should create only
32bit binaries anyway.
better way to suply -m32 is btw:
CC="gcc -m32" ./configure ...
and leave CFLAGS out.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.