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


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED




------- Additional Comments From [EMAIL PROTECTED]  2003-02-07 15:20 -------
problem related to wine compiled for glibc-2.2 running under 2.3, fixed long 
time ago 

-- 
Configure bugmail: http://qa.mandrakesoft.com/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.


------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
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