Re: shell failure on tools/wineinstall

2007-04-26 Thread Ben Taylor
-- Original message -- From: Alexandre Julliard <[EMAIL PROTECTED]> > Detlef Riekenberg <[EMAIL PROTECTED]> writes: > > > On Do, 2007-04-26 at 13:42 +, Ben Taylor wrote: > > > > > >> if [ ! `which wine` ] > >> > > > > data=`which wine` > > if [ -n "$dat

Re: shell failure on tools/wineinstall

2007-04-26 Thread Alexandre Julliard
Detlef Riekenberg <[EMAIL PROTECTED]> writes: > On Do, 2007-04-26 at 13:42 +, Ben Taylor wrote: > > >> if [ ! `which wine` ] >> > > data=`which wine` > if [ -n "$data" -a -x "$data" ] > then > # found wine > WINEINSTALLED=yes > else > echo "Could not find wine on your system. Ru

Re: shell failure on tools/wineinstall

2007-04-26 Thread Detlef Riekenberg
On Do, 2007-04-26 at 13:42 +, Ben Taylor wrote: > if [ ! `which wine` ] > data=`which wine` if [ -n "$data" -a -x "$data" ] then # found wine WINEINSTALLED=yes else echo "Could not find wine on your system. Run wineinstall as root to install wine" echo "before re-running win

shell failure on tools/wineinstall

2007-04-26 Thread Ben Taylor
Ran into this error after building wine again. Not sure why I haven't seen this before, but: tools/wineinstall: line 272: [: too many arguments which translates to this line: if [ ! `which wine` ] On Solaris, if I do "which wine", I get a no wine in (long list of path

DPLAYX_ConstructData error during tools/wineinstall

2005-03-02 Thread Paul Vriens
Hi, I don't know when it started and if found I wasn't able to reproduce, but this is the message I sometimes get during a tools/wineinstall on a clean cvs install: Configuring Wine for a no-windows install in /data/wine-c... err:dplay:DPLAYX_ConstructData : unable to map static

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Mike Hearn
On Thu, 2005-01-20 at 20:32 +0100, Paul Vriens wrote: > Sorry, didn't help. > > I'm going to try Rob's suggestions now. Right, Alexandre just clued me in that anonymous mmaps are always zerod. Nice theory, but no cigar this time. I've been able to reproduce the bug (sometimes) and am narrowing it

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Thu, 2005-01-20 at 20:17, Mike Hearn wrote: > On Thu, 20 Jan 2005 19:36:27 +0100, Paul Vriens wrote: > > When I do the same change now, the X Error is gone as well. Does this > > give you a clue? > > Could you try this patch please? > > --- dlls/ntdll/thread.c (revision 109) > +++ dlls/ntdll/

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Robert Shearman
Paul Vriens wrote: On Thu, 2005-01-20 at 18:21, Robert Shearman wrote: If it's heap corruption then it could well depend on the order of allocations, so it could be timing dependent. I've attached a patch that poisons the apartment structure after when it is freed so that hopefully any use-aft

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Mike Hearn
On Thu, 20 Jan 2005 19:36:27 +0100, Paul Vriens wrote: > When I do the same change now, the X Error is gone as well. Does this > give you a clue? Could you try this patch please? --- dlls/ntdll/thread.c (revision 109) +++ dlls/ntdll/thread.c (local) @@ -73,6 +73,7 @@ static TEB *alloc_teb( ULON

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Thu, 2005-01-20 at 18:21, Robert Shearman wrote: > If it's heap corruption then it could well depend on the order of > allocations, so it could be timing dependent. > I've attached a patch that poisons the apartment structure after when it > is freed so that hopefully any use-after-free will b

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Thu, 2005-01-20 at 18:21, Robert Shearman wrote: > If it's heap corruption then it could well depend on the order of > allocations, so it could be timing dependent. > I've attached a patch that poisons the apartment structure after when it > is freed so that hopefully any use-after-free will b

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Thu, 2005-01-20 at 18:21, Robert Shearman wrote: > Paul Vriens wrote: > > >On Thu, 2005-01-20 at 11:47, Paul Vriens wrote: > > > > > >>On Wed, 2005-01-19 at 20:32, Alexandre Julliard wrote: > >> > >> > >>>Paul Vriens <[EMAIL PROTECTED]> writes: > >>> > >>> > >>> > and part of a

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Robert Shearman
Paul Vriens wrote: On Thu, 2005-01-20 at 11:47, Paul Vriens wrote: On Wed, 2005-01-19 at 20:32, Alexandre Julliard wrote: Paul Vriens <[EMAIL PROTECTED]> writes: and part of a trace: 0009:trace:ole:COM_ApartmentRelease destroying apartment 0x77e64460, oxid 80009 Looks li

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Thu, 2005-01-20 at 11:47, Paul Vriens wrote: > On Wed, 2005-01-19 at 20:32, Alexandre Julliard wrote: > > Paul Vriens <[EMAIL PROTECTED]> writes: > > > > > and part of a trace: > > > > > > 0009:trace:ole:COM_ApartmentRelease destroying apartment 0x77e64460, > > > oxid 80009 > > > > Looks

Re: Regression : tools/wineinstall fails with an X Error

2005-01-20 Thread Paul Vriens
On Wed, 2005-01-19 at 20:32, Alexandre Julliard wrote: > Paul Vriens <[EMAIL PROTECTED]> writes: > > > and part of a trace: > > > > 0009:trace:ole:COM_ApartmentRelease destroying apartment 0x77e64460, > > oxid 80009 > > Looks like some sort of heap corruption, the apartment pointer is > susp

Re: Regression : tools/wineinstall fails with an X Error

2005-01-19 Thread Alexandre Julliard
Paul Vriens <[EMAIL PROTECTED]> writes: > and part of a trace: > > 0009:trace:ole:COM_ApartmentRelease destroying apartment 0x77e64460, > oxid 80009 Looks like some sort of heap corruption, the apartment pointer is suspiciously similar to the bad contents of the x11drv window structure. > I

Re: Regression : tools/wineinstall fails with an X Error

2005-01-19 Thread Paul Vriens
On Wed, 2005-01-19 at 16:53, Alexandre Julliard wrote: > "Paul Vriens" <[EMAIL PROTECTED]> writes: > > > doing a tools/wineinstall on a clean system yields in an X-Error. > > What's the X error? The error: (default is /home/paul/.wine/drive_c) /data/w

Re: Regression : tools/wineinstall fails with an X Error

2005-01-19 Thread Alexandre Julliard
"Paul Vriens" <[EMAIL PROTECTED]> writes: > doing a tools/wineinstall on a clean system yields in an X-Error. What's the X error? -- Alexandre Julliard [EMAIL PROTECTED]

Re: Regression : tools/wineinstall fails with an X Error

2005-01-19 Thread Rob Shearman
Paul Vriens wrote: Hi, doing a tools/wineinstall on a clean system yields in an X-Error. Doing: winedbg rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 128 wine.inf gives: .. Wine-dbg>bt Backtrace: =>1 0x00abec49 (0x00a6d7f4) 2 0x00656d76 _XcmsSine+0xe6 in x11drv (0x00a6d8

Regression : tools/wineinstall fails with an X Error

2005-01-19 Thread Paul Vriens
Hi, doing a tools/wineinstall on a clean system yields in an X-Error. Doing: winedbg rundll32.exe setupapi.dll,InstallHinfSection DefaultInstall 128 wine.inf gives: .. Wine-dbg>bt Backtrace: =>1 0x00abec49 (0x00a6d7f4) 2 0x00656d76 _XcmsSine+0xe6 in x11drv (0x00a6d818) 3 0x00

Re: tools/wineinstall

2004-12-09 Thread Christian Britz
Bon soir Vincent, dear all, Vincent Béron schrieb: >That's because it's unable to determine how it was installed in the >first place, and where the files are located. The "wine" program itself >is usually easy to find, but not necessarily so for the dlls and other >installed files. > >rpm -e, the

Re: tools/wineinstall

2004-12-09 Thread Vincent Béron
Le mar 07/12/2004 à 21:21, Christian Britz a écrit : > Dear all, > > the script tools/wineinstall suggest to uninstall wine first if you > update an existing installation. > > This makes senses but it is uncomfortable that the script doesn't offer > the option to do tha

tools/wineinstall

2004-12-07 Thread Christian Britz
Dear all, the script tools/wineinstall suggest to uninstall wine first if you update an existing installation. This makes senses but it is uncomfortable that the script doesn't offer the option to do that for the user. You always have to su before installing a new version Thx Christian

Re: wine/tools wineinstall

2004-04-15 Thread Alexandre Julliard
Saulius Krasuckas <[EMAIL PROTECTED]> writes: > what about the case when ~/.wine/dosdevices exists but is empty? I don't think we need to worry about that, this shouldn't happen in normal use. > PS eghm, should it be bad for wineinstall and winecfg to share common code > for creating links in do

wine/tools wineinstall

2004-04-14 Thread Saulius Krasuckas
> Log message: > Only create the device symlinks the first time around. > + # Check if dosdevices exists and create it if necessary > + if [ ! -d ~/.wine/dosdevices ] > + then > +mkdir ~/.wine/dosdevices > +ln -s /mnt/fd0 ~/.wine/dosdevices/a: > +ln -s $CROOT ~/.wine/dosdevice

RE: wine/ tools/wineinstall loader/Makefile.in loa ...

2003-11-13 Thread Mike Hearn
On Wed, 12 Nov 2003 07:33:36 +, Sir Robert Shearman scribed thus: >> Log message: >> Added a wine-glibc binary that detects the glibc threading >> in use and >> execs the corresponding wine binary. >> Removed the --with-nptl configure option. > > Cool! Well done. > > Rob Seco

RE: wine/ tools/wineinstall loader/Makefile.in loa ...

2003-11-12 Thread Robert Shearman
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Behalf Of Alexandre Julliard > Sent: 12 November 2003 03:28 > To: [EMAIL PROTECTED] > Subject: wine/ tools/wineinstall loader/Makefile.in loa ... > > Log message: > Added a wine-gl