RE: Startx on WinXP

2004-01-21 Thread Igor Pechtchanski
Hmm, the changes to startx in that patch were supposed to take care of the unquoted $HOME... Did the patch apply cleanly, or were some chunks rejected? That particular patch was against XFree86-bin-4.3.0-7, so it's possible that startx changed between that and -8... Another solution is to use 'm

RE: Startx on WinXP

2004-01-21 Thread Brian L. Walter
the *solution* was a cheat. I commented out the references in startx to $HOME. Since I don't have specific configurations, this is an acceptable white lie. The version of lesstif is 0.93.91-6. Interestingly enough, it's -2 on the win98 machine, on which mwm *does* work. I might try downgrading

RE: Startx on WinXP

2004-01-21 Thread Igor Pechtchanski
FWIW, if it was your HOME that contained "Documents and Settings", you can "mount 'c:/Documents and Settings' /home", and refer to "/cygdrive/c/Documents and Settings/brian" as "/home/brian"... This is still a band-aid, but a better one than using DOS-style paths. Igor On Wed, 21 Jan 2004

RE: Startx on WinXP

2004-01-21 Thread Igor Pechtchanski
What was the problem? What was missing in the original patch? Please share your fixes with the community - that way we all benefit. AFAIK, mwm doesn't paint the contents of the windows - it only controls the border, cursors, and other decorations. I doubt your problem is related to the paths.

RE: Startx on WinXP

2004-01-21 Thread Brian L. Walter
Okay, got startx to starup with out errors. It even works great with twm. However, if I switch to mwm, by just modifying startx, it starts the manager, paints the windows and clock, but, does not recognize *any* input, either keyboard or mouse. Is this the same kind of issue? And if so, based on

RE: Startx on WinXP

2004-01-21 Thread Brian L. Walter
Well, that didn't fix it. But you gave me somewhere to look. I might try the old dos way of naming directories, i.e. with the ~. I'll let ya know. Regards, Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Pechtchanski Sent: Wednesday, January

Re: Startx on WinXP

2004-01-21 Thread Brian L. Walterr
Thanks! That makes sense. I'll apply/look at the patch and go from there! Regards, On Wed, 2004-01-21 at 16:07, Igor Pechtchanski wrote: > On Wed, 21 Jan 2004, Brian L. Walter wrote: > > > Greetings, > > > > I've recently installd cygwin on both a win98 machine and a winxp machine. > > The win

Re: Startx on WinXP

2004-01-21 Thread Igor Pechtchanski
On Wed, 21 Jan 2004, Brian L. Walter wrote: > Greetings, > > I've recently installd cygwin on both a win98 machine and a winxp machine. > The win98 installs works great (except for being really slow, but that's a > hardware issue.) On the XP side, I've installed it, but getting some > strange beh

Startx on WinXP

2004-01-21 Thread Brian L. Walter
Greetings, I've recently installd cygwin on both a win98 machine and a winxp machine. The win98 installs works great (except for being really slow, but that's a hardware issue.) On the XP side, I've installed it, but getting some strange behavior. If I do a 'startx', I get the following: [: and

Re: Any WebBrowser for Cygwin?

2004-01-21 Thread Cary Jamison
"Michael Henke" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > I want to do X-Forwarding with my Windowx-XP-Box and am using Cygwin SSHd. > SSH is working very fine so far. All i need is a browser (except textbrowser > like lynx!) for www. > Is there any Webbrowser like Mozilla,

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Igor Pechtchanski
On Wed, 21 Jan 2004, Brian Ford wrote: > On Wed, 21 Jan 2004, Atwood, Robert C wrote: > > [snip] > > Also I believe the following addition to the script would probably save > > some people (like me) much headache ... suitably filled in where blank, > > I don't quite get what all the different opti

Re: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Christopher Faylor
On Wed, Jan 21, 2004 at 04:35:30PM -, Atwood, Robert C wrote: >Well, I believe that something like 'You have to directly edit the >.sh script in order to alter the configuration options, which >are passed to the configure script, such as --enable-debug or >--enable/disable-static' would/should

Re: Initiating a remote X session

2004-01-21 Thread Benjamin Riefenstahl
Hi Steve, Steve Howie <[EMAIL PROTECTED]> writes: > Great! This works fine, but we still get the ugly ssh-style password > prompt - just a thought, but is there anything available under > cygwin to front end this with a username/password pop-up window? > That'd be ideal :) If you don't really car

Re: Initiating a remote X session

2004-01-21 Thread Alexander Gottwald
On Wed, 21 Jan 2004, Steve Howie wrote: > >Or even better, Use ssh: > > > >DISPLAY=localhost:0 ssh -X -l "/opt/SAS82/sas" > > > >ssh will take care of setting the remote DISPLAY and all transferred > >data is sent via the ssh tunnel. > > > > > > Great! This works fine, but we still get the u

