http://qa.mandrakesoft.com/show_bug.cgi?id=2064





------- Additional Comments From [EMAIL PROTECTED]  2003-03-15 02:52 -------
I found (more by accident) that glibc 2.3.2 seems to be affecting it. If you
replace it with glibc 2.3.1 it appears to solve the problem. This involves using
the --oldpackage option of rpm to replace a package with an older one.
This actually came to my notice when apps I was running on my main system (mdk
9.0) in Crossover Office all stopped after installing some new packages from the
9.1 rc1. I was able to trace it back to the glibc being upgraded, so I
downgraded the glibc on my test box running 9.1rc1 and it worked. I can now run
wine/winex successfully in 9.1rc1. Hope this is of some help.



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.



------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: UNCONFIRMED
creation_date: 
description: 
When running wine, it won't create its own socket

[EMAIL PROTECTED] ~]$ tail -n 1 bin/kazaa 
$ARTSCMD wine ~/.wine/fake_windows/Program\ Files/KaZaA\ Lite/Kazaa.exe
[EMAIL PROTECTED] ~]$ kazaa
wine: lstat /tmp/.wine-todd/server-301-17dbe8/socket : No such file or directory
[EMAIL PROTECTED] ~]$ vdir /tmp/.wine-todd/server-301-17dbe8/
total 0
-rw-r--r--    1 todd     todd            0 Feb 20 13:55 lock
srwxr-xr-x    1 todd     todd            0 Oct  2 18:44 socket.sav
[EMAIL PROTECTED] ~]$ vdir /tmp/.wine-todd/                  
total 4
drwx------    2 todd     todd         4096 Feb 20 13:55 server-301-17dbe8
[EMAIL PROTECTED] ~]$ cp -a /tmp/.wine-todd/server-301-17dbe8/socket.sav
/tmp/.wine-todd/server-301-17dbe8/socket
[EMAIL PROTECTED] ~]$ kazaa
ArtsD is running
The command will execute through artsdsp
fixme:win32:PE_CreateModule Unknown directory 15 ignored
Loading required GL library /usr/X11R6/lib/libGL.so.1.4.500
err:win32:PE_fixup_imports No implementation for SHELL32.DLL.712 imported from
C:\Windows\System\comdlg32.dll, setting to 0xdeadbeef
<snip>

Works regularly.  Exit, then try again:

[EMAIL PROTECTED] ~]$ kazaa
ArtsD is running
The command will execute through artsdsp
wine: lstat /tmp/.wine-todd/server-301-17dbe8/socket : No such file or directory

The full kazaa wrapper script is:
[EMAIL PROTECTED] ~]$ cat bin/kazaa 
#!/bin/sh
### Brad Laue
# Wrapper launching Kazaa through wine; traps /dev/dsp through the arts 
# daemon if KDE is running, working around a bug.
#
ARTSCMD=""
ARTSSTAT=`artsshell status | head -1 | awk '{print $3}'`
case $ARTSSTAT in
suspended)
        echo "ArtsD is not running."
        ARTSCMD="exec"
        ;;
busy)
        echo "ArtsD is running"
        ARTSCMD="artsdsp"
        echo "The command will execute through $ARTSCMD"
        ;;
*)
        echo "Meh"
        ARTSCMD=""
        ;;
esac
$ARTSCMD wine ~/.wine/fake_windows/Program\ Files/KaZaA\ Lite/Kazaa.exe

Reply via email to