Re: Initiating a remote X session

2004-01-21 Thread Chris Green
On Wed, Jan 21, 2004 at 10:28:58AM -0500, Steve Howie wrote: > > We currently use X-Win32 which has a nifty feature for getting around > this - you can specify $MYIP:0 which picks up the current IP address of > the X-server and passes it to the session definition which is sent to > the host whi

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Atwood, Robert C
Well, I believe that something like 'You have to directly edit the .sh script in order to alter the configuration options, which are passed to the configure script, such as --enable-debug or --enable/disable-static' would/should be included there. Also since ./configure --help ususally provides i

RE: Initiating a remote X session

2004-01-21 Thread Andrew Braverman
I would also suggest ssh tunnels for what you are trying to do. That is what I do myself. If you really do not want to do that, a replacement for MYIP=`hostname -i` rexec -l "setenv DISPLAY $MYIP:0; /opt/SAS82/sas" might be MYIP=`ipconfig | grep "IP Address" | awk '{print $NF}'` rexec -l

Re: Initiating a remote X session

2004-01-21 Thread Steve Howie
Alexander Gottwald wrote: [ .. ] First try: MYIP=`hostname -i` rexec -l "setenv DISPLAY $MYIP:0; /opt/SAS82/sas" but hostname -i does not work on cygwin. But maybe the name of the host is sufficient MYIP=`hostname` rexec -l "setenv DISPLAY $MYIP:0; /opt/SAS82/sas" But ipconfig does .

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Brian Ford
On Wed, 21 Jan 2004, Atwood, Robert C wrote: > Brian Ford wrote: > >Robert C Atwood wrote: > >> Is this documented somewhere? > >> > >What does *this* mean :^D? > > > :-C > *fulmination removed* > > Umm ... is there a place where it says 'Here is how you build a Cygwin > package from the source arc

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Atwood, Robert C
To ask a simple question: When are the dll supposed to get created during the build/install process? *duh* okay -- I did not look in the *-announce archives. But I did see this same text in the lesstif.README of the distribution. Maybe I did not understand it... I interpret these points ("Port

Re: Initiating a remote X session

2004-01-21 Thread Alexander Gottwald
On Wed, 21 Jan 2004, Steve Howie wrote: > Howdy, > > We've just had a look at cygwin-xfree and are very impressed. However, > we'd like to bundle it for our users so that we have a some pre-defined > 'sessions' available e.g. connect to a Unix host, run SAS then have the > output sent to an cy

Initiating a remote X session

2004-01-21 Thread Steve Howie
Howdy, We've just had a look at cygwin-xfree and are very impressed. However, we'd like to bundle it for our users so that we have a some pre-defined 'sessions' available e.g. connect to a Unix host, run SAS then have the output sent to an cygwin-xfree server. Unix commands are not the forte o

Re: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread David Fraser
Atwood, Robert C wrote: Can you tell me the date/title of the announcement? I think it was a while before I started reading this list, and Harold is so active that I so far could not find it in the archives. Updated: lesstif-0.93.91-6 01/16/2004 07:13 AM

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Atwood, Robert C
Can you tell me the date/title of the announcement? I think it was a while before I started reading this list, and Harold is so active that I so far could not find it in the archives. ** Did you make sure that this step from Harold's lesstif announceme

RE: non-widget child "DropSiteManager" error (WAS: RE: Grace (xmgrace) 5.1.12-1 ... )

2004-01-21 Thread Atwood, Robert C
> Is this documented somewhere? > What does *this* mean :^D? :-C *fulmination removed* Umm ... is there a place where it says 'Here is how you build a Cygwin package from the source archive distributed via Cygwin setup. 1. Unpack the archive 2. There will be a script called .sh 3. Run this scr

Re: Any WebBrowser for Cygwin?

2004-01-21 Thread Dr. Volker Zell
Hi > "Michael" == Michael Henke writes: Michael> I want to do X-Forwarding with my Windowx-XP-Box and am using Cygwin SSHd. Michael> SSH is working very fine so far. All i need is a browser (except textbrowser Michael> like lynx!) for www. Michael> Is there any Webbrowser like

Re: Mozilla Build Problems - make attempt log included

2004-01-21 Thread Gerrit P. Haase
Hallo Igor, Am Dienstag, 20. Januar 2004 um 17:55 schriebst du: >> sh /home/default/mozilla/build/cygwin-wrapper -up /bin/perl I believe that this cygwin-wrapper is broken. I tried already to build Mozilla on top of Cygwin and ran into problems there too, so I decided to remove the wrapper fuzz