From martouf5@gmail.com Sun May 1 21:15:00 2005 From: martouf5@gmail.com (martouf .) Date: Sun, 01 May 2005 21:15:00 -0000 Subject: startx hanging - startup problem located In-Reply-To: References: Message-ID: On 4/30/05, Alexander Gottwald wrote: > > Just as expected. The forked xkbcomp does still hang forever. > > > // any chance at all what I'm seeing has something to do with the > > EINTR || ECHILD possibility above? > > Even then the xserver should continue. But it appears to be waiting for > the child which never exits properly. ok then, any chance the pipe(), fork() and _exit() semantics are involved? I wrote a small test program along the lines of what Popen() is doing, and on SunOS 5.8 the output is:: child :: myPID = 2998 :: 1 parent :: chPID = 2998 parent :: pd[0] = 3 pd[1] = 4 2 3 4 5 6 7 8 9 10 Done.. child put 1442 bytes in fd 3 All done.. while on Linux 2.6.4-52-default and CYGWIN_NT-5.1 1.5.13(0.122/4/2) the output is: child :: myPID = 6295 :: 1 parent :: chPID = 6295 parent :: pd[0] = 3 pd[1] = 4 2 3 4 5 6 7 8 9 10 Done.. child put 0 bytes in fd 3 All done.. a description of the test program: 1. the parent makes a pipe() and fork()s. the child slowly counts to 10 and then uses dup2() to make the 'w'||pd[1] end of the pipe into stdout and close()s the 'r'||pd[0] end of the pipe. (SunOS 5.8 creates a bidirectional pipe, while the Linux doc indicates it creates a unidirectional pipe with pd[0] ready to be read and pd[1] ready to be written) 2. the child then execl()s a shell which makes more output and _exit()s if the execl() is unsuccessful. 3. the parent sets SIGCHLD to SIG_IGN and close()s the 'w'||pd[1] end of the pipe. 4. the parent blocks in waitpid() until the child completes, then fstat()s the 'r'||pd[0] end of the pipe and reports the number of bytes written into it. From a12@swipnet.se Mon May 2 07:50:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 07:50:00 -0000 Subject: Cannot access Sun server via VNC Message-ID: <4275DBD4.6000108@swipnet.se> Hello X users, I have just installed XFree, and I can access a Sun server using: XWin.exe -query When I try to access another Sun server using Cisco VPN, only X window is shown, but I do not get any login window from the server. Is it possible to access a Sun server using VPN ? Regards, Marek From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 08:38:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 08:38:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: <4275DBD4.6000108@swipnet.se> References: <4275DBD4.6000108@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Hello X users, > > I have just installed XFree, and I can access a Sun server using: > XWin.exe -query > > When I try to access another Sun server using Cisco VPN, only X window > is shown, but I do not get any login window from the server. > Is it possible to access a Sun server using VPN ? Have you tried the -from parameter? Have ou made sure the host allows remote XDMCP access? You should first walk through the FAQs starting with http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-xdmcp-no-valid-address bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Mon May 2 08:52:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 08:52:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: References: <4275DBD4.6000108@swipnet.se> Message-ID: <4275EA4D.2010400@swipnet.se> Hello Alexander, Thank you very much for your quick reply. I will try your hint tonight. Regards, Marek Alexander Gottwald skrev: >On Mon, 2 May 2005, a12 wrote: > > >>Hello X users, >> >>I have just installed XFree, and I can access a Sun server using: >>XWin.exe -query >> >>When I try to access another Sun server using Cisco VPN, only X window >>is shown, but I do not get any login window from the server. >>Is it possible to access a Sun server using VPN ? >> > >Have you tried the -from parameter? Have ou made sure the host allows >remote XDMCP access? > >You should first walk through the FAQs starting with >http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-xdmcp-no-valid-address > >bye > ago > From a12@swipnet.se Mon May 2 09:01:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 09:01:00 -0000 Subject: Cannot connect to a Sun server using xterm Message-ID: <4275EC58.80106@swipnet.se> Hello X users, I access a Sun server using: XWin.exe -query I login, and start an application in the Sun server correctly. When I start xterm using startxwin.bat, and then I start xterm to a Sun server using: xterm -e /bin/telnet & I get a new xterm window from the Sun server, and I login to the Sun server correctly. Then I start a graphical application in the Sun server, and I get the following error: *** OI_init: Error, cannot connect to X server ntc: couldn't open a connection to a X server What have I missed ? Regards, Marek From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 10:33:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 10:33:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <4275EC58.80106@swipnet.se> References: <4275EC58.80106@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Hello X users, > > I access a Sun server using: > XWin.exe -query > I login, and start an application in the Sun server correctly. > > When I start xterm using startxwin.bat, and then I start xterm to a Sun > server using: > xterm -e /bin/telnet & > I get a new xterm window from the Sun server, and I login to the Sun > server correctly. > Then I start a graphical application in the Sun server, and I get the > following error: > *** OI_init: Error, cannot connect to X server > ntc: couldn't open a connection to a X server > > What have I missed ? telnet does know nothing about the xserver. Use ssh instead. xterm -e ssh -Y & This will connect using the secure ssh protocol and tunnel all X11 traffic thought the ssh connection. If this does not work check the FAQ entries about ssh connections http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-ssh-no-x11forwarding bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Markus.Jung@tds.de Mon May 2 10:38:00 2005 From: Markus.Jung@tds.de (Markus Jung) Date: Mon, 02 May 2005 10:38:00 -0000 Subject: mrxvt and hotkeys Message-ID: Hi List! Thank you Scott for opening the discussion that brought up that great termial mrxvt. It supports and it's working with transparent backround without that refresh problem I had with other terms!!! YEAH!!! But theres one thing I can't get to work. The hotkeys to change tabs or something. Has anyone get this working on cygwin X and how?? Whith which Key definition?? Thanks, Markus From a12@swipnet.se Mon May 2 11:22:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 11:22:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <4275EC58.80106@swipnet.se> Message-ID: <42760CDC.8010508@swipnet.se> Hello Alexander, Thank you very much for your reply. Following your hints, I entered in the xterm window in the PC: xterm -e ssh -Y & Then a SSH window appeared in the PC: The authenticity of host 'borsen1 (a.b.c.d)' can't be established. RSA key fingerprint is x:y:z:... . Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'borsen1,a.b.c.d' (RSA) to the list of known hosts. Password: Whatever I entered as the password, the password question reappeared, and eventually the ssh window was closed. When I installed Cygwin ssh, I did not use any password. Any hints ? Regards, Marek Alexander Gottwald skrev: >On Mon, 2 May 2005, a12 wrote: > > >>Hello X users, >> >>I access a Sun server using: >>XWin.exe -query >>I login, and start an application in the Sun server correctly. >> >>When I start xterm using startxwin.bat, and then I start xterm to a Sun >>server using: >>xterm -e /bin/telnet & >>I get a new xterm window from the Sun server, and I login to the Sun >>server correctly. >>Then I start a graphical application in the Sun server, and I get the >>following error: >>*** OI_init: Error, cannot connect to X server >>ntc: couldn't open a connection to a X server >> >>What have I missed ? >> > >telnet does know nothing about the xserver. Use ssh instead. > >xterm -e ssh -Y & > >This will connect using the secure ssh protocol and tunnel all X11 >traffic thought the ssh connection. If this does not work check the >FAQ entries about ssh connections > >http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-ssh-no-x11forwarding > >bye > ago > From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 12:07:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 12:07:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <42760CDC.8010508@swipnet.se> References: <4275EC58.80106@swipnet.se> <42760CDC.8010508@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Password: > Whatever I entered as the password, the password question reappeared, > and eventually the ssh window was closed. > > When I installed Cygwin ssh, I did not use any password. > > Any hints ? You are connecting to the sun server and must provide the password from the sun server. most likely the same as with telnet bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Mon May 2 12:54:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 12:54:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <4275EC58.80106@swipnet.se> <42760CDC.8010508@swipnet.se> Message-ID: <4276229C.1010202@swipnet.se> Hello again, Following your reply below, I created an userid in the Sun server, and entered: xterm -e ssh -Y & In order to test the graphical aplication in the Sun server, I closed both X windows, entered startxwin.bat in a DOS window, and entered in the first X window: xterm -e ssh -Y userid@ & Then I replied to the password request, and the X window from the Sun server just closed. I have also tried: xterm -e ssh userid@ -Y & replied to the password request, and the X window from the Sun server closed too. Any hints ? Regards, Marek Alexander Gottwald skrev: >On Mon, 2 May 2005, a12 wrote: > > >>Password: >>Whatever I entered as the password, the password question reappeared, >>and eventually the ssh window was closed. >> >>When I installed Cygwin ssh, I did not use any password. >> >>Any hints ? >> > >You are connecting to the sun server and must provide the password from >the sun server. most likely the same as with telnet > >bye > ago > From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 13:14:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 13:14:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <4276229C.1010202@swipnet.se> References: <4275EC58.80106@swipnet.se> <42760CDC.8010508@swipnet.se> <4276229C.1010202@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Hello again, > > Following your reply below, I created an userid in the Sun server, and > entered: > xterm -e ssh -Y & > > In order to test the graphical aplication in the Sun server, I closed > both X windows, entered startxwin.bat in a DOS window, and entered in > the first X window: > xterm -e ssh -Y userid@ & > Then I replied to the password request, and the X window from the Sun > server just closed. > I have also tried: > xterm -e ssh userid@ -Y & > replied to the password request, and the X window from the Sun server > closed too. after ssh failed, the xterm is closed because it was not interactive. You should try starting ssh from the cygwin prompt first. This will keep the error message. open cygwin prompt $ ssh userid@ -Y & bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From hcamacho@digitalriver.com Mon May 2 13:18:00 2005 From: hcamacho@digitalriver.com (Henry Camacho) Date: Mon, 02 May 2005 13:18:00 -0000 Subject: Cannot connect to a Sun server using xterm Message-ID: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> I've done the following using our Sun hosts with success... ssh -Y -l root HFC -----Original Message----- From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree-owner@cygwin.com] On Behalf Of Alexander Gottwald Sent: Monday, May 02, 2005 8:14 AM To: cygwin-xfree@cygwin.com Subject: Re: Cannot connect to a Sun server using xterm On Mon, 2 May 2005, a12 wrote: > Hello again, > > Following your reply below, I created an userid in the Sun server, and > entered: > xterm -e ssh -Y & > > In order to test the graphical aplication in the Sun server, I closed > both X windows, entered startxwin.bat in a DOS window, and entered in > the first X window: > xterm -e ssh -Y userid@ & Then I replied to the > password request, and the X window from the Sun server just closed. > I have also tried: > xterm -e ssh userid@ -Y & replied to the password > request, and the X window from the Sun server closed too. after ssh failed, the xterm is closed because it was not interactive. You should try starting ssh from the cygwin prompt first. This will keep the error message. open cygwin prompt $ ssh userid@ -Y & bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From brian@dessent.net Mon May 2 13:19:00 2005 From: brian@dessent.net (Brian Dessent) Date: Mon, 02 May 2005 13:19:00 -0000 Subject: Cannot connect to a Sun server using xterm References: <4275EC58.80106@swipnet.se> <42760CDC.8010508@swipnet.se> <4276229C.1010202@swipnet.se> Message-ID: <42762970.980662A2@dessent.net> Alexander Gottwald wrote: > $ ssh userid@ -Y & Shouldn't this be just "ssh -Y userid@host" or "ssh -Y -l userid host" ? If he does the above, it will treat the second as the command to run, which is probably why the window closes. Brian From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 13:25:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 13:25:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> Message-ID: On Mon, 2 May 2005, Henry Camacho wrote: > I've done the following using our Sun hosts with success... > > ssh -Y -l root Right. But using root for doing non-administrative tasks is a high security risk. > > xterm -e ssh -Y userid@ & What does this mean: - start xterm (in the background) - in xterm start ssh to host sun-host with user userid - on sunhost start command sunhost the last part is the problem $ xterm -e ssh -Y userid@ & should work much better > > xterm -e ssh userid@ -Y & replied to the password > > request, and the X window from the Sun server closed too. > > after ssh failed, the xterm is closed because it was not interactive. > > You should try starting ssh from the cygwin prompt first. This will keep > the error message. > > open cygwin prompt > > $ ssh userid@ -Y & Oops this should be $ ssh -Y userid@sun-host or like mentioned above $ ssh -Y -l userid sun-host bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 13:26:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 13:26:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <42762970.980662A2@dessent.net> References: <4275EC58.80106@swipnet.se> <42760CDC.8010508@swipnet.se> <4276229C.1010202@swipnet.se> <42762970.980662A2@dessent.net> Message-ID: On Mon, 2 May 2005, Brian Dessent wrote: > Alexander Gottwald wrote: > > > $ ssh userid@ -Y & > > Shouldn't this be just "ssh -Y userid@host" or "ssh -Y -l userid host" > ? If he does the above, it will treat the second as the > command to run, which is probably why the window closes. Of course. Missed that when doing copy-and-paste. Sometimes it's helpful to read twice *g* bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Mon May 2 14:18:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 14:18:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> Message-ID: <427636BF.6060209@swipnet.se> Hi, When I enter in the PC window: ssh -Y userid@sun-host I get a request for password, and I am logged into the Sun host. Then I start the graphical application in the Sun host, and I get the following error message: X11 connection rejected because of wrong authentication. X connection to localhost:10.0 broken (explicit kill or server shutdown). So I checked the DISPLAY variable, and as it was set to 'localhost:10.0', I changed it to 'a.b.c.d:10.0', and restarted the application in the Sun host. A while later, I got the following error message: *** OI_init: Error, cannot connect to X server ntc: couldn't open a connection to a X server ntc is the name of the graphical application. As far as I understand, ntc cannot connect to a X server. Any hints ? Regards, Marek Alexander Gottwald skrev: >On Mon, 2 May 2005, Henry Camacho wrote: > > >>I've done the following using our Sun hosts with success... >> >> ssh -Y -l root >> > >Right. But using root for doing non-administrative tasks is a high >security risk. > > >>>xterm -e ssh -Y userid@ & >>> > >What does this mean: > >- start xterm (in the background) >- in xterm start ssh to host sun-host with user userid >- on sunhost start command sunhost > >the last part is the problem > >$ xterm -e ssh -Y userid@ & > >should work much better > > >>>xterm -e ssh userid@ -Y & replied to the password >>>request, and the X window from the Sun server closed too. >>> >>after ssh failed, the xterm is closed because it was not interactive. >> >>You should try starting ssh from the cygwin prompt first. This will keep >>the error message. >> >>open cygwin prompt >> >>$ ssh userid@ -Y & >> > >Oops this should be > >$ ssh -Y userid@sun-host > >or like mentioned above > >$ ssh -Y -l userid sun-host > >bye > ago > From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 14:28:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 14:28:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <427636BF.6060209@swipnet.se> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Hi, > > When I enter in the PC window: > ssh -Y userid@sun-host > I get a request for password, and I am logged into the Sun host. > > Then I start the graphical application in the Sun host, and I get the > following error message: > X11 connection rejected because of wrong authentication. > X connection to localhost:10.0 broken (explicit kill or server shutdown). > > So I checked the DISPLAY variable, and as it was set to > 'localhost:10.0', I changed it to 'a.b.c.d:10.0', and restarted the > application in the Sun host. Guess what? localhost:10.0 was all right and a.b.c.d:10.0 is wrong. There may be some older authentication info left. Maybe this helps: $ xauth del localhost:10.0 bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From ab2540@columbia.edu Mon May 2 16:24:00 2005 From: ab2540@columbia.edu (ab2540@columbia.edu) Date: Mon, 02 May 2005 16:24:00 -0000 Subject: ssh -Y not an option Message-ID: <1115051021.4276540d0c562@cubmail.cc.columbia.edu> I will read man Xsecurity but just to re-iterate; the ssh command does not take the option -Y. I get this statement ssh: illegal option -- Y Usage: ssh [options] host [command] Sorry for the confusion I cut and pasted the wrong bit but I did repost the letter Regards Anna From brian@dessent.net Mon May 2 16:26:00 2005 From: brian@dessent.net (Brian Dessent) Date: Mon, 02 May 2005 16:26:00 -0000 Subject: ssh -Y not an option References: <1115051021.4276540d0c562@cubmail.cc.columbia.edu> Message-ID: <42765555.65EB31CF@dessent.net> ab2540@columbia.edu wrote: > I will read man Xsecurity but just to re-iterate; the ssh command > does not take the option -Y. I get this statement > > ssh: illegal option -- Y > Usage: ssh [options] host [command] > > Sorry for the confusion I cut and pasted the wrong bit but I did > repost the letter What is the full command that you're typing? What does "type ssh" report? What does "cygcheck -c ssh" report? Brian From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 16:32:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 16:32:00 -0000 Subject: ssh -Y not an option In-Reply-To: <1115051021.4276540d0c562@cubmail.cc.columbia.edu> References: <1115051021.4276540d0c562@cubmail.cc.columbia.edu> Message-ID: On Mon, 2 May 2005 ab2540@columbia.edu wrote: > > I will read man Xsecurity but just to re-iterate; the ssh command > does not take the option -Y. I get this statement > > ssh: illegal option -- Y > Usage: ssh [options] host [command] This option was introduced with OpenSSH 3.8 and is equivalent to the older -X switch. Starting with OpenSSH 3.8 -X has a different behaviour and causes trouble with many applications. So use ssh -Y remotehost where it does works and ssh -X remotehost otherwise. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Mon May 2 17:56:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 17:56:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: <4275EA4D.2010400@swipnet.se> References: <4275DBD4.6000108@swipnet.se> <4275EA4D.2010400@swipnet.se> Message-ID: <427669AB.2020405@swipnet.se> Hello again, I have just tried your hint using: Win.exe -query -from where is the IP address received from Cisco VPN client. Sun host IP address is a.b.c.d, and localip is a.e.f.g XWin errors off, and the contents of /tmp/XWin.log are: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin -query host1 -from a.b.c.d ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1024 h 768 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root Fatal server error: Xserver: failed to bind to -from address: a.b.c.d winDeinitMultiWindowWM - Noting shutdown in progress Then I tried to use the IP address that my ISP gave me: XWin.exe -query host1 -from a.e.f.g The contents of /tmp/XWin.log are the same as above. As I am connected to Internet using a router, I also tried: XWin.exe -quesry host1 -from 192.168.0.3 This time a get a X window, and the cursor appears as a cross hair. After some seconds, I get an error message, and the contents of /tmp/XWin.log are: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin -query host1 -from 192.168.0.3 ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1024 h 768 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "0000041d" (0000041d) (--) Using preset keyboard for "Swedish (Sweden)" (41d), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing from list! Fatal server error: XDMCP fatal error: Session failed Session 2 failed for display 192.168.0.3:0: Cannot open display winDeinitMultiWindowWM - Noting shutdown in progress Any hints ? Regards, Marek a12 wrote: > Hello Alexander, > > Thank you very much for your quick reply. > > I will try your hint tonight. > > Regards, > > Marek > > Alexander Gottwald wrote: > >> On Mon, 2 May 2005, a12 wrote: >> >> >>> Hello X users, >>> >>> I have just installed XFree, and I can access a Sun server using: >>> XWin.exe -query >>> >>> When I try to access another Sun server using Cisco VPN, only X >>> window is shown, but I do not get any login window from the server. >>> Is it possible to access a Sun server using VPN ? >>> >> >> Have you tried the -from parameter? Have ou made sure the host allows >> remote XDMCP access? >> You should first walk through the FAQs starting with >> http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-xdmcp-no-valid-address >> >> bye >> ago >> > From alexander.gottwald@s1999.tu-chemnitz.de Mon May 2 20:35:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 02 May 2005 20:35:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: <427669AB.2020405@swipnet.se> References: <4275DBD4.6000108@swipnet.se> <4275EA4D.2010400@swipnet.se> <427669AB.2020405@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Fatal server error: > XDMCP fatal error: Session failed Session 2 failed for display > 192.168.0.3:0: Cannot open display > winDeinitMultiWindowWM - Noting shutdown in progress > > Any hints ? It seems you're out of luck. XDMCP is a strange protocol and esp. network address translation (as used with VPN) will complicate the process. You'll have to use ssh with X11Forwarding bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Mon May 2 21:42:00 2005 From: a12@swipnet.se (a12) Date: Mon, 02 May 2005 21:42:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: References: <4275DBD4.6000108@swipnet.se> <4275EA4D.2010400@swipnet.se> <427669AB.2020405@swipnet.se> Message-ID: <42769EBC.9080506@swipnet.se> Hello again, Following your reply below, I entered: DISPLAY=localhost:0.0 ssh -Y userid@sunhost and then entered the password for userid. Then I received the following messages: Warning: No xauth data; using fake authentication data for X11 forwarding. tput: unknown terminal "cygwin" tput: unknown terminal "cygwin" tput: unknown terminal "cygwin" Eventually I started the graphical application in the Sun host, and got the following messages: connect localhost port 6000: Connection refused X connection to localhost:10.0 broken (explicit kill or serever shutdown). Shall I set the terminal type to something else ? May the refused connection on port 6000 be caused by a firewall setting ? Regards, Marek Alexander Gottwald wrote: >On Mon, 2 May 2005, a12 wrote: > > >>Fatal server error: >>XDMCP fatal error: Session failed Session 2 failed for display >>192.168.0.3:0: Cannot open display >>winDeinitMultiWindowWM - Noting shutdown in progress >> >>Any hints ? >> > >It seems you're out of luck. XDMCP is a strange protocol and esp. >network address translation (as used with VPN) will complicate >the process. You'll have to use ssh with X11Forwarding > >bye > ago > From seya@u01.gate01.com Tue May 3 04:09:00 2005 From: seya@u01.gate01.com (seya) Date: Tue, 03 May 2005 04:09:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work Message-ID: Hello all, I encountered a XWindow problem which I never experienced before. I'm trapped with this problem for the last four days; I need your help ( BTW I've been using XWindow with Cygwin on WinXP for few years ). [ Problem ] When I use Cygwin X server on my notebook PC at home connected to a Linux machine at office via VPN, it works fine. However, when I use the same Cygwin X server connected to a Linux machine at home locally, it won't work. In short, "Linux @ office -> Cygwin X server @ home" does work but "Linux @ home -> Cygwin X server @ home" won't work. [ Operations ] Following is the description of what I operated for both sides : === Cygwin X server @ home === I started X server with "startx " command. Then I issued "xhost +" to disable access control so that any host can connect to this X server (192.168.11.2). === Linux @ home === I exported DISPLAY and issued "xeyes&" like below : # export DISPLAY=192.168.11.2:0.0 # xeyes& # netstat -a | grep x11 tcp 0 1 192.168.11.8:32955 192.168.11.2:0.0 SYN_SENT As you can see the request is sent to Cygwin X server (192.168.11.2) properly. --------------- Please help me to get our of his hell. I appreciate your help. From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 09:01:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 09:01:00 -0000 Subject: Cannot access Sun server via VNC In-Reply-To: <42769EBC.9080506@swipnet.se> References: <4275DBD4.6000108@swipnet.se> <4275EA4D.2010400@swipnet.se> <427669AB.2020405@swipnet.se> <42769EBC.9080506@swipnet.se> Message-ID: On Mon, 2 May 2005, a12 wrote: > Hello again, > > Warning: No xauth data; using fake authentication data for X11 forwarding. This is just a warning and not important > tput: unknown terminal "cygwin" > tput: unknown terminal "cygwin" > tput: unknown terminal "cygwin" > > Eventually I started the graphical application in the Sun host, and got > the following messages: > connect localhost port 6000: Connection refused > X connection to localhost:10.0 broken (explicit kill or serever shutdown). > > Shall I set the terminal type to something else ? that has no influence. > May the refused connection on port 6000 be caused by a firewall setting ? It may. Or you have not started (or exited) the xserver. More likely it's the second option. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 09:11:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 09:11:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work In-Reply-To: References: Message-ID: On Tue, 3 May 2005, seya wrote: > === Cygwin X server @ home === > I started X server with "startx " command. Then I issued "xhost +" to > disable access control so that any host can connect to this X server > (192.168.11.2). > > === Linux @ home === > I exported DISPLAY and issued "xeyes&" like below : > > # export DISPLAY=192.168.11.2:0.0 > # xeyes& > # netstat -a | grep x11 > tcp 0 1 192.168.11.8:32955 192.168.11.2:0.0 SYN_SENT > > As you can see the request is sent to Cygwin X server (192.168.11.2) > properly. Hm. Firewall issue? Or general network problems? How is the VPN setup? Maybe the routing is messed up and all outgoing traffic is sent through the VPN instead of the local network. Do other network applications work (windows file sharing, telnet, ssh) can you reach the linux host from the windows host? bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Tue May 3 12:50:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 12:50:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> Message-ID: <427772B9.6060709@swipnet.se> Hello again, I logged into sun host again, and entered: xauth remove localhost:10.0 [not del] Then I started the graphical application, and I still get the following error: X11 connection rejected because of wrong authentication. X connection to localhost:10.0 broken (explicit kill or server shutdown). Any hints ? Regards, Marek Alexander Gottwald wrote: >On Mon, 2 May 2005, a12 wrote: > > >>Hi, >> >>When I enter in the PC window: >>ssh -Y userid@sun-host >>I get a request for password, and I am logged into the Sun host. >> >>Then I start the graphical application in the Sun host, and I get the >>following error message: >>X11 connection rejected because of wrong authentication. >>X connection to localhost:10.0 broken (explicit kill or server shutdown). >> >>So I checked the DISPLAY variable, and as it was set to >>'localhost:10.0', I changed it to 'a.b.c.d:10.0', and restarted the >>application in the Sun host. >> > >Guess what? localhost:10.0 was all right and a.b.c.d:10.0 is wrong. > >There may be some older authentication info left. >Maybe this helps: >$ xauth del localhost:10.0 > >bye > ago > From a12@swipnet.se Tue May 3 12:58:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 12:58:00 -0000 Subject: Could not init font path element Message-ID: <42777478.4020506@swipnet.se> Hello X users, When I enter: XWin.exe -query I see in the Cygwin window: Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing from list! Pardon my ignorance, but where do I find these fonts ? Regards, Marek From a12@swipnet.se Tue May 3 13:01:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 13:01:00 -0000 Subject: Clipboard is not enabled Message-ID: <42777545.2000405@swipnet.se> Hello X users, When I enter: XWin.exe -query I see in the Cygwin window: winProcEstablishConnection - Hello winProcEstablishConnection - Clipboard is not enabled, returning. Is it a normal procedure, or should I enable the clipboard by some means ? Regards, Marek From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 13:05:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 13:05:00 -0000 Subject: Could not init font path element In-Reply-To: <42777478.4020506@swipnet.se> References: <42777478.4020506@swipnet.se> Message-ID: On Tue, 3 May 2005, a12 wrote: > Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing > from list! xorg-x11-fscl > Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, > removing from list! xorg-x11-fscl > Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing > from list! There are no such fonts in the distribution > Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, > removing from list! xorg-x11-f100 bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 13:06:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 13:06:00 -0000 Subject: Clipboard is not enabled In-Reply-To: <42777545.2000405@swipnet.se> References: <42777545.2000405@swipnet.se> Message-ID: On Tue, 3 May 2005, a12 wrote: > Hello X users, > > When I enter: > XWin.exe -query > I see in the Cygwin window: > winProcEstablishConnection - Hello > winProcEstablishConnection - Clipboard is not enabled, returning. > > Is it a normal procedure, or should I enable the clipboard by some means ? This is just a message for informing the user and developers what's going on and give well defined output on why the clipboard is not working. If you want clipboard integration start XWin with XWin.exe -clipboard -query bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 13:10:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 13:10:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <427772B9.6060709@swipnet.se> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> Message-ID: On Tue, 3 May 2005, a12 wrote: > Hello again, > > I logged into sun host again, and entered: > xauth remove localhost:10.0 [not del] > Then I started the graphical application, and I still get the following > error: > X11 connection rejected because of wrong authentication. > X connection to localhost:10.0 broken (explicit kill or server shutdown). > > Any hints ? Maybe you have to remove $HOME/.Xauthority on windows and unix side. I've not seen the message for some time now and can't tell which side has the wrong credentials. Maybe DISPLAY=:0.0 ssh ... helps (instead of DISPLAY=localhost:0.0) bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Tue May 3 13:42:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 13:42:00 -0000 Subject: Clipboard is not enabled In-Reply-To: References: <42777545.2000405@swipnet.se> Message-ID: <42777FB6.8040802@swipnet.se> Hello, Thank you very much for your quick & adequate reply. Regards, Marek Alexander Gottwald wrotev: >On Tue, 3 May 2005, a12 wrote: > > >>Hello X users, >> >>When I enter: >>XWin.exe -query >>I see in the Cygwin window: >>winProcEstablishConnection - Hello >>winProcEstablishConnection - Clipboard is not enabled, returning. >> >>Is it a normal procedure, or should I enable the clipboard by some means ? >> > >This is just a message for informing the user and developers what's going >on and give well defined output on why the clipboard is not working. > >If you want clipboard integration start XWin with >XWin.exe -clipboard -query > >bye > ago > From a12@swipnet.se Tue May 3 13:43:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 13:43:00 -0000 Subject: Could not init font path element In-Reply-To: References: <42777478.4020506@swipnet.se> Message-ID: <42777FFE.3030603@swipnet.se> Hello, Thank you very much for your quick & adequate reply. Regards, Marek Alexander Gottwald wrotev: >On Tue, 3 May 2005, a12 wrote: > > >>Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing >>from list! >> > >xorg-x11-fscl > > >>Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, >>removing from list! >> > >xorg-x11-fscl > > >>Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing >>from list! >> > >There are no such fonts in the distribution > > >>Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, >>removing from list! >> > >xorg-x11-f100 > >bye > ago > From a12@swipnet.se Tue May 3 14:10:00 2005 From: a12@swipnet.se (a12) Date: Tue, 03 May 2005 14:10:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> Message-ID: <42778657.9090703@swipnet.se> Hello again, I have no .Xauthority in $HOME in my PC. I logged into the Sun host using: ssh -Y userid@sunhost removed .Xauthority in $HOME there, logged out & logged in again. When I started the graphical application in the Sun host, I received the following error: *** OI_init: Error, cannot connect to X server ntc: couldn't open a connection to a X server So, I checked that there still is no .Xauthority in $HOME in the Sun host, logged out, and logged in using: $ DISPLAY=:0.0 ssh -Y neat@borsen1 and I received the following message: Warning: No xauth data; using fake authentication data for X11 forwarding. Last login: Tue May 3 15:54:34 2005 from 131.115.36.154 /usr/openwin/bin/xauth: creating new authority file /export/home/neat/.Xauthority When I started the graphical application, I received the following message: connect /tmp/.X11-unix/X0: No such file or directory X connection to localhost:10.0 broken (explicit kill or server shutdown). What about this message ? Regards, Marek Alexander Gottwald wrote: >On Tue, 3 May 2005, a12 wrote: > > >>Hello again, >> >>I logged into sun host again, and entered: >>xauth remove localhost:10.0 [not del] >>Then I started the graphical application, and I still get the following >>error: >>X11 connection rejected because of wrong authentication. >>X connection to localhost:10.0 broken (explicit kill or server shutdown). >> >>Any hints ? >> > >Maybe you have to remove $HOME/.Xauthority on windows and unix side. >I've not seen the message for some time now and can't tell which side >has the wrong credentials. > >Maybe DISPLAY=:0.0 ssh ... helps (instead of DISPLAY=localhost:0.0) > >bye > ago > From pjfarley3@yahoo.com Tue May 3 14:50:00 2005 From: pjfarley3@yahoo.com (Peter Farley) Date: Tue, 03 May 2005 14:50:00 -0000 Subject: "read" bug in Cygwin 1.5.16? In-Reply-To: 6667 Message-ID: <20050503145034.35795.qmail@web30215.mail.mud.yahoo.com> I tried the 20050501 snapshot today. The bug has been squashed. Both the test program and hercules operate correctly in an xterm window with the snapshot version of "cygwin1.dll". Thank you for the fix. I will let the hercules list know that the bug will be resolved in the next release. Regards, Peter --- Peter Farley wrote: > Thanks Chris. I will try to test the snapshot soon, > but I may have some RL events interrupting me before > I > can do so. > > I'll report back after testing. > > Peter > > --- Christopher Faylor > wrote: > > On Sun, May 01, 2005 at 04:56:13PM -0700, Peter > > Farley wrote: > > >Hi all, > > > > > >I tried to forward this message to the main > cygwin > > >list yesterday, but had a little trouble getting > it > > >there, probably because I mentioned "xterm" in > the > > >subject. I'm trying again in case this is NOT an > > "X" problem but a base cygwin problem. > > > > > >I have attached the test program xtermbug.c > instead > > >of pasting it inline. I hope that is OK for this > > >list. > > > > Thanks for the test program. > > > > There was a problem with setting VMIN == VTIME == > 0 > > on ttys/ptys. I've just checked in a fix. It > will > > be in today's snapshot, when it shows > > up: http://cygwin.com/snapshots/ . > > > > cgf > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam > protection around > http://mail.yahoo.com > > -- > Unsubscribe info: > http://cygwin.com/ml/#unsubscribe-simple > Problem reports: > http://cygwin.com/problems.html > Documentation: http://cygwin.com/docs.html > FAQ: http://cygwin.com/faq/ > > __________________________________ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/ From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 14:53:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 14:53:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <42778657.9090703@swipnet.se> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> Message-ID: On Tue, 3 May 2005, a12 wrote: > connect /tmp/.X11-unix/X0: No such file or directory > X connection to localhost:10.0 broken (explicit kill or server shutdown). > > What about this message ? This just means your local server is not running. Same as before with can't connect to localhost:6000. But this time DISPLAY was :0.0, not localhost:0.0 bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From seya@u01.gate01.com Tue May 3 15:12:00 2005 From: seya@u01.gate01.com (seya) Date: Tue, 03 May 2005 15:12:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work References: Message-ID: > Hm. Firewall issue? Or general network problems? I appreciate your comment. I 'm sure this is nether Firewall issue nor network problem since I tested Linux -> Cygwin X server connection strictly within a private network at home ( 192.168.xxx.xxx ) and I disabled all Firewall options on my router. Also I can "ping" both directions between Linux machine and Cygwin. Moreover, if I make Cygwin as a X client, it can connect to the X server running on Linux. However, I can not do the other direction, which is Linux -> Cygwin X server. Now.. I'm really stuck here. It does not make sense to me at all... line 1> # export DISPLAY=192.168.11.2:0.0 line 2 > # xeyes& line 3 > # netstat -a | grep x11 line 4 > tcp 0 1 192.168.11.8:32955 192.168.11.2:x11 SYN_SENT After "xeyes&" is issued at line 2 it takes while till I get the error message, " Error: Can't open display: 192.168.11.2:0.0" with "xhost +" on the Cygwin server side. I see the same behavior with "xhost -". It tells me Cygwin X server is not really listing the request from X client. Do you have any idea why this is happening? P.S Cygwin X server is working fine with VPN. I use this VPN via telephone line at it put my computer in my company's network environment; this VPN is configured by IT at my company. I'm messed up because I'm in a trouble when I'm completely in my local network. From alexander.gottwald@s1999.tu-chemnitz.de Tue May 3 15:55:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 03 May 2005 15:55:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work In-Reply-To: References: Message-ID: On Wed, 4 May 2005, seya wrote: > > Hm. Firewall issue? Or general network problems? > After "xeyes&" is issued at line 2 it takes while till I get the error > message, " Error: Can't open display: 192.168.11.2:0.0" with "xhost +" on > the Cygwin server side. I see the same behavior with "xhost -". It tells me > Cygwin X server is not really listing the request from X client. > > Do you have any idea why this is happening? Maybe the xserver is not listening on the local network interface but only on the vpn interface netstat -an | grep 6000 should give a line TCP 0.0.0.0:6000 0.0.0.0:0 ABHREN The important part is the 0.0.0.0:6000 which means accepting connections on all interfaces. Anyway, even if this is not the case the client should die early with a connection refused message. Can you somehow trace the traffic on the local network? tcpdump "port 6000" on linux should print useful traces of network traffic bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From brian@dessent.net Tue May 3 16:04:00 2005 From: brian@dessent.net (Brian Dessent) Date: Tue, 03 May 2005 16:04:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work References: Message-ID: <4277A166.B01C5A79@dessent.net> seya wrote: > line 4 > tcp 0 1 192.168.11.8:32955 192.168.11.2:x11 SYN_SENT The fact that it's hung in the SYN_SENT state is a very strong indicator that something low level is wrong, such as a port being blocked by a firewall, a server listening on the wrong interface, and so on. Here is a simple test that you can do that will eliminate all variables except TCP/IP connectivity. Install 'nc' (netcat) on both machines. On the one that will be running the X11 server (i.e. Cygwin) but without the X server running, type: nc -l -p 6000 -e /bin/date On the other machine type "nc host 6000" where host is the ip address or hostname of the server machine. If you get the date spit back out at you, then TCP works okay. If not, then you've got a low level networking problem and you need to solve that first, because no amount of fiddling with X settings will help for that. Brian From seya@u01.gate01.com Tue May 3 17:39:00 2005 From: seya@u01.gate01.com (seya) Date: Tue, 03 May 2005 17:39:00 -0000 Subject: "Linux @ home -> Cygwin X server @ home" won't work References: <4277A166.B01C5A79@dessent.net> Message-ID: Brian, Alex, You're my savior! Now I finally got out of this hell. I really appreciate your help from my bottom my hearts. There were so many variables which would cause this problem. Without your help I would not be able to solve this problem within a day. I finally realized that a resident Firewall program is installed on my note book PC by my company's IT person. It was this program that blocked X protocol packets between PCs outside of the company network ( this is why it was working when I was on my company's VPN network ). I was paying too much attention to other things such as Firewall configuration on my router. I disabled all Firewall options on my router and thought I was done with it, which was awfully wrong. If it were not for you I would not be able to think about Firewall again and would have killed few more days... I learned great tricks from you. I hope other people would get benefit out of this thread as well. Thank you very much :-) From jicman@cinops.xerox.com Tue May 3 21:43:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 03 May 2005 21:43:00 -0000 Subject: rdesktop build on cygwin gone wrong Message-ID: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> Greetings! so, I built and used rdesktop with cygwin for a long time, but I had to rebuild my laptop and now I was trying to build rdesktop with cygwin and on the make install command, an extra / has been added to the path. Here is the error: jic 17:03:08-> make install mkdir -p //usr/local/bin /usr/bin/install -c rdesktop //usr/local/bin /usr/bin/install: cannot create regular file `//usr/local/bin.exe': No such host or network path make: *** [installbin] Error 1 however, the configure and the make both ran fine. Here is the configure run: jic 17:01:02-> pwd /home/us319318/apps/rdesktop-1.4.0 jic 17:01:27-> ./configure --with-x checking for gcc... gcc checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... .exe checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking whether byte ordering is bigendian... no checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for library containing socket... none required checking for library containing inet_aton... none required checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/modem.h usability... no checking sys/modem.h presence... no checking for sys/modem.h... no checking sys/filio.h usability... no checking sys/filio.h presence... no checking for sys/filio.h... no checking sys/strtio.h usability... no checking sys/strtio.h presence... no checking for sys/strtio.h... no checking for OpenSSL directory... /usr checking if architecture needs alignment... no checking sys/soundcard.h usability... yes checking sys/soundcard.h presence... yes checking for sys/soundcard.h... yes checking dmedia/audio.h usability... no checking dmedia/audio.h presence... no checking for dmedia/audio.h... no checking sys/audioio.h usability... no checking sys/audioio.h presence... no checking for sys/audioio.h... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for dirfd... yes checking whether dirfd is declared... yes checking whether dirfd is a macro... no checking build system type... i686-pc-cygwin checking host system type... i686-pc-cygwin configure: creating ./config.status config.status: creating Makefile Here is the beginning and end of the make: jic 17:02:08-> make gcc -g -O2 -Wall -I/usr/include -I/usr/X11R6/include -DPACKAGE_NAME=\"rdesktop\" -DPACKAGE_TARNAME=\"rdesktop\" -DPACKAGE_VERSION=\"1.4.0\" -DPACKAGE_STRING=\"rdesktop\ 1.4.0\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DL_ENDIAN=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_SELECT_H=1 -Dssldir=\"/usr\" -DEGD_SOCKET=\"/var/run/egd-pool\" -DWITH_RDPSND=1 -DHAVE_DIRENT_H=1 -DHAVE_DIRFD=1 -DHAVE_DECL_DIRFD=1 -DKEYMAP_PATH=\"/usr/local/share/rdesktop/keymaps/\" -o rdesktop.o -c rdesktop.c ... ... ... gcc -g -O2 -Wall -I/usr/include -I/usr/X11R6/include -DPACKAGE_NAME=\"rdesktop\" -DPACKAGE_TARNAME=\"rdesktop\" -DPACKAGE_VERSION=\"1.4.0\" -DPACKAGE_STRING=\"rdesktop\ 1.4.0\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DL_ENDIAN=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_SELECT_H=1 -Dssldir=\"/usr\" -DEGD_SOCKET=\"/var/run/egd-pool\" -DWITH_RDPSND=1 -DHAVE_DIRENT_H=1 -DHAVE_DIRFD=1 -DHAVE_DECL_DIRFD=1 -DKEYMAP_PATH=\"/usr/local/share/rdesktop/keymaps/\" -o rdesktop rdesktop.o xwin.o xkeymap.o ewmhints.o xclip.o cliprdr.o rdpsnd.o rdpsnd_oss.o tcp.o iso.o mcs.o secure.o licence.o rdp.o orders.o bitmap.o cache.o rdp5.o channels.o rdpdr.o serial.o printer.o disk.o parallel.o printercache.o mppc.o stcache.o -L/usr/lib -lcrypto -L /usr/X11R6/lib -lX11 So, the question is, why is the extra / being added to the path making it //usr/local/bin which is not going to be found. I have downloaded the rdesktop 1.4.0 and the latest cygwin patches and still the same problem. I also tried rdesktop 1.3.1 and same problem occurred. Any help would be greatly appreciated. jos?? PS:by the way, I have built rdesktop before with cygwin. Thanks again. From daveroth@acm.org Tue May 3 22:10:00 2005 From: daveroth@acm.org (David Rothenberger) Date: Tue, 03 May 2005 22:10:00 -0000 Subject: rdesktop build on cygwin gone wrong In-Reply-To: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> Message-ID: <4277F60C.1020609@acm.org> On 5/3/2005 2:42 PM, jose isaias cabrera wrote: > > Greetings! > > so, I built and used rdesktop with cygwin for a long time, but I had to > rebuild my laptop and now I was trying to build rdesktop with cygwin and > on the > > make install > > command, an extra / has been added to the path. Here is the error: > > > jic 17:03:08-> make install > mkdir -p //usr/local/bin > /usr/bin/install -c rdesktop //usr/local/bin > /usr/bin/install: cannot create regular file `//usr/local/bin.exe': No such > host or network path > make: *** [installbin] Error 1 > It seems like a problem with Makefile.in. Apply the attached patch, then run "autoreconf -f && ./configure && make && make install". -- David Rothenberger spammer? -> spam@daveroth.dyndns.org GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: rdesktop.patch URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 253 bytes Desc: OpenPGP digital signature URL: From jicman@cinops.xerox.com Tue May 3 22:17:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 03 May 2005 22:17:00 -0000 Subject: rdesktop build on cygwin gone wrong References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> Message-ID: <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> Thanks. :-) However, how do I apply a patch? :-) Sorry, never done it. ;-) jos?? ----- Original Message ----- From: "David Rothenberger" To: Sent: Tuesday, May 03, 2005 6:07 PM Subject: Re: rdesktop build on cygwin gone wrong > On 5/3/2005 2:42 PM, jose isaias cabrera wrote: >> >> Greetings! >> >> so, I built and used rdesktop with cygwin for a long time, but I had to >> rebuild my laptop and now I was trying to build rdesktop with cygwin and >> on the >> >> make install >> >> command, an extra / has been added to the path. Here is the error: >> >> >> jic 17:03:08-> make install >> mkdir -p //usr/local/bin >> /usr/bin/install -c rdesktop //usr/local/bin >> /usr/bin/install: cannot create regular file `//usr/local/bin.exe': No >> such >> host or network path >> make: *** [installbin] Error 1 >> > > It seems like a problem with Makefile.in. Apply the attached patch, then > run "autoreconf -f && ./configure && make && make install". > > -- > David Rothenberger spammer? -> spam@daveroth.dyndns.org > GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 > > -------------------------------------------------------------------------------- > --- rdesktop-1.4.0-orig/Makefile.in 2005-03-02 09:34:16.000000000 -0800 > +++ rdesktop-1.4.0/Makefile.in 2005-05-03 15:02:31.861000000 -0700 > @@ -54,25 +54,24 @@ > > .PHONY: installbin > installbin: rdesktop > - mkdir -p $(DESTDIR)/$(bindir) > - $(INSTALL) rdesktop $(DESTDIR)/$(bindir) > - strip $(DESTDIR)/$(bindir)/rdesktop > - chmod 755 $(DESTDIR)/$(bindir)/rdesktop > + mkdir -p $(DESTDIR)$(bindir) > + $(INSTALL) -s rdesktop $(DESTDIR)$(bindir) > + chmod 755 $(DESTDIR)$(bindir)/rdesktop > > .PHONY: installman > installman: doc/rdesktop.1 > - mkdir -p $(DESTDIR)/$(mandir)/man1 > - cp doc/rdesktop.1 $(DESTDIR)/$(mandir)/man1 > - chmod 644 $(DESTDIR)/$(mandir)/man1/rdesktop.1 > + mkdir -p $(DESTDIR)$(mandir)/man1 > + cp doc/rdesktop.1 $(DESTDIR)$(mandir)/man1 > + chmod 644 $(DESTDIR)$(mandir)/man1/rdesktop.1 > > .PHONY: installkeymaps > installkeymaps: > - mkdir -p $(DESTDIR)/$(KEYMAP_PATH) > + mkdir -p $(DESTDIR)$(KEYMAP_PATH) > # Prevent copying the CVS directory > - cp keymaps/?? keymaps/??-?? $(DESTDIR)/$(KEYMAP_PATH) > - cp keymaps/common $(DESTDIR)/$(KEYMAP_PATH) > - cp keymaps/modifiers $(DESTDIR)/$(KEYMAP_PATH) > - chmod 644 $(DESTDIR)/$(KEYMAP_PATH)/* > + cp keymaps/?? keymaps/??-?? $(DESTDIR)$(KEYMAP_PATH) > + cp keymaps/common $(DESTDIR)$(KEYMAP_PATH) > + cp keymaps/modifiers $(DESTDIR)$(KEYMAP_PATH) > + chmod 644 $(DESTDIR)$(KEYMAP_PATH)/* > > .PHONY: proto > proto: > From daveroth@acm.org Tue May 3 22:22:00 2005 From: daveroth@acm.org (David Rothenberger) Date: Tue, 03 May 2005 22:22:00 -0000 Subject: rdesktop build on cygwin gone wrong In-Reply-To: <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> Message-ID: <4277F9B1.9090400@acm.org> On 5/3/2005 3:16 PM, jose isaias cabrera wrote: > > Thanks. :-) > > However, how do I apply a patch? :-) Sorry, never done it. ;-) > % cd rdesktop-1.4.0 % patch -p1 < path/to/rdesktop.patch -- David Rothenberger spammer? -> spam@daveroth.dyndns.org GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 Wharbat darbid yarbou sarbay? From jicman@cinops.xerox.com Tue May 3 22:28:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 03 May 2005 22:28:00 -0000 Subject: rdesktop build on cygwin gone wrong References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> <4277F9B1.9090400@acm.org> Message-ID: <008001c5502f$2926f0b0$2820790d@stso.xcdg.xerox.com> :-) Easy enough... thanks. ----- Original Message ----- From: "David Rothenberger" To: Sent: Tuesday, May 03, 2005 6:22 PM Subject: Re: rdesktop build on cygwin gone wrong > On 5/3/2005 3:16 PM, jose isaias cabrera wrote: >> >> Thanks. :-) >> >> However, how do I apply a patch? :-) Sorry, never done it. ;-) >> > > % cd rdesktop-1.4.0 > % patch -p1 < path/to/rdesktop.patch > > -- > David Rothenberger spammer? -> spam@daveroth.dyndns.org > GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 > > Wharbat darbid yarbou sarbay? > > From jicman@cinops.xerox.com Tue May 3 22:53:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 03 May 2005 22:53:00 -0000 Subject: rdesktop build on cygwin gone wrong References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> <4277F9B1.9090400@acm.org> <008001c5502f$2926f0b0$2820790d@stso.xcdg.xerox.com> Message-ID: <009d01c55032$a58c0110$2820790d@stso.xcdg.xerox.com> Thanks Dave, that worked perfectly. Just a little note for the folks out there like me... :-) I couldn't find patch, so I re-ran the cygwin setup.exe again and found the patchutils on the Devel Category. :-) However, I couldn't find autoreconfig, so I just, rm -rf rdesktop-1.4.0 tar -xvf rdesktop-1.4.0.tar cd rdesktop-1.4.0 patch -p1 < ../rdesktop.patch ./configure make make install and I have rdesktop 1.4.0. thanks Dave. jos?? ----- Original Message ----- From: "jose isaias cabrera" To: Sent: Tuesday, May 03, 2005 6:26 PM Subject: Re: rdesktop build on cygwin gone wrong > > :-) > > Easy enough... > thanks. > > > ----- Original Message ----- > From: "David Rothenberger" > To: > Sent: Tuesday, May 03, 2005 6:22 PM > Subject: Re: rdesktop build on cygwin gone wrong > > >> On 5/3/2005 3:16 PM, jose isaias cabrera wrote: >>> >>> Thanks. :-) >>> >>> However, how do I apply a patch? :-) Sorry, never done it. ;-) >>> >> >> % cd rdesktop-1.4.0 >> % patch -p1 < path/to/rdesktop.patch >> >> -- >> David Rothenberger spammer? -> spam@daveroth.dyndns.org >> GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 >> >> Wharbat darbid yarbou sarbay? >> > From cgf-no-personal-reply-please@cygwin.com Wed May 4 01:13:00 2005 From: cgf-no-personal-reply-please@cygwin.com (Christopher Faylor) Date: Wed, 04 May 2005 01:13:00 -0000 Subject: rdesktop build on cygwin gone wrong In-Reply-To: <009d01c55032$a58c0110$2820790d@stso.xcdg.xerox.com> References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> <4277F9B1.9090400@acm.org> <008001c5502f$2926f0b0$2820790d@stso.xcdg.xerox.com> <009d01c55032$a58c0110$2820790d@stso.xcdg.xerox.com> Message-ID: <20050504011255.GD23476@trixie.casa.cgf.cx> On Tue, May 03, 2005 at 06:51:29PM -0400, jose isaias cabrera wrote: >Thanks Dave, that worked perfectly. > >Just a little note for the folks out there like me... :-) > >I couldn't find patch, so I re-ran the cygwin setup.exe again and found the >patchutils on the Devel Category. Actually, the patch program is in the patch package. You don't need to use patchutils to apply patches. cgf From pechtcha@cs.nyu.edu Wed May 4 04:15:00 2005 From: pechtcha@cs.nyu.edu (Igor Pechtchanski) Date: Wed, 04 May 2005 04:15:00 -0000 Subject: rdesktop build on cygwin gone wrong In-Reply-To: <009d01c55032$a58c0110$2820790d@stso.xcdg.xerox.com> References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <007901c5502d$b8d849e0$2820790d@stso.xcdg.xerox.com> <4277F9B1.9090400@acm.org> <008001c5502f$2926f0b0$2820790d@stso.xcdg.xerox.com> <009d01c55032$a58c0110$2820790d@stso.xcdg.xerox.com> Message-ID: On Tue, 3 May 2005, jose isaias cabrera wrote: > Thanks Dave, that worked perfectly. > > Just a little note for the folks out there like me... :-) > > I couldn't find patch, so I re-ran the cygwin setup.exe again and found the > patchutils on the Devel Category. :-) The "patch" utility is part of the (surprise, surprise) "patch" package. Luckily for you, the "patchutils" package depends on the "patch" package, so setup installed it for you at no extra cost. For the future, if you need to find out which package contains a particular utility, use the Cygwin package search page at . It usually helps to append ".exe" to the name of the executable, or prepend "bin/" to it (the ".exe" trick doesn't work for symlinks and shell scripts). > However, I couldn't find autoreconfig, Hmm, let's see: , type in "bin/autoreconf", hit "Go", and voila -- "Found 6 matches for bin/autoreconf". I'll let you actually perform the above to find out which packages contain it. > so I just, > > rm -rf rdesktop-1.4.0 > tar -xvf rdesktop-1.4.0.tar > cd rdesktop-1.4.0 > patch -p1 < ../rdesktop.patch > ./configure > make > make install > > and I have rdesktop 1.4.0. > > thanks Dave. > > jos?? > > ----- Original Message ----- > From: "jose isaias cabrera" > To: Ehm, . Thanks. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha@cs.nyu.edu ZZZzz /,`.-'`' -. ;-;;,_ igor@watson.ibm.com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "The Sun will pass between the Earth and the Moon tonight for a total Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT From a12@swipnet.se Wed May 4 07:43:00 2005 From: a12@swipnet.se (a12) Date: Wed, 04 May 2005 07:43:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> Message-ID: <42787D0D.5010805@swipnet.se> Hello, Pardon my ignorance, but what am I supposed to do to solve the problem ? Regards, Marek Alexander Gottwald skrev: >On Tue, 3 May 2005, a12 wrote: > > >>connect /tmp/.X11-unix/X0: No such file or directory >>X connection to localhost:10.0 broken (explicit kill or server shutdown). >> >>What about this message ? >> > >This just means your local server is not running. Same as before with can't >connect to localhost:6000. But this time DISPLAY was :0.0, not localhost:0.0 > >bye > ago > From alexander.gottwald@s1999.tu-chemnitz.de Wed May 4 09:11:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 04 May 2005 09:11:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <42787D0D.5010805@swipnet.se> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> <42787D0D.5010805@swipnet.se> Message-ID: On Wed, 4 May 2005, a12 wrote: > Hello, > > Pardon my ignorance, but what am I supposed to do to solve the problem ? Start XWin. -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From a12@swipnet.se Wed May 4 14:37:00 2005 From: a12@swipnet.se (a12) Date: Wed, 04 May 2005 14:37:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> <42787D0D.5010805@swipnet.se> Message-ID: <4278DDFC.1000704@swipnet.se> Which means: use XDMCP & don't use xterm. Please correct me, if I am wrong. Regards, Marek Alexander Gottwald skrev: >On Wed, 4 May 2005, a12 wrote: > > >>Hello, >> >>Pardon my ignorance, but what am I supposed to do to solve the problem ? >> > >Start XWin. > > From bill_schaffer@centercall.com Wed May 4 15:44:00 2005 From: bill_schaffer@centercall.com (Bill Schaffer) Date: Wed, 04 May 2005 15:44:00 -0000 Subject: XWin -indirect Message-ID: <4278EDCD.2030309@centercall.com> Hello. I am having a problem with XWin -indirect, where the foreign machine cannot access my local X server. I have researched the mailing list archives, and found this thread to be very similar: http://sourceware.org/ml/cygwin-xfree/2002-06/msg00331.html But, it did not conclude with an answer that seemed useful to me. Or least, it was not an answer I understood. My scenario: -I have several development Solaris and Linux systems, which are running xdm, kdm, or dtlogin. -I have several users running Windows XP with Cygwin/X. These users can connect to all of the Unix systems just fine with the invocation: XWin -query target-ip-address However, this means I have to manage several startup scripts for the users, edit and add to them, as target systems change, which they do here every couple of weeks. I have one system which is stable and non-changing, so I thought it might be useful to make one script which had the invocation: XWin -indirect stable-target-system And let the users select the system they wanted that day. The problem: Well, the user does get the list of systems, however, they can only access the system specified as the parameter to the "indirect" option. All of the other systems are blocked from accessing the XWin server on the user's machine, including the user's own machine. An excerpt from kdm log output on one of the Linux systems: Hung in XOpenDisplay(users_system_addr:0), aborting server open failed for users_system_addr:0, giving up This seems like an access control problem with XWin at the user's system. I would like to run "xhost +" but the local system can't access XWin either. (Yes, I realize the security implications, but want to get it working first) I have tried establishing an "/etc/X0.host" file, but XWin seems to disregard it. Could someone provide some insight, or point me in the right direction, please? Thanks in advance, Bill Schaffer -- Let it snow From pechtcha@cs.nyu.edu Wed May 4 16:29:00 2005 From: pechtcha@cs.nyu.edu (Igor Pechtchanski) Date: Wed, 04 May 2005 16:29:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: <4278DDFC.1000704@swipnet.se> References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> <42787D0D.5010805@swipnet.se> <4278DDFC.1000704@swipnet.se> Message-ID: On Wed, 4 May 2005, a12 wrote: > Alexander Gottwald skrev: > > > On Wed, 4 May 2005, a12 wrote: > > > > > Pardon my ignorance, but what am I supposed to do to solve the > > > problem ? > > > > Start XWin. > > Which means: use XDMCP & don't use xterm. > Please correct me, if I am wrong. You're wrong. It means exactly what it says: run "startx" (or "startxwin.bat", or "start XWin.exe ...", or any of your favorite methods for starting the X server on your local machine) before running "ssh -X/Y". And please don't top-post. Thanks. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha@cs.nyu.edu ZZZzz /,`.-'`' -. ;-;;,_ igor@watson.ibm.com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "The Sun will pass between the Earth and the Moon tonight for a total Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT From Alexander.Gottwald@s1999.tu-chemnitz.de Wed May 4 17:56:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 04 May 2005 17:56:00 -0000 Subject: XWin -indirect In-Reply-To: <4278EDCD.2030309@centercall.com> References: <4278EDCD.2030309@centercall.com> Message-ID: Bill Schaffer wrote: > The problem: > > Well, the user does get the list of systems, however, they can only > access the system specified as the parameter to the "indirect" option. > All of the other systems are blocked from accessing the XWin server > on the user's machine, including the user's own machine. An excerpt > from kdm log output on one of the Linux systems: > > Hung in XOpenDisplay(users_system_addr:0), aborting > server open failed for users_system_addr:0, giving up > > This seems like an access control problem with XWin at the user's > system. I would like to run "xhost +" but the local system can't > access XWin either. (Yes, I realize the security implications, but > want to get it working first) I have tried establishing an > "/etc/X0.host" file, but XWin seems to disregard it. XDMCP overrides the xhost access system. More likely a firewall is blocking access from the system. Are all hosts on the same network? Running some tracing with tcpdump may help. bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From bill_schaffer@centercall.com Wed May 4 18:18:00 2005 From: bill_schaffer@centercall.com (Bill Schaffer) Date: Wed, 04 May 2005 18:18:00 -0000 Subject: XWin -indirect In-Reply-To: References: <4278EDCD.2030309@centercall.com> Message-ID: <42791203.7070802@centercall.com> Thanks! That was the tip I needed. The one machine that couldn't access the others via "XWin -query" was the one I picked to test with. I went over to one of the other Win systems, did the "-indirect" and had no problems. A Windows firewall issue. I hate when that happens. Thanks muchly, -Bill Alexander Gottwald wrote: > Bill Schaffer wrote: > > >>The problem: >> >>Well, the user does get the list of systems, however, they can only >>access the system specified as the parameter to the "indirect" option. >> All of the other systems are blocked from accessing the XWin server >>on the user's machine, including the user's own machine. An excerpt >>from kdm log output on one of the Linux systems: >> >> Hung in XOpenDisplay(users_system_addr:0), aborting >> server open failed for users_system_addr:0, giving up >> >>This seems like an access control problem with XWin at the user's >>system. I would like to run "xhost +" but the local system can't >>access XWin either. (Yes, I realize the security implications, but >>want to get it working first) I have tried establishing an >>"/etc/X0.host" file, but XWin seems to disregard it. > > > XDMCP overrides the xhost access system. More likely a firewall is blocking > access from the system. Are all hosts on the same network? > > Running some tracing with tcpdump may help. > > bye > ago > NP: SITD - Wegweiser -- Let it snow From ext-markus.malmqvist@nokia.com Thu May 5 08:57:00 2005 From: ext-markus.malmqvist@nokia.com (ext-markus.malmqvist@nokia.com) Date: Thu, 05 May 2005 08:57:00 -0000 Subject: Status of the multiple screens feature Message-ID: <45310B8078431B4FBC86368E3C848FC60B4602@esebe101.NOE.Nokia.com> Hi, The user guide still claims that the feature is "not fully implemented". The user guide however seems to be out-of-date. I would like to know, what is he current status. --markus From jicman@cinops.xerox.com Thu May 5 13:29:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Thu, 05 May 2005 13:29:00 -0000 Subject: Status of the multiple screens feature References: <45310B8078431B4FBC86368E3C848FC60B4602@esebe101.NOE.Nokia.com> Message-ID: <003d01c55176$4543f700$2820790d@stso.xcdg.xerox.com> Well, I tried it about a week ago and it seems not to work. ----- Original Message ----- From: To: Sent: Thursday, May 05, 2005 4:56 AM Subject: Status of the multiple screens feature > Hi, > > The user guide still claims that the feature is "not fully implemented". > The user guide however seems to be out-of-date. > > I would like to know, what is he current status. > > --markus > > From ext-markus.malmqvist@nokia.com Thu May 5 14:41:00 2005 From: ext-markus.malmqvist@nokia.com (ext-markus.malmqvist@nokia.com) Date: Thu, 05 May 2005 14:41:00 -0000 Subject: Status of the multiple screens feature Message-ID: <45310B8078431B4FBC86368E3C848FC60B460C@esebe101.NOE.Nokia.com> Hmm. For me the feature works simply: "Xwin -screen 0 -screen 1" No errors detected. I just would like to know, if it is nowadays a robust feature. --markus From hunterg1@hotmail.com Thu May 5 16:58:00 2005 From: hunterg1@hotmail.com (Ghunter) Date: Thu, 05 May 2005 16:58:00 -0000 Subject: Can't get DISPLAY to set correctly Message-ID: Hello, I've been trying to get Xterm to open a new window on my machine and nothing is working. I am on a XP Pro and connecting to a sun. Here is the output I get, and it looks like it should work, but my DISPLAY is never set once I ssh in, and thus I can't open any windows. user1@MyXPMachine ~ $ echo $DISPLAY 204.169.1.10:0.0 user1@MyXPMachine ~ $ ssh -v -Y 204.169.1.40 OpenSSH_3.9p1, OpenSSL 0.9.7f 22 Mar 2005 debug1: Connecting to 204.169.1.40 [204.169.1.40] port 22. debug1: Connection established. debug1: identity file /home/user1/.ssh/identity type -1 debug1: identity file /home/user1/.ssh/id_rsa type -1 debug1: identity file /home/user1/.ssh/id_dsa type -1 debug1: Remote protocol version 1.99, remote software version OpenSSH_3.9p1 debug1: match: OpenSSH_3.9p1 pat OpenSSH* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_3.9p1 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-cbc hmac-md5 none debug1: kex: client->server aes128-cbc hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Host '204.169.1.40' is known and matches the RSA host key. debug1: Found key in /home/user1/.ssh/known_hosts:1 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,password,keyboard- interacti ve debug1: Next authentication method: publickey debug1: Trying private key: /home/user1/.ssh/identity debug1: Trying private key: /home/user1/.ssh/id_rsa debug1: Trying private key: /home/user1/.ssh/id_dsa debug1: Next authentication method: keyboard-interactive debug1: Authentications that can continue: publickey,password,keyboard- interacti ve debug1: Next authentication method: password user1@204.169.1.40's password: debug1: Authentication succeeded (password). debug1: channel 0: new [client-session] debug1: Entering interactive session. Warning: No xauth data; using fake authentication data for X11 forwarding. debug1: Requesting X11 forwarding with authentication spoofing. Last login: Thu May 5 08:51:28 2005 from 204.169.1.10 Sun Microsystems Inc. SunOS 5.8 Generic Patch February 2004 [MySunMachine:/home/user1] echo $DISPLAY [MySunMachine:/home/user1] xclock Error: Can't open display: [MySunMachine:/home/user1] exitdebug1: client_input_channel_req: channel 0 rtype e xit-status reply 0 From ext-markus.malmqvist@nokia.com Thu May 5 19:21:00 2005 From: ext-markus.malmqvist@nokia.com (ext-markus.malmqvist@nokia.com) Date: Thu, 05 May 2005 19:21:00 -0000 Subject: Setting DISPLAY for multiple screens Message-ID: <45310B8078431B4FBC86368E3C848FC60B460E@esebe101.NOE.Nokia.com> ---- original message -------- Hello, I've been trying to get Xterm to open a new window on my machine and nothing is working. I am on a XP Pro and connecting to a sun. Here is the output I get, and it looks like it should work, but my DISPLAY is never set once I ssh in, and thus I can't open any windows. user1@MyXPMachine ~ $ echo $DISPLAY 204.169.1.10:0.0 user1@MyXPMachine ~ $ ssh -v -Y 204.169.1.40 ----- reply starts ---------- First you just run Cygwin server locally, for example 'xwin -clipboard -screen 0 -screen 1' should open own windows for local screens 0:0 and 0:1 I can only say, that I am using the Putty SSH client to connect from Win2000 to Sun Solaris. Using the 'Connection/SSH/Tunnels/X display location' field it is possible to set both display and screen. Default is ':0.0'. Using for example '0:1' of course means display two and screen one. Oh yeah, you also need to check the 'Enable X11 forwarding' checkbox. --markus From Donald@Ziesig.org Fri May 6 01:30:00 2005 From: Donald@Ziesig.org (Donald R. Ziesig) Date: Fri, 06 May 2005 01:30:00 -0000 Subject: Typing Ctrl-Z does nothing. Message-ID: <427AC89D.8040308@Ziesig.org> Hi everyone! I just installed cygwin on a fresh Windows 2000 system (backup wouldn't restore a bootable system after HDD crash). There is nothing special about cygwin, I used all defaults on the download and setup.. Everything works fine except for ^Z. Typing does nothing - I really would like to have it suspend the foreground program so that I can background it, but ... I've searched the web and found a few references to a similar problem (plus many about EOF ;( ) but none with a solution. Can anyone help? Thanks, Don Ziesig From ihok@hotmail.com Fri May 6 04:34:00 2005 From: ihok@hotmail.com (Jack Tanner) Date: Fri, 06 May 2005 04:34:00 -0000 Subject: good .Xdefaults Message-ID: <427AF3E8.5020300@hotmail.com> Hello all, Would anyone care to share their .Xdefaults files that they use under Cygwin? I'm curious about people's preferred settings, and I'd also like to figure out a) why xterm complains about silly stuff (e.g., Warning: Color name "black" is not defined), b) how to configure stty settings so that I can sanely use vim from inside xterm without it misinterpreting the cursor keys, and c) what is the smart way to configure UTF-8 support within xterm given that my platform is Windows XP. Cheers From Alexander.Gottwald@s1999.tu-chemnitz.de Fri May 6 13:47:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 06 May 2005 13:47:00 -0000 Subject: Status of the multiple screens feature In-Reply-To: <45310B8078431B4FBC86368E3C848FC60B4602@esebe101.NOE.Nokia.com> References: <45310B8078431B4FBC86368E3C848FC60B4602@esebe101.NOE.Nokia.com> Message-ID: ext-markus.malmqvist@nokia.com wrote: > Hi, > > The user guide still claims that the feature is "not fully implemented". Since there are no problems left, i'd say the status is "working". > The user guide however seems to be out-of-date. If you find more bits which are out of date, please report them. I'll update the users guide soon. bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Alexander.Gottwald@s1999.tu-chemnitz.de Fri May 6 13:50:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 06 May 2005 13:50:00 -0000 Subject: Status of the multiple screens feature In-Reply-To: <45310B8078431B4FBC86368E3C848FC60B460C@esebe101.NOE.Nokia.com> References: <45310B8078431B4FBC86368E3C848FC60B460C@esebe101.NOE.Nokia.com> Message-ID: ext-markus.malmqvist@nokia.com wrote: > Hmm. For me the feature works simply: "Xwin -screen 0 -screen 1" > > No errors detected. I just would like to know, if it is nowadays a > robust feature. I'm using it everyday with XWin -screen 0 -nodecoration -screen 1 -multiwindow and the only problem is a crash when closing the xserver. bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Alexander.Gottwald@s1999.tu-chemnitz.de Fri May 6 13:52:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 06 May 2005 13:52:00 -0000 Subject: Can't get DISPLAY to set correctly In-Reply-To: References: Message-ID: Ghunter wrote: > Hello, > > I've been trying to get Xterm to open a new window on my machine and nothing > is working. I am on a XP Pro and connecting to a sun. Here is the output I > get, and it looks like it should work, but my DISPLAY is never set once I ssh > in, and thus I can't open any windows. > > [MySunMachine:/home/user1] xclock > > Error: Can't open display: Most likely X11Forwarding is disabled on the server. Check /etc/ssh/sshd_config. The FAQ has an entry with the exact option to set. bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Alexander.Gottwald@s1999.tu-chemnitz.de Fri May 6 13:56:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 06 May 2005 13:56:00 -0000 Subject: good .Xdefaults In-Reply-To: <427AF3E8.5020300@hotmail.com> References: <427AF3E8.5020300@hotmail.com> Message-ID: Jack Tanner wrote: > Hello all, > > Would anyone care to share their .Xdefaults files that they use under > Cygwin? I'm curious about people's preferred settings, and I'd also like > to figure out a) why xterm complains about silly stuff (e.g., Warning: > Color name "black" is not defined) The colors are defined in /usr/X11R6/lib/X11/rgb If the file is not installed, broken or somehow the xserver tries to use a different file then the colors are not defined. showrgb should print a lot of entries if everything is ok. bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Fri May 6 15:31:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Fri, 06 May 2005 15:31:00 -0000 Subject: Bold Double Strike vs. Bold different color Message-ID: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> I am running xterm and I would like to use a different color instead of bold. I have set all the options and I still get bold double strike instead of a different color. Any ideas where to change this? My cygwin bat DOS prompt works accordingly, but the xterm. help! thanks, jos?? From dickey@his.com Sat May 7 15:57:00 2005 From: dickey@his.com (Thomas Dickey) Date: Sat, 07 May 2005 15:57:00 -0000 Subject: Bold Double Strike vs. Bold different color In-Reply-To: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> References: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> Message-ID: <20050507155858.GA3561@invisible-island.net> On Fri, May 06, 2005 at 11:30:00AM -0400, jose isaias cabrera wrote: > > I am running xterm and I would like to use a different color instead of > bold. I have set all the options and I still get bold double strike > instead of a different color. Any ideas where to change this? My cygwin > bat DOS prompt works accordingly, but the xterm. What options are you setting? -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net From ihok@hotmail.com Sat May 7 16:48:00 2005 From: ihok@hotmail.com (Jack Tanner) Date: Sat, 07 May 2005 16:48:00 -0000 Subject: good .Xdefaults In-Reply-To: References: <427AF3E8.5020300@hotmail.com> Message-ID: Alexander Gottwald wrote: > The colors are defined in /usr/X11R6/lib/X11/rgb > If the file is not installed, broken or somehow the xserver tries to use > a different file then the colors are not defined. I have a /usr/X11R6/lib/X11/rgb.txt. I also created a symbolic link, rgb->rgb.txt. > showrgb should print a lot of entries if everything is ok. It does. $ showrgb | grep black 0 0 0 black Still, I get Warning: Color name "black" is not defined. Attention Thomas Dickey: By the way, there's a wrap-around error when that message is printed; it double-backs onto itself. TERM=xterm, latest Xorg, xterm, and terminfo. Despite the warning, the colors do take effect! That is, my .Xdefaults contains xterm*Foreground: white xterm*Background: black and the xterm gets the colors appropriately, although when it just starts, the background is washed white, and only turns to black after I do /usr/bin/clear. From dickey@his.com Sat May 7 17:29:00 2005 From: dickey@his.com (Thomas Dickey) Date: Sat, 07 May 2005 17:29:00 -0000 Subject: good .Xdefaults In-Reply-To: References: <427AF3E8.5020300@hotmail.com> Message-ID: <20050507132103.B45142@mail.his.com> On Sat, 7 May 2005, Jack Tanner wrote: > Alexander Gottwald wrote: >> The colors are defined in /usr/X11R6/lib/X11/rgb >> If the file is not installed, broken or somehow the xserver tries to use >> a different file then the colors are not defined. > > I have a /usr/X11R6/lib/X11/rgb.txt. I also created a symbolic link, > rgb->rgb.txt. > >> showrgb should print a lot of entries if everything is ok. > > It does. > > $ showrgb | grep black > 0 0 0 black > > Still, I get Warning: Color name "black" is not defined. > > Attention Thomas Dickey: By the way, there's a wrap-around error when that > message is printed; it double-backs onto itself. TERM=xterm, latest Xorg, > xterm, and terminfo. showrgb and grep don't (afaik) depend on the terminfo. wrap-around issues with cygwin could be due to stray carriage-returns (guess). You should be able to test this by redirecting showrgb | grep black >foo cat foo (also check the contents with vi, etc.). > Despite the warning, the colors do take effect! That is, my .Xdefaults > contains > xterm*Foreground: white > xterm*Background: black Foreground/Background set the class names (usually foreground/background are preferred). Setting the class names can produce some odd effects. I haven't looked at that for a while, but do recall some comments that it has the effect of disabling ANSI colors, e.g., for text. > and the xterm gets the colors appropriately, although when it just starts, > the background is washed white, and only turns to black after I do > /usr/bin/clear. ...which is odd - the only thing I could think of is that /usr/bin/clear on cygwin is a termcap application, and the /etc/termcap is modified to set colors explicitly (I've seen people doing that on other systems, so it's something to check). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net From jicman@cinops.xerox.com Sat May 7 23:44:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Sat, 07 May 2005 23:44:00 -0000 Subject: Bold Double Strike vs. Bold different color References: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> <20050507155858.GA3561@invisible-island.net> Message-ID: <003801c5535e$a90c3d30$5e8c850d@jicman> Here is my XWin call from startxwin.bat: run XWin -multiwindow -clipboard -emulate3buttons -silent-dup-error Here is my xterm call: xterm -geometry 80x60 -sl 5000 -bg black -fg grey -fbb -fb font2 -display 127.0.0.1:0.0 -e /usr/bin/bash -l ----- Original Message ----- From: "Thomas Dickey" To: Sent: Saturday, May 07, 2005 11:58 AM Subject: Re: Bold Double Strike vs. Bold different color > On Fri, May 06, 2005 at 11:30:00AM -0400, jose isaias cabrera wrote: >> >> I am running xterm and I would like to use a different color instead of >> bold. I have set all the options and I still get bold double strike >> instead of a different color. Any ideas where to change this? My cygwin >> bat DOS prompt works accordingly, but the xterm. > > What options are you setting? > > -- > Thomas E. Dickey > http://invisible-island.net > ftp://invisible-island.net > From dickey@his.com Sun May 8 00:15:00 2005 From: dickey@his.com (Thomas Dickey) Date: Sun, 08 May 2005 00:15:00 -0000 Subject: Bold Double Strike vs. Bold different color In-Reply-To: <003801c5535e$a90c3d30$5e8c850d@jicman> References: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> <20050507155858.GA3561@invisible-island.net> <003801c5535e$a90c3d30$5e8c850d@jicman> Message-ID: <20050508001554.GA2521@invisible-island.net> On Sat, May 07, 2005 at 07:43:59PM -0400, jose isaias cabrera wrote: > > > Here is my XWin call from startxwin.bat: > run XWin -multiwindow -clipboard -emulate3buttons -silent-dup-error > > Here is my xterm call: > > xterm -geometry 80x60 -sl 5000 -bg black -fg grey -fbb -fb font2 -display > 127.0.0.1:0.0 -e /usr/bin/bash -l Well - referring to "xterm -h": -/+bdc turn off/on display of bold as color -/+pc turn on/off PC-style bold colors and "man xterm": (options) +bdc Set the vt100 resource colorBDMode to TRUE, enabling the dis- play of characters with bold attribute as color rather than bold -pc This option enables the PC-style use of bold colors (see bold- Colors resource). (resources) colorBD (class ColorBD) This specifies the color to use to display bold characters if the ``colorBDMode'' resource is enabled. The default is ``XtDefaultForeground.'' colorBDMode (class ColorAttrMode) Specifies whether characters with the bold attribute should be displayed in color or as bold characters. Note that setting colorMode off disables all colors, including bold. The default is ``false.'' veryBoldColors (class VeryBoldColors) Specifies whether to combine video attributes with colors spec- ified by colorBD, colorBL and colorUL. The resource value is the sum of values for each attribute: 2 for underline, 4 for bold and 8 for blink. The default is ``0.'' you might try something like xterm +bdc \ -xrm '*VT100.veryBoldColors:4' \ -xrm '*VT100.colorBD:red' \ -xrm '*VT100.colorBDMode:true' (that works for me). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net From jicman@cinops.xerox.com Sun May 8 01:03:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Sun, 08 May 2005 01:03:00 -0000 Subject: Bold Double Strike vs. Bold different color References: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> <20050507155858.GA3561@invisible-island.net> <003801c5535e$a90c3d30$5e8c850d@jicman> <20050508001554.GA2521@invisible-island.net> Message-ID: <004401c55369$bb858b50$5e8c850d@jicman> Thank you Thomas! Sometimes, well, you try too hard. I have been through these and kept trying different settings. I appreciate your help, folks! Thanks. jos?? ----- Original Message ----- From: "Thomas Dickey" To: "jose isaias cabrera" Cc: ; Sent: Saturday, May 07, 2005 8:15 PM Subject: Re: Bold Double Strike vs. Bold different color > On Sat, May 07, 2005 at 07:43:59PM -0400, jose isaias cabrera wrote: >> >> >> Here is my XWin call from startxwin.bat: >> run XWin -multiwindow -clipboard -emulate3buttons -silent-dup-error >> >> Here is my xterm call: >> >> xterm -geometry 80x60 -sl 5000 -bg black -fg grey -fbb -fb font2 -display >> 127.0.0.1:0.0 -e /usr/bin/bash -l > > Well - referring to "xterm -h": > > -/+bdc turn off/on display of bold as color > -/+pc turn on/off PC-style bold colors > > and "man xterm": > > (options) > +bdc Set the vt100 resource colorBDMode to TRUE, enabling the > dis- > play of characters with bold attribute as color rather > than > bold > > -pc This option enables the PC-style use of bold colors (see > bold- > Colors resource). > > (resources) > colorBD (class ColorBD) > This specifies the color to use to display bold characters > if > the ``colorBDMode'' resource is enabled. The default > is > ``XtDefaultForeground.'' > > colorBDMode (class ColorAttrMode) > Specifies whether characters with the bold attribute should > be > displayed in color or as bold characters. Note that > setting > colorMode off disables all colors, including bold. The > default > is ``false.'' > > veryBoldColors (class VeryBoldColors) > Specifies whether to combine video attributes with colors > spec- > ified by colorBD, colorBL and colorUL. The resource value > is > the sum of values for each attribute: 2 for underline, 4 > for > bold and 8 for blink. The default is ``0.'' > > you might try something like > > xterm +bdc \ > -xrm '*VT100.veryBoldColors:4' \ > -xrm '*VT100.colorBD:red' \ > -xrm '*VT100.colorBDMode:true' > > (that works for me). > > -- > Thomas E. Dickey > http://invisible-island.net > ftp://invisible-island.net > From dickey@his.com Sun May 8 10:39:00 2005 From: dickey@his.com (Thomas Dickey) Date: Sun, 08 May 2005 10:39:00 -0000 Subject: Bold Double Strike vs. Bold different color In-Reply-To: <004401c55369$bb858b50$5e8c850d@jicman> References: <009901c55250$7c868860$2820790d@stso.xcdg.xerox.com> <20050507155858.GA3561@invisible-island.net> <003801c5535e$a90c3d30$5e8c850d@jicman> <20050508001554.GA2521@invisible-island.net> <004401c55369$bb858b50$5e8c850d@jicman> Message-ID: <20050508063731.F82269@mail.his.com> On Sat, 7 May 2005, jose isaias cabrera wrote: > > Thank you Thomas! Sometimes, well, you try too hard. I have been through > these and kept trying different settings. I appreciate your help, folks! yes - I run into that problem (thinking I've tried all of the combinations). > > Thanks. no problem -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net From jicman@cinops.xerox.com Sun May 8 14:08:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Sun, 08 May 2005 14:08:00 -0000 Subject: rdesktop not finding X libs Message-ID: <002701c553d7$5c848570$20ac850d@jicman> Greetings! I am trying to build rdesktop with cygwin. (I have done this a week ago with my computer at work.) However, I am running into problems with my home computer: it's not finding the X libraries, even though they are there. I have uninstalled cygwin and reinstalled it back with the same libraries and I still have the same problem. Here is a run capture of ./configure jicman 10:03:58-> ./configure checking for gcc... gcc checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... .exe checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for a BSD-compatible install... /usr/bin/install -c checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking whether byte ordering is bigendian... no checking for X... no checking for library containing socket... none required checking for library containing inet_aton... none required checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/modem.h usability... no checking sys/modem.h presence... no checking for sys/modem.h... no checking sys/filio.h usability... no checking sys/filio.h presence... no checking for sys/filio.h... no checking sys/strtio.h usability... no checking sys/strtio.h presence... no checking for sys/strtio.h... no checking for OpenSSL directory... /usr checking if architecture needs alignment... no checking sys/soundcard.h usability... yes checking sys/soundcard.h presence... yes checking for sys/soundcard.h... yes checking dmedia/audio.h usability... no checking dmedia/audio.h presence... no checking for dmedia/audio.h... no checking sys/audioio.h usability... no checking sys/audioio.h presence... no checking for sys/audioio.h... no checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for dirfd... yes checking whether dirfd is declared... yes checking whether dirfd is a macro... no checking build system type... i686-pc-cygwin checking host system type... i686-pc-cygwin configure: creating ./config.status config.status: creating Makefile jicman 10:05:09-> So, how can I fix it? Again, I really don't know where to go from here, but apparently, cygwin's setup utility is not updating the libraries as it should. Any ideas? thanks, jos?? From daveroth@acm.org Sun May 8 15:25:00 2005 From: daveroth@acm.org (David Rothenberger) Date: Sun, 08 May 2005 15:25:00 -0000 Subject: rdesktop not finding X libs In-Reply-To: <002701c553d7$5c848570$20ac850d@jicman> References: <002701c553d7$5c848570$20ac850d@jicman> Message-ID: <427E2F3F.10800@acm.org> On 5/8/2005 7:08 AM, jose isaias cabrera wrote: > > I am trying to build rdesktop with cygwin. (I have done this a week ago > with my computer at work.) However, I am running into problems with my > home computer: it's not finding the X libraries, even though they are > there. > > So, how can I fix it? Again, I really don't know where to go from here, > but apparently, cygwin's setup utility is not updating the libraries as > it should. > > Any ideas? Search for "Checking for X" in config.log. It should show you the program it compiled and ran to check for the X libraries. It may give you a clue as to what's wrong with your configuration. -- David Rothenberger spammer? -> spam@daveroth.dyndns.org GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 The Beatles: Paul McCartney's old back-up band. From Alexander.Gottwald@s1999.tu-chemnitz.de Sun May 8 16:02:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 08 May 2005 16:02:00 -0000 Subject: rdesktop not finding X libs In-Reply-To: <002701c553d7$5c848570$20ac850d@jicman> References: <002701c553d7$5c848570$20ac850d@jicman> Message-ID: jose isaias cabrera wrote: > > Greetings! > > I am trying to build rdesktop with cygwin. (I have done this a week ago > with my computer at work.) However, I am running into problems with my home > computer: it's not finding the X libraries, even though they are there. Have you installed the xorg-x11-devel package? > checking for X... no > So, how can I fix it? Again, I really don't know where to go from here, but > apparently, cygwin's setup utility is not updating the libraries as it > should. configure creates a config.log. Search for "checking for X" and find what went wrong with the check. Maybe it's just a problem with the order of libraries (eg they use -lX11 -lXext but it must be -lXext -lX11) bye ago NP: SITD - Wegweiser -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From daveroth@acm.org Sun May 8 17:44:00 2005 From: daveroth@acm.org (David Rothenberger) Date: Sun, 08 May 2005 17:44:00 -0000 Subject: rdesktop not finding X libs In-Reply-To: References: <002701c553d7$5c848570$20ac850d@jicman> Message-ID: <427E3F72.4060309@acm.org> On 5/8/2005 10:37 AM, Alexander Gottwald wrote: > configure creates a config.log. Search for "checking for X" and find what went > wrong with the check. Maybe it's just a problem with the order of libraries > (eg they use -lX11 -lXext but it must be -lXext -lX11) WFM, so it's probably a problem with Jose's installation and not rdesktop. -- David Rothenberger spammer? -> spam@daveroth.dyndns.org GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 the kind of landscape that laughs at "AWD" vehicles and sends them tumbling into ravines From list-subscriber@hq.astra.ph Mon May 9 03:15:00 2005 From: list-subscriber@hq.astra.ph (Carlo Florendo) Date: Mon, 09 May 2005 03:15:00 -0000 Subject: Strange-Dangerous behaviour in Cygwin In-Reply-To: <20050508225258.GA3896@trixie.casa.cgf.cx> References: <20050507160035.GA12676@trixie.casa.cgf.cx> <20050508225258.GA3896@trixie.casa.cgf.cx> Message-ID: <427ED590.9080309@hq.astra.ph> Christopher Faylor wrote: >On Sun, May 08, 2005 at 03:02:17PM +0200, Angelo Graziosi wrote: > > >>The problems described prviously exist in standard bash shell (that is >>launched with the link on Desktop) and in the shell launched by xterm >>(with startxwin.bat). >> >>THEY DO NOT exist in dos box (with C\:cygwin\bin in W2KSP4 path) and in >>the shell launched with RXVT: in these cases the BACKSPACE key delete the >>previous character and does not move the cursor as the LEFT arrow key. >> >> > >Again: This means that IT IS an xterm setup issue so YOU SHOULD be >using the cygwin-xfree mailing list. > > > This does not seem to be an xterm setup issue. I have confirmed that running "rm -i " enables the user to move about the terminal, as in a text editor as originally stated. (Emphasized since cygwin-xfree is cc'd) The same behavior applies to rxvt in stand-alone mode, xterm, and from the shell launched by running cygwin.bat directly from a cmd prompt. Exporting the TERM variable in these shells and terminals to either xterm, xterm-color, rxvt, or cygwin, does not eliminate the problem. It's not bothersome for me but it certainly is wrong. Are there any terminal setttings that have to be modified? Thanks! Best Regards, Carlo From list-subscriber@hq.astra.ph Mon May 9 03:30:00 2005 From: list-subscriber@hq.astra.ph (Carlo Florendo) Date: Mon, 09 May 2005 03:30:00 -0000 Subject: Strange-Dangerous behaviour in Cygwin In-Reply-To: <427ED590.9080309@hq.astra.ph> References: <20050507160035.GA12676@trixie.casa.cgf.cx> <20050508225258.GA3896@trixie.casa.cgf.cx> <427ED590.9080309@hq.astra.ph> Message-ID: <427ED946.4070001@hq.astra.ph> Carlo Florendo wrote: > Christopher Faylor wrote: > >> On Sun, May 08, 2005 at 03:02:17PM +0200, Angelo Graziosi wrote: >> >> >>> The problems described prviously exist in standard bash shell (that is >>> launched with the link on Desktop) and in the shell launched by xterm >>> (with startxwin.bat). >>> >>> THEY DO NOT exist in dos box (with C\:cygwin\bin in W2KSP4 path) and in >>> the shell launched with RXVT: in these cases the BACKSPACE key >>> delete the >>> previous character and does not move the cursor as the LEFT arrow key. >>> >> >> >> Again: This means that IT IS an xterm setup issue so YOU SHOULD be >> using the cygwin-xfree mailing list. >> >> >> > This does not seem to be an xterm setup issue. I have confirmed that > running "rm -i " enables the user to move about the terminal, as > in a text editor as originally stated. (Emphasized since cygwin-xfree > is cc'd) > The same behavior applies to rxvt in stand-alone mode, xterm, and from > the shell launched by running cygwin.bat directly from a cmd prompt. > > Exporting the TERM variable in these shells and terminals to either > xterm, xterm-color, rxvt, or cygwin, does not eliminate the problem. > It's not bothersome for me but it certainly is wrong. > Are there any terminal setttings that have to be modified? > Ooops. Sorry, I've read earlier discussions on this issue just a few seconds ago by Erik Blake et al. So, it's not an xterm issue. It's a bug with coreutils not being POSIX compliant. A patch has been applied. We just have to wait for the next annoucement for coreutils. Thanks! Best Regards, Carlo -- Carlo Florendo Astra Philippines Inc. www.astra.ph From jicman@cinops.xerox.com Mon May 9 03:57:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 09 May 2005 03:57:00 -0000 Subject: rdesktop not finding X libs References: <002701c553d7$5c848570$20ac850d@jicman> <427E3F72.4060309@acm.org> Message-ID: <000e01c5544b$1c790220$518c850d@jicman> Well, I downloaded rdesktop 1.4.1 and it has found the X libs. I was trying with 1.4.0. Perhaps there was a bug or something with 1.4.0. I am now able to build rdesktop with 1.4.1. thanks, jos?? ----- Original Message ----- From: "David Rothenberger" To: Sent: Sunday, May 08, 2005 12:33 PM Subject: Re: rdesktop not finding X libs > On 5/8/2005 10:37 AM, Alexander Gottwald wrote: >> configure creates a config.log. Search for "checking for X" and find what >> went >> wrong with the check. Maybe it's just a problem with the order of >> libraries >> (eg they use -lX11 -lXext but it must be -lXext -lX11) > > WFM, so it's probably a problem with Jose's installation and not rdesktop. > > -- > David Rothenberger spammer? -> spam@daveroth.dyndns.org > GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 > > the kind of landscape that laughs at "AWD" vehicles and > sends them tumbling into ravines > > From jicman@cinops.xerox.com Mon May 9 04:36:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 09 May 2005 04:36:00 -0000 Subject: Strange-Dangerous behaviour in Cygwin References: <20050507160035.GA12676@trixie.casa.cgf.cx> <20050508225258.GA3896@trixie.casa.cgf.cx> <427ED590.9080309@hq.astra.ph> Message-ID: <002701c5544d$429911f0$518c850d@jicman> I believe the problem is with the run command. It causes some really weird flickering and ugly stuff. Take away that run and it will go away, but then, the DOS screen will be there, hanging. Of course, I am just replying thinking that I know what I am talking about. But, I read part of the reply and thought that it was the same problem that I was having. I hope this helps... jos?? ----- Original Message ----- From: "Carlo Florendo" To: ; Sent: Sunday, May 08, 2005 11:14 PM Subject: Re: Strange-Dangerous behaviour in Cygwin > Christopher Faylor wrote: > >>On Sun, May 08, 2005 at 03:02:17PM +0200, Angelo Graziosi wrote: >> >>>The problems described prviously exist in standard bash shell (that is >>>launched with the link on Desktop) and in the shell launched by xterm >>>(with startxwin.bat). >>> >>>THEY DO NOT exist in dos box (with C\:cygwin\bin in W2KSP4 path) and in >>>the shell launched with RXVT: in these cases the BACKSPACE key delete the >>>previous character and does not move the cursor as the LEFT arrow key. >>> >> >>Again: This means that IT IS an xterm setup issue so YOU SHOULD be >>using the cygwin-xfree mailing list. >> >> > This does not seem to be an xterm setup issue. I have confirmed that > running "rm -i " enables the user to move about the terminal, as in > a text editor as originally stated. (Emphasized since cygwin-xfree is > cc'd) > The same behavior applies to rxvt in stand-alone mode, xterm, and from the > shell launched by running cygwin.bat directly from a cmd prompt. > > Exporting the TERM variable in these shells and terminals to either xterm, > xterm-color, rxvt, or cygwin, does not eliminate the problem. It's not > bothersome for me but it certainly is wrong. > Are there any terminal setttings that have to be modified? > > Thanks! > > Best Regards, > > Carlo > From a12@swipnet.se Mon May 9 08:20:00 2005 From: a12@swipnet.se (a12) Date: Mon, 09 May 2005 08:20:00 -0000 Subject: Cannot connect to a Sun server using xterm In-Reply-To: References: <84AB77B587149C4C9081E84E1EF661F205308462@dc1mailbox01.mpls.digitalriver.com> <427636BF.6060209@swipnet.se> <427772B9.6060709@swipnet.se> <42778657.9090703@swipnet.se> <42787D0D.5010805@swipnet.se> <4278DDFC.1000704@swipnet.se> Message-ID: <427F1D1C.4090609@swipnet.se> Hello again, Please forgive me for top-posting. It was never an intention from my side to violate any rules commonly known as Netiquette Guidelines. Regards, Marek Igor Pechtchanski skrev: >On Wed, 4 May 2005, a12 wrote: > > >>Alexander Gottwald skrev: >> >> >>>On Wed, 4 May 2005, a12 wrote: >>> >>> >>>>Pardon my ignorance, but what am I supposed to do to solve the >>>>problem ? >>>> >>>Start XWin. >>> >>Which means: use XDMCP & don't use xterm. >>Please correct me, if I am wrong. >> > >You're wrong. It means exactly what it says: run "startx" (or >"startxwin.bat", or "start XWin.exe ...", or any of your favorite methods >for starting the X server on your local machine) before running "ssh -X/Y". > >And please don't top-post. Thanks. > Igor > From Vincenzo.Daniele@partner.bmw.de Mon May 9 11:13:00 2005 From: Vincenzo.Daniele@partner.bmw.de (Vincenzo Daniele) Date: Mon, 09 May 2005 11:13:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx Message-ID: Hello folks, I have following output when running startx from bash ------ output begin ----------------- $ startx & [1] 1940 qx18582@LMUC201440 ~ $ Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: X :0 -auth /home/qx18582/.Xauthority -kb _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1 (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TT F/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/ X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Using Shadow DirectDraw NonLocking winAdjustVideoModeShadowDDNL - Using Windows display depth of 32 bits per pixel winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000407" (00000407) (--) Using preset keyboard for "German (Germany)" (407), type "4" (++) XkbExtension disabled (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winPointerWarpCursor - Discarding first warp: 636 499 winProcEstablishConnection - Hello winProcEstablishConnection - Clipboard is not enabled, returning. Xlib: unexpected async reply (sequence 0x6d)! Xlib: unexpected async reply (sequence 0x6f)! ... --- snip: (this lines are repeated veeeery often) ---- ... Xlib: unexpected async reply (sequence 0x1921)! Xlib: unexpected async reply (sequence 0x1923)! XIO: fatal IO error 0 (No error) on X server ":0.0" after 111 requests (6436 known processed) with 0 events remaining. XIO: fatal IO error 0 (No error) on X server ":0.0" after 7 requests (6 known processed) with 0 events remaining. waiting for X server to shut down .(II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TT F/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/ X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Using Shadow DirectDraw NonLocking winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000407" (00000407) (--) Using preset keyboard for "German (Germany)" (407), type "4" (++) XkbExtension disabled (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winDeinitMultiWindowWM - Noting shutdown in progress [1]+ Done startx ---------- output end ------------------------------- The only thing I found about the error message was a hint in programming multiple threads whith X, (http://www.faqs.org/faqs/x-faq/part7/section-15.html) but that didn?t pick me any further. Well, these problems occurred after some windows admin forced my computer to reboot because of an update (I don?t know what thing or how to find out exactly), maybe that has to do whith this failing ... I did?t find anything appropriate in the mailing lists, the faqs or in the web (especially whith these hundrets of lines of this error message), I reinstalled, deinstalled, I tried what ever was possible and known to me, but I?m afraid I?m not too deep into these things. I attached the cygcheck.out file, output of cygcheck -s -v -r, may it help ... Could anyone help, please? Thank you very much in advance, Vincenzo Daniele -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: cygcheck.txt URL: From ebb9@byu.net Mon May 9 13:07:00 2005 From: ebb9@byu.net (Eric Blake) Date: Mon, 09 May 2005 13:07:00 -0000 Subject: Strange-Dangerous behaviour in Cygwin In-Reply-To: <427ED946.4070001@hq.astra.ph> References: <20050507160035.GA12676@trixie.casa.cgf.cx> <20050508225258.GA3896@trixie.casa.cgf.cx> <427ED590.9080309@hq.astra.ph> <427ED946.4070001@hq.astra.ph> Message-ID: <427F5F27.5010507@byu.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Carlo Florendo on 5/8/2005 9:30 PM: > Ooops. Sorry, I've read earlier discussions on this issue just a few > seconds ago by Erik Blake et al. So, it's not an xterm issue. It's a ^^^^ I spell it Eric. > bug with coreutils not being POSIX compliant. A patch has been > applied. We just have to wait for the next annoucement for coreutils. Hold on there - the bug in POSIX non-compliance was that before coreutils patch, `rm -i' accepted " y" as yes, now CVS coreutils obeys POSIX and interprets it as a match failure (which has the same effect as typing an answer interpreted as no). Unfortunately, POSIX requires that if your terminal settings are strange (such as the ctlecho settings that cgf mentioned on linux), such that raw editing characters escape the terminal into the program, that "y\bn" ('y', BACKSPACE, 'n') be interpreted as yes. The only way this would be an xterm bug is if the default tty settings of xterm under cygwin can be changed to improve user experience by making it less likely that raw backspaces are passed through to the program, rather than being line edited first. And my next release of cygwin coreutils-5.3.0-6 will not be CVS coreutils (with all its recent patches in many other areas as well), but stock 5.3.0 with a minimal subset of CVS patches backported as needed (I plan to wait until 5.3.1 is released before cygwin officially sees all upstream patches since 5.3.0, unless someone can convince me of a need for cygwin to track CVS). That means I will not be changing the yes/no behavior in my next drop of coreutils. But rest assured that I am tracking CVS changes on my own machine, to try and make sure that there are no regressions introduced when 5.3.1 is finally released upstream. - -- Life is short - so eat dessert first! Eric Blake ebb9@byu.net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCf18n84KuGfSFAYARAliCAJ9LHbOYO3swwmsLrqlDff0KMyEY4ACeMzAI x1/ti+7xCZub+fRYc0Kts6Q= =wTHd -----END PGP SIGNATURE----- From Alexander.Gottwald@s1999.tu-chemnitz.de Mon May 9 19:03:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 09 May 2005 19:03:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: Vincenzo Daniele wrote: > Xlib: unexpected async reply (sequence 0x1921)! > Xlib: unexpected async reply (sequence 0x1923)! > XIO: fatal IO error 0 (No error) on X server ":0.0" > after 111 requests (6436 known processed) with 0 events remaining. > XIO: fatal IO error 0 (No error) on X server ":0.0" > after 7 requests (6 known processed) with 0 events remaining. This should never happen unless you have some network troubles. bye ago NP: SITD - Plastination City -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From gorrigo@switch.com Mon May 9 21:47:00 2005 From: gorrigo@switch.com (Orrigo, Giampaolo .) Date: Mon, 09 May 2005 21:47:00 -0000 Subject: Unicode support in Cygwin 1.5.16 - Xorg 6.8.2.0 Message-ID: <03F517C72D42284EBB48800AEF3E7D1DB77B13@exchptc1.switch.com> Hi, I'm trying to build a little test program to show unicode fonts in XWin, using LessTif. The code is from the Motif guide (see attached XTest.C). I'm building it with: g++ -I/usr/X11R6/include XTest.C -L/usr/X11R6/lib -lXm -lXt -lX11 The build gives me the following message: Info: resolving _sessionShellWidgetClass by linking to __imp__sessionShellWidgetClass (auto-import) Info: resolving __XmStrings by linking to __imp___XmStrings (auto-import) After that, when I run the executable, the application segfaults. I'm attaching the test program source code, the stack dump and the output of cygcheck. Thanks for your help. Giampaolo <> <> -------------- next part -------------- A non-text attachment was scrubbed... Name: a.exe.stackdump Type: application/octet-stream Size: 1173 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: XTest.C Type: application/octet-stream Size: 2341 bytes Desc: not available URL: From gorrigo@switch.com Mon May 9 21:49:00 2005 From: gorrigo@switch.com (Orrigo, Giampaolo .) Date: Mon, 09 May 2005 21:49:00 -0000 Subject: Unicode support in Cygwin 1.5.16 - Xorg 6.8.2.0 Message-ID: <03F517C72D42284EBB48800AEF3E7D1DB77B14@exchptc1.switch.com> I forgot the cygcheck output. Sorry, here it is. <> > -----Original Message----- > Subject: Unicode support in Cygwin 1.5.16 - Xorg 6.8.2.0 > > Hi, > I'm trying to build a little test program to show unicode fonts in XWin, > using LessTif. > The code is from the Motif guide (see attached XTest.C). > I'm building it with: > g++ -I/usr/X11R6/include XTest.C -L/usr/X11R6/lib -lXm -lXt -lX11 > > The build gives me the following message: > Info: resolving _sessionShellWidgetClass by linking to > __imp__sessionShellWidgetClass (auto-import) > Info: resolving __XmStrings by linking to __imp___XmStrings (auto-import) > > After that, when I run the executable, the application segfaults. > > I'm attaching the test program source code, the stack dump and the output > of > cygcheck. > > Thanks for your help. > > Giampaolo > > <> <> << File: a.exe.stackdump >> << File: > XTest.C >> -------------- next part -------------- A non-text attachment was scrubbed... Name: cygcheck.out Type: application/octet-stream Size: 40511 bytes Desc: not available URL: From jicman@cinops.xerox.com Tue May 10 15:37:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 10 May 2005 15:37:00 -0000 Subject: startx and startxwin.bat somewhat hanging xterm Message-ID: <014301c55575$f464d2b0$2820790d@stso.mc.xerox.com> Greetings! Yesterday, everything was fine. Today, after a reboot I have problems starting xterm. However, I am able to start rdesktop ok, even though the screen is not displayed right. (Attached are two files: .XWinrc and .xinitrc) Here is the startxwin.bat output: startxwin.bat - Starting on Windows NT/2000/XP/2003 Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin -multiwindow -clipboard -silent-dup-error -emulate3buttons _XSERVTransmkdir: Cannot create /tmp/.X11-unix with root ownership winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1 (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winPrefsLoadPreferences: /home/us319318/.XWinrc LoadPreferences: syntax error, unexpected STRING line 59 winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Multi Window or Rootless => ShadowGDI winAdjustVideoModeShadowGDI - Using Windows display depth of 16 bits per pixel winScreenInit - Monitors do not all have same pixel format / display depth. Using primary display only. winAllocateFBShadowGDI - Creating DIB with width: 1024 height: 768 depth: 16 winFinishScreenInitFB - Masks: 0000f800 000007e0 0000001f winInitVisualsShadowGDI - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 bpp 16 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support winMultiWindowXMsgProc - Hello winMultiWindowXMsgProc - Calling pthread_mutex_lock () XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000409" (00000409) (--) Using preset keyboard for "English (USA)" (409), type "4" Rules = "xorg" Model = "pc105" Layout = "us" Variant = "(null)" Options = "(null)" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winPointerWarpCursor - Discarding first warp: 512 384 winInitMultiWindowWM - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winProcEstablishConnection - Hello winInitClipboard () winProcEstablishConnection - winInitClipboard returned. winClipboardProc - Hello DetectUnicodeSupport - Windows NT/2000/XP winClipboardProc - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display. winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display. winClipboardProc - XOpenDisplay () returned and successfully opened the display. winProcSetSelectionOwner - Clipboard not yet started, aborting. winProcSetSelectionOwner - Clipboard not yet started, aborting. winOverrideDefaultIcon: LoadImageComma(reinstall.ico) failed winOverrideDefaultIcon: LoadImageComma(reinstall.ico) failed Here is the startxwin.bat source: @echo off SET DISPLAY=127.0.0.1:0.0 REM REM The path in the CYGWIN_ROOT environment variable assignment assume REM that Cygwin is installed in a directory called 'cygwin' in the root REM directory of the current drive. You will only need to modify REM CYGWIN_ROOT if you have installed Cygwin in another directory. For REM example, if you installed Cygwin in \foo\bar\baz\cygwin, you will need REM to change \cygwin to \foo\bar\baz\cygwin. REM REM This batch file will almost always be run from the same drive (and REM directory) as the drive that contains Cygwin/X, therefore you will REM not need to add a drive letter to CYGWIN_ROOT. For example, you do REM not need to change \cygwin to c:\cygwin if you are running this REM batch file from the C drive. REM SET CYGWIN_ROOT=\cygwin SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% SET XAPPLRESDIR=/usr/X11R6/lib/X11/app-defaults SET XCMSDB=/usr/X11R6/lib/X11/Xcms.txt SET XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB SET XNLSPATH=/usr/X11R6/lib/X11/locale REM REM Cleanup after last run. REM if not exist %CYGWIN_ROOT%\tmp\.X11-unix\X0 goto CLEANUP-FINISH attrib -s %CYGWIN_ROOT%\tmp\.X11-unix\X0 del %CYGWIN_ROOT%\tmp\.X11-unix\X0 :CLEANUP-FINISH if exist %CYGWIN_ROOT%\tmp\.X11-unix rmdir %CYGWIN_ROOT%\tmp\.X11-unix REM REM The error "Fatal server error: could not open default font 'fixed'" is REM caused by using a DOS mode mount for the mount that the Cygwin/X REM fonts are accessed through. See the Cygwin/X FAQ for more REM information: REM http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof REM if "%OS%" == "Windows_NT" goto OS_NT REM Windows 95/98/Me echo startxwin.bat - Starting on Windows 95/98/Me goto STARTUP :OS_NT REM Windows NT/2000/XP/2003 echo startxwin.bat - Starting on Windows NT/2000/XP/2003 :STARTUP REM Brief descriptions of XWin-specific options: REM REM -screen scr_num [width height] REM Enable screen scr_num and optionally specify a width and REM height for that screen. REM Most importantly, any parameters specified before the first -screen REM parameter apply to all screens. Any options after the first -screen REM parameter apply only to the screen that precedes the parameter. REM Example: REM XWin -fullscreen -screen 0 -screen 1 -depth 8 -screen 2 REM All screens will be fullscreen, but screen 2 will be depth 8, while REM screens 0 and 1 will be the default depth (whatever depth Windows REM is currently running at). REM -multiwindow REM Start an integrated Windows-based window manager. Not to be used REM with -rootless nor -fullscreen. REM -rootless REM Use a transparent root window with an external window manager REM (such as twm). Not to be used with -multiwindow nor REM with -fullscreen. REM -fullscreen REM Use a window as large as possible on the primary monitor. REM -multiplemonitors REM Create a root window that covers all monitors on a REM system with multiple monitors. REM -clipboard REM Enable the integrated version of xwinclip. Do not use in REM conjunction with the xwinclip program. REM -depth bits_per_pixel REM Specify the screen depth to run at (in bits per pixel) using a REM DirectDraw-based engine in conjunction with the -fullscreen REM option, ignored if the -fullscreen option is not specified. REM By default, you will be using a DirectDraw based engine on any REM system that supports it. REM -unixkill REM Trap Ctrl+Alt+Backspace as a server shutdown key combination. REM -nounixkill REM Disable Ctrl+Alt+Backspace as a server shutdown key combination (default). REM Example: REM XWin -unixkill -screen 0 -screen 1 -screen 2 -nounixkill REM Screens 0 and 1 will allow Ctrl+Alt+Backspace, but screen 2 will not. REM -winkill REM Trap Alt+F4 as a server shutdown key combination (default). REM -nowinkill REM Disable Alt+F4 as a server shutdown key combination. REM -scrollbars REM Enable resizing of the server display window. Do not use in conjunction REM with -multiwindow nor with -rootless. REM -nodecoration REM Draw the server root window without a title bar or border. REM Do not use with -mutliwindow nor with -rootless. REM -lesspointer REM Hide the Windows mouse cursor anytime it is over any part of the REM window, even if Cygwin/X is not the window with the focus. REM -refresh rate_in_Hz REM Specify a refresh rate to use when used with the -fullscreen option. REM -trayicon REM Enable the tray icon (default). REM -notrayicon REM Disable the tray icon. REM Example: REM XWin -notrayicon -screen 0 -screen 1 -screen 2 -trayicon REM Screens 0 and 1 will not have tray icons, but screen 2 will. REM -emulate3buttons [timeout] REM Emulate 3 button mouse with an optional timeout in milliseconds. REM -xf86config REM Specify an XF86Config-style configuration file. REM -keyboard REM Specify a keyboard device from the configuration file. REM REM Startup the programs REM REM Startup the X Server with the integrated Windows-based window manager. REM WARNING: Do not use 'xwinclip' in conjunction with the ``-clipboard'' REM command-line parameter for XWin. Doing so would start two clipboard REM managers, which is never supposed to happen. REM run XWin -multiwindow -clipboard -silent-dup-error -emulate3buttons REM Startup an xterm, using bash as the shell. REM run xterm -bdc -mb -pc -ti vt100 -e /usr/bin/bash -l REM REM Startup the twm window manager. REM WARNING: Do not use an external window manager in conjunction with REM the ``-multiwindow'' command-line parameter for XWin. Doing so REM would start two window managers, which is never supposed to happen. REM REM run twm REM Set a background color. Only needed when not using -multwindow for XWin. REM run xsetroot -solid aquamarine4 thanks for the help. jic -------------- next part -------------- A non-text attachment was scrubbed... Name: .xinitrc Type: application/octet-stream Size: 946 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: .XWinrc Type: application/octet-stream Size: 2033 bytes Desc: not available URL: From keith@keithtyler.com Tue May 10 22:39:00 2005 From: keith@keithtyler.com (Keith D. Tyler) Date: Tue, 10 May 2005 22:39:00 -0000 Subject: Win32 X clients? In-Reply-To: <014301c55575$f464d2b0$2820790d@stso.mc.xerox.com> References: <014301c55575$f464d2b0$2820790d@stso.mc.xerox.com> Message-ID: <428137D2.6090408@keithtyler.com> Aside from the list at http://x.cygwin.com/ported-software.html, which is specifically limited to Cygwin software, does anyone know of a good source of available X clients that are native under Win32? I'm also interested if anyone has managed to compile Firefox under Windows as an X client instead of using Win32 windowing. Kdt From Markus.Jung@tds.de Wed May 11 08:37:00 2005 From: Markus.Jung@tds.de (Markus Jung) Date: Wed, 11 May 2005 08:37:00 -0000 Subject: mrxvt and hotkeys - Please help!!!!!!!!!!!!!!!!! Message-ID: Hi List! Thank you Scott for opening the discussion that brought up that great termial mrxvt. It supports and it's working with transparent backround without that refresh problem I had with other terms!!! YEAH!!! But theres one thing I can't get to work. The hotkeys to change tabs or something. Has anyone get this working on cygwin X and how?? With which Key definition?? Thanks, Markus From cplager+cygwin@physics.ucla.edu Wed May 11 12:26:00 2005 From: cplager+cygwin@physics.ucla.edu (Charles Plager) Date: Wed, 11 May 2005 12:26:00 -0000 Subject: mrxvt and hotkeys Message-ID: <4281F836.7090402@physics.ucla.edu> Markus Jung wrote: > Hi List! > > Thank you Scott for opening the discussion that brought up that great > termial mrxvt. > It supports and it's working with transparent backround without that > refresh problem > I had with other terms!!! YEAH!!! > > But theres one thing I can't get to work. The hotkeys to change tabs or > something. > Has anyone get this working on cygwin X and how?? With which Key > definition?? I usually use Exceed and not the cygwin X server, but the Gnome settings as described in doc/TIPS work for me: Gnome-terminal style default hotkeys: Ctrl_Shift_t : create a new tab Ctrl_Shift_w : close active tab Ctrl_PgUp : activate left tab Ctrl_PgDn : activate right tab Meta_1 : activate 1st tab ... Meta_9 : activate 9th tab Ctrl_Shift_+ : increase font size (next font) Ctrl_= : increase font size (next font) Ctrl_Shift__ : decrease font size (previous font) Ctrl_- : decrease font size (previous font) Cheers, Charles From jicman@cinops.xerox.com Wed May 11 23:08:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Wed, 11 May 2005 23:08:00 -0000 Subject: rdesktop build on cygwin gone wrong References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> Message-ID: <018b01c5567e$25a07d30$2820790d@stso.mc.xerox.com> Sorry for the cross-post, but... Ok, so I downloaded rdesktop 1.4.1 to build it with cygwin on a WinXP Pro machine. And on the "make install", I am getting this error: jic 16:32:18-> make install mkdir -p /usr/local/bin /usr/bin/install -c rdesktop /usr/local/bin strip /usr/local/bin/rdesktop strip: /usr/local/bin/rdesktop: No such file or directory make: *** [installbin] Error 1 I've tried it a few times and I still get the the same problem. Here is the interesting part: rdesktop works and the man page also. Huh! Any ideas? thanks, jos?? ----- Original Message ----- From: "David Rothenberger" To: Sent: Tuesday, May 03, 2005 6:07 PM Subject: Re: rdesktop build on cygwin gone wrong > On 5/3/2005 2:42 PM, jose isaias cabrera wrote: >> >> Greetings! >> >> so, I built and used rdesktop with cygwin for a long time, but I had to >> rebuild my laptop and now I was trying to build rdesktop with cygwin and >> on the >> >> make install >> >> command, an extra / has been added to the path. Here is the error: >> >> >> jic 17:03:08-> make install >> mkdir -p //usr/local/bin >> /usr/bin/install -c rdesktop //usr/local/bin >> /usr/bin/install: cannot create regular file `//usr/local/bin.exe': No >> such >> host or network path >> make: *** [installbin] Error 1 >> > > It seems like a problem with Makefile.in. Apply the attached patch, then > run "autoreconf -f && ./configure && make && make install". > > -- > David Rothenberger spammer? -> spam@daveroth.dyndns.org > GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 > > -------------------------------------------------------------------------------- > --- rdesktop-1.4.0-orig/Makefile.in 2005-03-02 09:34:16.000000000 -0800 > +++ rdesktop-1.4.0/Makefile.in 2005-05-03 15:02:31.861000000 -0700 > @@ -54,25 +54,24 @@ > > .PHONY: installbin > installbin: rdesktop > - mkdir -p $(DESTDIR)/$(bindir) > - $(INSTALL) rdesktop $(DESTDIR)/$(bindir) > - strip $(DESTDIR)/$(bindir)/rdesktop > - chmod 755 $(DESTDIR)/$(bindir)/rdesktop > + mkdir -p $(DESTDIR)$(bindir) > + $(INSTALL) -s rdesktop $(DESTDIR)$(bindir) > + chmod 755 $(DESTDIR)$(bindir)/rdesktop > > .PHONY: installman > installman: doc/rdesktop.1 > - mkdir -p $(DESTDIR)/$(mandir)/man1 > - cp doc/rdesktop.1 $(DESTDIR)/$(mandir)/man1 > - chmod 644 $(DESTDIR)/$(mandir)/man1/rdesktop.1 > + mkdir -p $(DESTDIR)$(mandir)/man1 > + cp doc/rdesktop.1 $(DESTDIR)$(mandir)/man1 > + chmod 644 $(DESTDIR)$(mandir)/man1/rdesktop.1 > > .PHONY: installkeymaps > installkeymaps: > - mkdir -p $(DESTDIR)/$(KEYMAP_PATH) > + mkdir -p $(DESTDIR)$(KEYMAP_PATH) > # Prevent copying the CVS directory > - cp keymaps/?? keymaps/??-?? $(DESTDIR)/$(KEYMAP_PATH) > - cp keymaps/common $(DESTDIR)/$(KEYMAP_PATH) > - cp keymaps/modifiers $(DESTDIR)/$(KEYMAP_PATH) > - chmod 644 $(DESTDIR)/$(KEYMAP_PATH)/* > + cp keymaps/?? keymaps/??-?? $(DESTDIR)$(KEYMAP_PATH) > + cp keymaps/common $(DESTDIR)$(KEYMAP_PATH) > + cp keymaps/modifiers $(DESTDIR)$(KEYMAP_PATH) > + chmod 644 $(DESTDIR)$(KEYMAP_PATH)/* > > .PHONY: proto > proto: > From daveroth@acm.org Thu May 12 00:00:00 2005 From: daveroth@acm.org (David Rothenberger) Date: Thu, 12 May 2005 00:00:00 -0000 Subject: rdesktop build on cygwin gone wrong In-Reply-To: <018b01c5567e$25a07d30$2820790d@stso.mc.xerox.com> References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <018b01c5567e$25a07d30$2820790d@stso.mc.xerox.com> Message-ID: <42829CA8.4040101@acm.org> On 5/11/2005 4:07 PM, jose isaias cabrera wrote: > > Sorry for the cross-post, but... > > Ok, so I downloaded rdesktop 1.4.1 to build it with cygwin on a WinXP > Pro machine. And on the "make install", I am getting this error: > > jic 16:32:18-> make install > mkdir -p /usr/local/bin > /usr/bin/install -c rdesktop /usr/local/bin > strip /usr/local/bin/rdesktop > strip: /usr/local/bin/rdesktop: No such file or directory > make: *** [installbin] Error 1 > > I've tried it a few times and I still get the the same problem. Here is > the interesting part: rdesktop works and the man page also. Huh! > > Any ideas? It's because the makefile really needs to invoke "strip /usr/local/bin/rdesktop.exe" Strip just removes any debugging symbols, so the executable without the strip will work fine, it just might be larger than you need. To fix the problem, you can apply the supplied patch, or just run "strip /usr/local/bin/rdesktop.exe". -- David Rothenberger spammer? -> spam@daveroth.dyndns.org GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 I don't think it's worth washing hogs over. -- Larry Wall in <199710060253.TAA09723@wall.org> -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: rdesktop-1.4.1.patch URL: From d00jowi@dtek.chalmers.se Thu May 12 00:01:00 2005 From: d00jowi@dtek.chalmers.se (Johan =?iso-8859-1?Q?Wickstr=F6m?=) Date: Thu, 12 May 2005 00:01:00 -0000 Subject: Problems with startxwin.bat Message-ID: <40605.213.46.218.128.1115856059.squirrel@webmail.chalmers.se> I have pretty much the same problem as Jos?? Cabrera. I am running this startxwin.bat from Windows XP: @echo off SET DISPLAY=127.0.0.1:0.0 REM REM The path in the CYGWIN_ROOT environment variable assignment assume REM that Cygwin is installed in a directory called 'cygwin' in the root REM directory of the current drive. You will only need to modify REM CYGWIN_ROOT if you have installed Cygwin in another directory. For REM example, if you installed Cygwin in \foo\bar\baz\cygwin, you will need REM to change \cygwin to \foo\bar\baz\cygwin. REM REM This batch file will almost always be run from the same drive (and REM directory) as the drive that contains Cygwin/X, therefore you will REM not need to add a drive letter to CYGWIN_ROOT. For example, you do REM not need to change \cygwin to c:\cygwin if you are running this REM batch file from the C drive. REM SET CYGWIN_ROOT=\cygwin SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% SET XAPPLRESDIR=/usr/X11R6/lib/X11/app-defaults SET XCMSDB=/usr/X11R6/lib/X11/Xcms.txt SET XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB SET XNLSPATH=/usr/X11R6/lib/X11/locale REM REM Cleanup after last run. REM if not exist %CYGWIN_ROOT%\tmp\.X11-unix\X0 goto CLEANUP-FINISH attrib -s %CYGWIN_ROOT%\tmp\.X11-unix\X0 del %CYGWIN_ROOT%\tmp\.X11-unix\X0 :CLEANUP-FINISH if exist %CYGWIN_ROOT%\tmp\.X11-unix rmdir %CYGWIN_ROOT%\tmp\.X11-unix REM REM The error "Fatal server error: could not open default font 'fixed'" is REM caused by using a DOS mode mount for the mount that the Cygwin/X REM fonts are accessed through. See the Cygwin/X FAQ for more REM information: REM http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof REM if "%OS%" == "Windows_NT" goto OS_NT REM Windows 95/98/Me echo startxwin.bat - Starting on Windows 95/98/Me goto STARTUP :OS_NT REM Windows NT/2000/XP/2003 echo startxwin.bat - Starting on Windows NT/2000/XP/2003 :STARTUP REM Brief descriptions of XWin-specific options: REM REM -screen scr_num [width height] REM Enable screen scr_num and optionally specify a width and REM height for that screen. REM Most importantly, any parameters specified before the first -screen REM parameter apply to all screens. Any options after the first -screen REM parameter apply only to the screen that precedes the parameter. REM Example: REM XWin -fullscreen -screen 0 -screen 1 -depth 8 -screen 2 REM All screens will be fullscreen, but screen 2 will be depth 8, while REM screens 0 and 1 will be the default depth (whatever depth Windows REM is currently running at). REM -multiwindow REM Start an integrated Windows-based window manager. Not to be used REM with -rootless nor -fullscreen. REM -rootless REM Use a transparent root window with an external window manager REM (such as twm). Not to be used with -multiwindow nor REM with -fullscreen. REM -fullscreen REM Use a window as large as possible on the primary monitor. REM -multiplemonitors REM Create a root window that covers all monitors on a REM system with multiple monitors. REM -clipboard REM Enable the integrated version of xwinclip. Do not use in REM conjunction with the xwinclip program. REM -depth bits_per_pixel REM Specify the screen depth to run at (in bits per pixel) using a REM DirectDraw-based engine in conjunction with the -fullscreen REM option, ignored if the -fullscreen option is not specified. REM By default, you will be using a DirectDraw based engine on any REM system that supports it. REM -unixkill REM Trap Ctrl+Alt+Backspace as a server shutdown key combination. REM -nounixkill REM Disable Ctrl+Alt+Backspace as a server shutdown key combination (default). REM Example: REM XWin -unixkill -screen 0 -screen 1 -screen 2 -nounixkill REM Screens 0 and 1 will allow Ctrl+Alt+Backspace, but screen 2 will not. REM -winkill REM Trap Alt+F4 as a server shutdown key combination (default). REM -nowinkill REM Disable Alt+F4 as a server shutdown key combination. REM -scrollbars REM Enable resizing of the server display window. Do not use in conjunction REM with -multiwindow nor with -rootless. REM -nodecoration REM Draw the server root window without a title bar or border. REM Do not use with -mutliwindow nor with -rootless. REM -lesspointer REM Hide the Windows mouse cursor anytime it is over any part of the REM window, even if Cygwin/X is not the window with the focus. REM -refresh rate_in_Hz REM Specify a refresh rate to use when used with the -fullscreen option. REM -trayicon REM Enable the tray icon (default). REM -notrayicon REM Disable the tray icon. REM Example: REM XWin -notrayicon -screen 0 -screen 1 -screen 2 -trayicon REM Screens 0 and 1 will not have tray icons, but screen 2 will. REM -emulate3buttons [timeout] REM Emulate 3 button mouse with an optional timeout in milliseconds. REM -xf86config REM Specify an XF86Config-style configuration file. REM -keyboard REM Specify a keyboard device from the configuration file. REM REM Startup the programs REM REM Startup the X Server with the integrated Windows-based window manager. REM WARNING: Do not use 'xwinclip' in conjunction with the ``-clipboard'' REM command-line parameter for XWin. Doing so would start two clipboard REM managers, which is never supposed to happen. REM run XWin -multiwindow -clipboard -emulate3buttons -lesspointer REM run XWin -multiwindow -clipboard -emulate3buttons -lesspointer export DISPLAY=localhost:0.0 run XWin -clipboard -emulate3buttons -lesspointer REM Startup an xterm, using bash as the shell. run xterm -sl 1000 -sb -rightbar -e /usr/bin/bash -l REM REM Startup the twm window manager. REM WARNING: Do not use an external window manager in conjunction with REM the ``-multiwindow'' command-line parameter for XWin. Doing so REM would start two window managers, which is never supposed to happen. REM run wmaker REM Set a background color. Only needed when not using -multwindow for XWin. REM run xsetroot -solid aquamarine4 SET XWINLOADED=YES Window Maker opens alright and I can work normally but it doesn't open an xterm, but the usual bash shell instead. This is my XWin.log: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: /usr/X11R6/bin/XWin -multiwindow -clipboard -emulate3buttons -lesspointer ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1280 h 1024 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Cannot create /tmp/.X11-unix with root ownership (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 1280 height: 1024 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winMultiWindowXMsgProc - Hello winMultiWindowXMsgProc - Calling pthread_mutex_lock () winInitMultiWindowWM - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "0000041D" (0000041d) (--) Using preset keyboard for "Swedish (Sweden)" (41d), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winInitMultiWindowWM - pthread_mutex_lock () returned. winProcEstablishConnection - Hello winInitClipboard () winProcEstablishConnection - winInitClipboard returned. winClipboardProc - Hello DetectUnicodeSupport - Windows NT/2000/XP winClipboardProc - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winClipboardProc - XOpenDisplay () returned and successfully opened the display. winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display. winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display. winDeinitMultiWindowWM - Noting shutdown in progress winClipboardProc - winClipboardFlushWindowsMessageQueue trapped WM_QUIT message, exiting main loop. winClipboardProc - XDestroyWindow succeeded. winMultiWindowXMsgProcIOErrorHandler! winInitMultiWindowXMsgProc - Caught IO Error. Exiting. winDeinitMultiWindowWM - Noting shutdown in progress I would be very grateful if anyone could help me with this error. Thanks, Johan W From Vincenzo.Daniele@partner.bmw.de Thu May 12 06:12:00 2005 From: Vincenzo.Daniele@partner.bmw.de (Vincenzo Daniele) Date: Thu, 12 May 2005 06:12:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence0xAdress)!" when runnning startx Message-ID: > >Vincenzo Daniele wrote: > >> Xlib: unexpected async reply (sequence 0x1921)! >> Xlib: unexpected async reply (sequence 0x1923)! >> XIO: fatal IO error 0 (No error) on X server ":0.0" >> after 111 requests (6436 known processed) with 0 events remaining. >> XIO: fatal IO error 0 (No error) on X server ":0.0" >> after 7 requests (6 known processed) with 0 events remaining. > > This should never happen unless you have some network troubles. > > bye > ago > NP: SITD - Plastination City > -- > Alexander.Gottwald@s1999.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 Hello again, hope I don?t disturb you. I can not detect any network trouble or I don?t know the kind of network trouble you mean. Still I can connect to the web and to other servers via ssh or rsh. Tools like any webbrowser or putty do work. Do I overlook something here? Vincenzo Daniele From alexander.gottwald@s1999.tu-chemnitz.de Thu May 12 09:08:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 12 May 2005 09:08:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Thu, 12 May 2005, Vincenzo Daniele wrote: > I can not detect any network trouble or I don??t know the kind of network trouble you mean. > Still I can connect to the web and to other servers via ssh or rsh. Tools like any webbrowser or putty do work. > Do I overlook something here? Google says it may be a threading problem too. What applications are you running? bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Thu May 12 14:05:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Thu, 12 May 2005 14:05:00 -0000 Subject: rdesktop build on cygwin gone wrong References: <006d01c55028$f72e0770$2820790d@stso.xcdg.xerox.com> <4277F60C.1020609@acm.org> <018b01c5567e$25a07d30$2820790d@stso.mc.xerox.com> <42829CA8.4040101@acm.org> Message-ID: <004601c556fb$7bccda50$2820790d@stso.mc.xerox.com> thanks. jos?? ----- Original Message ----- From: "David Rothenberger" To: Cc: Sent: Wednesday, May 11, 2005 8:00 PM Subject: Re: rdesktop build on cygwin gone wrong > On 5/11/2005 4:07 PM, jose isaias cabrera wrote: >> >> Sorry for the cross-post, but... >> >> Ok, so I downloaded rdesktop 1.4.1 to build it with cygwin on a WinXP >> Pro machine. And on the "make install", I am getting this error: >> >> jic 16:32:18-> make install >> mkdir -p /usr/local/bin >> /usr/bin/install -c rdesktop /usr/local/bin >> strip /usr/local/bin/rdesktop >> strip: /usr/local/bin/rdesktop: No such file or directory >> make: *** [installbin] Error 1 >> >> I've tried it a few times and I still get the the same problem. Here is >> the interesting part: rdesktop works and the man page also. Huh! >> >> Any ideas? > > It's because the makefile really needs to invoke "strip > /usr/local/bin/rdesktop.exe" Strip just removes any debugging symbols, > so the executable without the strip will work fine, it just might be > larger than you need. > > To fix the problem, you can apply the supplied patch, or just run "strip > /usr/local/bin/rdesktop.exe". > > > -- > David Rothenberger spammer? -> spam@daveroth.dyndns.org > GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 > > I don't think it's worth washing hogs over. > -- Larry Wall in <199710060253.TAA09723@wall.org> > -------------------------------------------------------------------------------- > diff -u -r -N rdesktop-1.4.1-orig/Makefile.in rdesktop-1.4.1/Makefile.in > --- rdesktop-1.4.1-orig/Makefile.in 2005-05-04 13:32:16.000000000 -0700 > +++ rdesktop-1.4.1/Makefile.in 2005-05-11 16:51:21.781750000 -0700 > @@ -55,8 +55,7 @@ > .PHONY: installbin > installbin: rdesktop > mkdir -p $(DESTDIR)$(bindir) > - $(INSTALL) rdesktop $(DESTDIR)$(bindir) > - strip $(DESTDIR)$(bindir)/rdesktop > + $(INSTALL) -s rdesktop $(DESTDIR)$(bindir) > chmod 755 $(DESTDIR)$(bindir)/rdesktop > > .PHONY: installman > From jicman@cinops.xerox.com Thu May 12 14:08:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Thu, 12 May 2005 14:08:00 -0000 Subject: Problems with startxwin.bat References: <40605.213.46.218.128.1115856059.squirrel@webmail.chalmers.se> Message-ID: <005001c556fb$e25e0640$2820790d@stso.mc.xerox.com> Sorry Johan. Mine is still broken, so I stopped using -multiwindow option and just using wmaker. I don't have time, right now, to play with it. Too much work. I hope someone is able to help us. jos?? ----- Original Message ----- From: "Johan Wickstr??m" To: Sent: Wednesday, May 11, 2005 8:00 PM Subject: Problems with startxwin.bat >I have pretty much the same problem as Jos?? Cabrera. > > I am running this startxwin.bat from Windows XP: > > @echo off > SET DISPLAY=127.0.0.1:0.0 > > > REM > REM The path in the CYGWIN_ROOT environment variable assignment assume > REM that Cygwin is installed in a directory called 'cygwin' in the root > REM directory of the current drive. You will only need to modify > REM CYGWIN_ROOT if you have installed Cygwin in another directory. For > REM example, if you installed Cygwin in \foo\bar\baz\cygwin, you will need > REM to change \cygwin to \foo\bar\baz\cygwin. > REM > REM This batch file will almost always be run from the same drive (and > REM directory) as the drive that contains Cygwin/X, therefore you will > REM not need to add a drive letter to CYGWIN_ROOT. For example, you do > REM not need to change \cygwin to c:\cygwin if you are running this > REM batch file from the C drive. > REM > > SET CYGWIN_ROOT=\cygwin > > SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% > > SET XAPPLRESDIR=/usr/X11R6/lib/X11/app-defaults > SET XCMSDB=/usr/X11R6/lib/X11/Xcms.txt > SET XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB > SET XNLSPATH=/usr/X11R6/lib/X11/locale > > > REM > REM Cleanup after last run. > REM > > if not exist %CYGWIN_ROOT%\tmp\.X11-unix\X0 goto CLEANUP-FINISH > attrib -s %CYGWIN_ROOT%\tmp\.X11-unix\X0 > del %CYGWIN_ROOT%\tmp\.X11-unix\X0 > > :CLEANUP-FINISH > if exist %CYGWIN_ROOT%\tmp\.X11-unix rmdir %CYGWIN_ROOT%\tmp\.X11-unix > > > REM > REM The error "Fatal server error: could not open default font 'fixed'" is > REM caused by using a DOS mode mount for the mount that the Cygwin/X > REM fonts are accessed through. See the Cygwin/X FAQ for more > REM information: > REM http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof > REM > > if "%OS%" == "Windows_NT" goto OS_NT > > REM Windows 95/98/Me > echo startxwin.bat - Starting on Windows 95/98/Me > > goto STARTUP > > :OS_NT > > REM Windows NT/2000/XP/2003 > echo startxwin.bat - Starting on Windows NT/2000/XP/2003 > > :STARTUP > > REM Brief descriptions of XWin-specific options: > REM > REM -screen scr_num [width height] > REM Enable screen scr_num and optionally specify a width and > REM height for that screen. > REM Most importantly, any parameters specified before the > first -screen > REM parameter apply to all screens. Any options after the > first -screen > REM parameter apply only to the screen that precedes the parameter. > REM Example: > REM XWin -fullscreen -screen 0 -screen 1 -depth 8 -screen 2 > REM All screens will be fullscreen, but screen 2 will be depth 8, > while > REM screens 0 and 1 will be the default depth (whatever depth Windows > REM is currently running at). > REM -multiwindow > REM Start an integrated Windows-based window manager. Not to be used > REM with -rootless nor -fullscreen. > REM -rootless > REM Use a transparent root window with an external window manager > REM (such as twm). Not to be used with -multiwindow nor > REM with -fullscreen. > REM -fullscreen > REM Use a window as large as possible on the primary monitor. > REM -multiplemonitors > REM Create a root window that covers all monitors on a > REM system with multiple monitors. > REM -clipboard > REM Enable the integrated version of xwinclip. Do not use in > REM conjunction with the xwinclip program. > REM -depth bits_per_pixel > REM Specify the screen depth to run at (in bits per pixel) using a > REM DirectDraw-based engine in conjunction with the -fullscreen > REM option, ignored if the -fullscreen option is not specified. > REM By default, you will be using a DirectDraw based engine on any > REM system that supports it. > REM -unixkill > REM Trap Ctrl+Alt+Backspace as a server shutdown key combination. > REM -nounixkill > REM Disable Ctrl+Alt+Backspace as a server shutdown key combination > (default). > REM Example: > REM XWin -unixkill -screen 0 -screen 1 -screen 2 -nounixkill > REM Screens 0 and 1 will allow Ctrl+Alt+Backspace, but screen 2 will > not. > REM -winkill > REM Trap Alt+F4 as a server shutdown key combination (default). > REM -nowinkill > REM Disable Alt+F4 as a server shutdown key combination. > REM -scrollbars > REM Enable resizing of the server display window. Do not use in > conjunction > REM with -multiwindow nor with -rootless. > REM -nodecoration > REM Draw the server root window without a title bar or border. > REM Do not use with -mutliwindow nor with -rootless. > REM -lesspointer > REM Hide the Windows mouse cursor anytime it is over any part of the > REM window, even if Cygwin/X is not the window with the focus. > REM -refresh rate_in_Hz > REM Specify a refresh rate to use when used with the -fullscreen > option. > REM -trayicon > REM Enable the tray icon (default). > REM -notrayicon > REM Disable the tray icon. > REM Example: > REM XWin -notrayicon -screen 0 -screen 1 -screen 2 -trayicon > REM Screens 0 and 1 will not have tray icons, but screen 2 will. > REM -emulate3buttons [timeout] > REM Emulate 3 button mouse with an optional timeout in milliseconds. > REM -xf86config > REM Specify an XF86Config-style configuration file. > REM -keyboard > REM Specify a keyboard device from the configuration file. > > > REM > REM Startup the programs > REM > > > REM Startup the X Server with the integrated Windows-based window manager. > REM WARNING: Do not use 'xwinclip' in conjunction with the ``-clipboard'' > REM command-line parameter for XWin. Doing so would start two clipboard > REM managers, which is never supposed to happen. > > REM run XWin -multiwindow -clipboard -emulate3buttons -lesspointer > REM run XWin -multiwindow -clipboard -emulate3buttons -lesspointer > > export DISPLAY=localhost:0.0 > run XWin -clipboard -emulate3buttons -lesspointer > > REM Startup an xterm, using bash as the shell. > > run xterm -sl 1000 -sb -rightbar -e /usr/bin/bash -l > > REM > REM Startup the twm window manager. > REM WARNING: Do not use an external window manager in conjunction with > REM the ``-multiwindow'' command-line parameter for XWin. Doing so > REM would start two window managers, which is never supposed to happen. > REM > > run wmaker > > > REM Set a background color. Only needed when not using -multwindow for > XWin. > > REM run xsetroot -solid aquamarine4 > > SET XWINLOADED=YES > > > Window Maker opens alright and I can work normally but it doesn't open an > xterm, but the usual bash shell instead. This is my XWin.log: > > Welcome to the XWin X Server > Vendor: The Cygwin/X Project > Release: 6.8.2.0-2 > > Contact: cygwin-xfree@cygwin.com > > XWin was started with the following command line: > > /usr/X11R6/bin/XWin -multiwindow -clipboard -emulate3buttons > -lesspointer > > ddxProcessArgument - Initializing default screens > winInitializeDefaultScreens - w 1280 h 1024 > winInitializeDefaultScreens - Returning > _XSERVTransmkdir: Cannot create /tmp/.X11-unix with root ownership > (II) XF86Config is not supported > (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more > information > (==) FontPath set to > "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" > winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per > pixel > winAllocateFBShadowGDI - Creating DIB with width: 1280 height: 1024 depth: > 32 > winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > bpp 32 > null screen fn ReparentWindow > null screen fn RestackWindow > InitQueue - Calling pthread_mutex_init > InitQueue - pthread_mutex_init returned > InitQueue - Calling pthread_cond_init > InitQueue - pthread_cond_init returned > winInitMultiWindowWM - Hello > winMultiWindowXMsgProc - Hello > winMultiWindowXMsgProc - Calling pthread_mutex_lock () > winInitMultiWindowWM - Calling pthread_mutex_lock () > MIT-SHM extension disabled due to lack of kernel support > XFree86-Bigfont extension local-client optimization disabled due to lack > of shared memory support in the kernel > (--) Setting autorepeat to delay=500, rate=31 > (--) winConfigKeyboard - Layout: "0000041D" (0000041d) > (--) Using preset keyboard for "Swedish (Sweden)" (41d), type "4" > (--) 3 mouse buttons found > Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing > from list! > winInitMultiWindowWM - pthread_mutex_lock () returned. > winProcEstablishConnection - Hello > winInitClipboard () > winProcEstablishConnection - winInitClipboard returned. > winClipboardProc - Hello > DetectUnicodeSupport - Windows NT/2000/XP > winClipboardProc - DISPLAY=127.0.0.1:0.0 > winMultiWindowXMsgProc - pthread_mutex_lock () returned. > winMultiWindowXMsgProc - pthread_mutex_unlock () returned. > winInitMultiWindowWM - pthread_mutex_unlock () returned. > winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 > winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 > winClipboardProc - XOpenDisplay () returned and successfully opened the > display. > winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened > the display. > winInitMultiWindowWM - XOpenDisplay () returned and successfully opened > the display. > winDeinitMultiWindowWM - Noting shutdown in progress > winClipboardProc - winClipboardFlushWindowsMessageQueue trapped WM_QUIT > message, exiting main loop. > winClipboardProc - XDestroyWindow succeeded. > > winMultiWindowXMsgProcIOErrorHandler! > > winInitMultiWindowXMsgProc - Caught IO Error. Exiting. > winDeinitMultiWindowWM - Noting shutdown in progress > > > I would be very grateful if anyone could help me with this error. > > Thanks, > > Johan W > > From jason.pearce@ieee.org Thu May 12 15:33:00 2005 From: jason.pearce@ieee.org (Jason Pearce) Date: Thu, 12 May 2005 15:33:00 -0000 Subject: Where does the X11 fonts mount come from? Message-ID: <4283772F.6060201@ieee.org> I have a user reporting that they are not getting a mount to the fonts directory after installing. Where does this mount actually come from? I cant see it by greping any of the postinstall scripts. Regards, Jason. From alexander.gottwald@s1999.tu-chemnitz.de Thu May 12 15:43:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 12 May 2005 15:43:00 -0000 Subject: Where does the X11 fonts mount come from? In-Reply-To: <4283772F.6060201@ieee.org> References: <4283772F.6060201@ieee.org> Message-ID: On Thu, 12 May 2005, Jason Pearce wrote: > I have a user reporting that they are not getting a mount to the fonts > directory after installing. > Where does this mount actually come from? I cant see it by greping any > of the postinstall scripts. Because it does not exist anymore. The postinstall script runs font-update to fix the issues which were addressed by the mount before. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From kak343@yahoo.com Thu May 12 16:21:00 2005 From: kak343@yahoo.com (Marcel) Date: Thu, 12 May 2005 16:21:00 -0000 Subject: startxwin doesn't pop up terminal Message-ID: <20050512162131.42260.qmail@web50808.mail.yahoo.com> I've been using cygwin and cygwin/x or at least an xterm by running the startxwin.bat provided by the default cygwin setup.exe. (on windows xp) Then I'm not sure what happened, I think I just reinstalled some packages with setup, in any event, when I now run startxwin.bat or if I try startxwin.sh or startx or XWin.exe, I don't get a terminal or window pop up anymore. In th eprocess list there is an XWin and an xterm (for startxwin), and there is an X icon in the lower righ corner, but no window to type into. I can only get the cygwin bash shell, which does not provide graphics/x. I tried to play with export DISPLAY=localhost:0 and variants, and I tried to look for something simple related to this issue on the FAQ, mailing list archive or the web, or in the man page of startx. When I run startxwin.sh from the bash shell, it writes a lot of lines. To me they seem to indicate that XWin was launched, that some modules can communicate and such. The last line is winInitMultiWindowWM - Hello and then nothing else happens. I don't think I have modified anything in cygwin compared to the defaults at download - in fact I just reinstalled the x-parts, plus I don't know how to modify anthing :-) Where can I find some instructions on how to (re)start using cygwin/x? Norbert __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From tim.day@barco.com Thu May 12 16:34:00 2005 From: tim.day@barco.com (Tim Day) Date: Thu, 12 May 2005 16:34:00 -0000 Subject: startxwin doesn't pop up terminal Message-ID: Marcel wrote: > I've been using cygwin and cygwin/x or at least an > xterm by running the startxwin.bat provided by the > default cygwin setup.exe. (on windows xp) > Then I'm not sure what happened, I think I just > reinstalled some packages with setup, in any event, > when I now run startxwin.bat or if I try startxwin.sh > or startx or XWin.exe, I don't get a terminal or > window pop up anymore. Exactly the same thing happened to me (on Win2K) a few weeks ago. Used to work. Then it didn't. I'm not sure whether it was a cygwin or graphics-card driver (ATI Radeon) update that broke it. I just dropped the -multiwindow option, ran the openbox window manager and decided I preferred it (but then I do use fluxbox on Linux). I did spend a little time trying to fix it though; putting a "-screen 0" into the XWin command line somewhere (can't remember whether it was before or after -multiwindow) would _sometimes_ work as expected (other times it would still hang up with no xterm, don't know why). Tim --- [Sorry, mandatory blurb] Tim Day Scientist (Visualisation) Barco Bonnington Bond, 2 Anderson Place, Edinburgh EH5 6NP, UK Tel + 44 (0)131 472 5725 Fax: + 44 (0)131 472 4799 http://www.barco.com mailto:tim.day@barco.com Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you. From jicman@cinops.xerox.com Thu May 12 17:10:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Thu, 12 May 2005 17:10:00 -0000 Subject: startxwin doesn't pop up terminal References: Message-ID: <00d501c55715$401c1880$2820790d@stso.mc.xerox.com> It's interesting that you say this. The same thing happened to me. Monday, it was working fine. I did an update and Tuesday, after a reboot, it wouldn't work. And yes, I have an ATI driver on my laptop. Now I am forced to use wmaker, which I am finding myself, slowly, very slowly, falling in love with. :-) jos?? ----- Original Message ----- From: "Tim Day" To: Sent: Thursday, May 12, 2005 12:32 PM Subject: RE: startxwin doesn't pop up terminal > Marcel wrote: > >> I've been using cygwin and cygwin/x or at least an >> xterm by running the startxwin.bat provided by the >> default cygwin setup.exe. (on windows xp) >> Then I'm not sure what happened, I think I just >> reinstalled some packages with setup, in any event, >> when I now run startxwin.bat or if I try startxwin.sh >> or startx or XWin.exe, I don't get a terminal or >> window pop up anymore. > > Exactly the same thing happened to me (on Win2K) a few weeks ago. > Used to work. Then it didn't. I'm not sure whether it > was a cygwin or graphics-card driver (ATI Radeon) update > that broke it. > > I just dropped the -multiwindow option, ran the > openbox window manager and decided I preferred it > (but then I do use fluxbox on Linux). > > I did spend a little time trying to fix it though; > putting a "-screen 0" into the XWin command line > somewhere (can't remember whether it was before or after > -multiwindow) would _sometimes_ work as expected (other > times it would still hang up with no xterm, don't know why). > > Tim > > --- > [Sorry, mandatory blurb] > > Tim Day > Scientist (Visualisation) > > Barco > Bonnington Bond, 2 Anderson Place, Edinburgh EH5 6NP, UK > Tel + 44 (0)131 472 5725 Fax: + 44 (0)131 472 4799 > http://www.barco.com > mailto:tim.day@barco.com > > Unless indicated otherwise, the information contained in this message is > privileged and confidential, and is intended only for the use of the > addressee(s) named above and others who have been specifically authorized > to > receive it. If you are not the intended recipient, you are hereby notified > that any dissemination, distribution or copying of this message and/or > attachments is strictly prohibited. The company accepts no liability for > any > damage caused by any virus transmitted by this email. Furthermore, the > company does not warrant a proper and complete transmission of this > information, nor does it accept liability for any delays. If you have > received this message in error, please contact the sender and delete the > message. Thank you. > > > From Vincenzo.Daniele@partner.bmw.de Fri May 13 08:47:00 2005 From: Vincenzo.Daniele@partner.bmw.de (Vincenzo Daniele) Date: Fri, 13 May 2005 08:47:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx Message-ID: > On Thu, 12 May 2005, Vincenzo Daniele wrote: > >> I can not detect any network trouble or I don?t know the kind of network trouble you mean. >> Still I can connect to the web and to other servers via ssh or rsh. Tools like any webbrowser or putty do work. >> Do I overlook something here? >Google says it may be a threading problem too. What applications are you running? > > bye > ago > -- > Alexander.Gottwald@s1999.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 I?m running some IE 6 explorers and outlook (for the company takes it as a standard, not because it?s my favorite :-) ), MS-Office pakets like Excel and word, putty (as a very poor alternative for cygwin), acrobat reader, total commander, a virus scanner, a printserver. These things were also running before my beloved cygwin died in so many unexpecetd async replies. Only one thing changed (as I mentioned before): An upgrade (or patch or hotfix, whatever they call it) of windows occurred so I had to reboot my computer. Troubles were beginning since then. Still I don?t know what thing exactly has been installed. Does it look like this is no coincidence? If it turns out to be that origin of the problem, how can I find out, what fix has lately been installed? How should I go on? Thank you, V. Daniele From alexander.gottwald@s1999.tu-chemnitz.de Fri May 13 11:23:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 13 May 2005 11:23:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Fri, 13 May 2005, Vincenzo Daniele wrote: > > > > > On Thu, 12 May 2005, Vincenzo Daniele wrote: > > > >> I can not detect any network trouble or I don??t know the kind of network trouble you mean. > >> Still I can connect to the web and to other servers via ssh or rsh. Tools like any webbrowser or putty do work. > >> Do I overlook something here? > > >Google says it may be a threading problem too. What applications are you running? > > > > bye > > ago > > -- > > Alexander.Gottwald@s1999.tu-chemnitz.de > > http://www.gotti.org ICQ: 126018723 > > > Only one thing changed (as I mentioned before): An upgrade (or patch or hotfix, whatever they call it) of windows occurred so I had to reboot my computer. > Troubles were beginning since then. Still I don??t know what thing exactly has been installed. > > Does it look like this is no coincidence? The running windows programs do not matter From the logfile it looked like you are running XWin without -clipboard and -multiwindow which does not create any threads inside the xserver. So if it is a threading issue it must be in the x clients or windowmanager. What kind of window manager are you running? bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From haj@oook.m.uunet.de Fri May 13 12:51:00 2005 From: haj@oook.m.uunet.de (Harald Joerg) Date: Fri, 13 May 2005 12:51:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: (Alexander Gottwald's message of "Mon, 9 May 2005 22:15:51 +0200 (MEST)") References: Message-ID: Alexander Gottwald writes: > Vincenzo Daniele wrote: > >> Xlib: unexpected async reply (sequence 0x1921)! >> Xlib: unexpected async reply (sequence 0x1923)! >> XIO: fatal IO error 0 (No error) on X server ":0.0" >> after 111 requests (6436 known processed) with 0 events remaining. >> XIO: fatal IO error 0 (No error) on X server ":0.0" >> after 7 requests (6 known processed) with 0 events remaining. > > This should never happen unless you have some network troubles. I know the first two of these error messages, but not the XIO sort. Some additional samples (not necessarily in the correct order): ------------------------------------------------------------ X protocol error: BadIDChoice (invalid resource ID chosen for this connection) on protocol request 1 Connection lost to X server `127.0.0.1:0.0' Xlib: sequence lost (0x6000f > 0x60009) in reply type 0x2! ------------------------------------------------------------ In addition, my Xwin.log is clobbered with lines like the following: ------------------------------------------------------------ winTopLevelWindowProc - BitBlt failed: Das Handle ist ung??ltig. (some 1000 times per session) winMultiWindowXMsgProcErrorHandler - ERROR: BadWindow (invalid Window parameter) winMultiWindowGetWMHints - pWin or hints was NULL ------------------------------------------------------------ Actually, I don't care too much because everything works just fine. It is quite surprising how far I can go after the 'sequence lost' messages, but usually I'm using lunchtime (or another break) to restart X, just for safety. But here and then (about once a week, probably less), after having one or two of these "unexpected async reply" messages, emacs crashes. I haven't been able to make that error reproducible, but here are the common characteristics: - This is all on localhost, no personal firewall installed. - It happened with Windows2000, and happens with WindowsXP. - Command line is: XWin -clipboard -multiwindow -xkbmodel pc105 -xkblayout de -xkbvariant nodeadkeys - I'm using the X selection/clipboard quite frequently to exchange data between windows and cygwin applications. - it's always emacs which crashes (sometimes with "exit 70", sometimes segfault). I'm usually having half a dozen emacs windows (emacs would call them "frames") plus a few xterms (mostly localhost, only on rare occasions ssh'ing to other hosts) plus another dozen windows from Windows applications. But most of the *work* is done in emacs, so it isn't that surprising. - emacs doesn't crash immediately, but only if after one of the messages quoted one of the following actions "happens". All of those spawn at least one new process: * registering spam with bogofilter (through a bash script) * completing a mail address in gnus (via EUDC->ldapsearch) * opening another frame * etc... - This can't be the whole story, though. Emacs never crashes when I'm running xmllint (through psgml's 'validate' command) or make (through emacs's 'compile' command), which spawn external processes as well. Re-installing both X and emacs did not help. Since I seem to be completely unable to narrow it down and since I don't feel seriously annoyed, please don't spend too much time on it. This message is just to confirm that strange Xlib-messages happen. If someone has an idea about how to stop this, it would be appreciated though. -- Cheers, haj From alexander.gottwald@s1999.tu-chemnitz.de Fri May 13 13:17:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 13 May 2005 13:17:00 -0000 Subject: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Fri, 13 May 2005, Harald Joerg wrote: > Alexander Gottwald writes: > > > Vincenzo Daniele wrote: > > > >> Xlib: unexpected async reply (sequence 0x1921)! > >> Xlib: unexpected async reply (sequence 0x1923)! > >> XIO: fatal IO error 0 (No error) on X server ":0.0" > >> after 111 requests (6436 known processed) with 0 events remaining. > >> XIO: fatal IO error 0 (No error) on X server ":0.0" > >> after 7 requests (6 known processed) with 0 events remaining. > > > > This should never happen unless you have some network troubles. > > I know the first two of these error messages, but not the XIO sort. The errors are not from XWin but from startx or a x client. > Some additional samples (not necessarily in the correct order): > ------------------------------------------------------------ > X protocol error: BadIDChoice (invalid resource ID chosen for this > connection) on protocol request 1 > > Connection lost to X server `127.0.0.1:0.0' > > Xlib: sequence lost (0x6000f > 0x60009) in reply type 0x2! > ------------------------------------------------------------ > > In addition, my Xwin.log is clobbered with lines like the > following: > > ------------------------------------------------------------ > winTopLevelWindowProc - BitBlt failed: Das Handle ist ung??ltig. > (some 1000 times per session) This happens sometimes if the drawing surface is loast because of a fullscreen app, the screensaver or something else which steals the drawing surface from X. > winMultiWindowXMsgProcErrorHandler - ERROR: BadWindow (invalid Window parameter) Simple problem resulting from a race condition from displaying the window icon and deleting the window. Sometimes the X11 window is deleted before the windows frame is removed and updating the windows frame references the old window. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jason.pearce@ieee.org Fri May 13 18:29:00 2005 From: jason.pearce@ieee.org (Jason Pearce) Date: Fri, 13 May 2005 18:29:00 -0000 Subject: Where does the X11 fonts mount come from? Message-ID: <4284F209.9000907@ieee.org> OK. It was just lying around in my setup for bygone days then. Thanks for clearing it up! Regards, Jason. >On Thu, 12 May 2005, Jason Pearce wrote: > >> I have a user reporting that they are not getting a mount to the fonts >> directory after installing. >> Where does this mount actually come from? I cant see it by greping any >> of the postinstall scripts. > >Because it does not exist anymore. The postinstall script runs font-update >to fix the issues which were addressed by the mount before. > >bye > ago > > From mark@nolo.com Sat May 14 00:24:00 2005 From: mark@nolo.com (Mark Stuhr) Date: Sat, 14 May 2005 00:24:00 -0000 Subject: Gnome and Cygwin/X In-Reply-To: <1116027765.10772.ezmlm@cygwin.com> References: <1116027765.10772.ezmlm@cygwin.com> Message-ID: I've looked around and the last comment I could find was from January to the effect that the Gnome desktop wasn't included yet. It looks to me like it still isn't available, is that correct? Anyone have any sense if it's coming soon? Trying to figure out if I should mess with the old versions from SourceForge or just be patient. Also, I want to make sure I'm understanding. The Gnome stuff that is currently available through setup doesn't seem to have any function for non-developers at this point, correct? In other words, there is no actual actual gnome functionality currently available even after you install all things in the gnome section of setup, that's just installing stuff that will be used when actual gnome desktop and apps come on line, correct? Thanks Mark Stuhr Director of Inf. Tech. Nolo mark@nolo.com From randy@slakr.org Sat May 14 14:13:00 2005 From: randy@slakr.org (Randy Widell) Date: Sat, 14 May 2005 14:13:00 -0000 Subject: FTP and xterm in 1.5.16... Message-ID: <42860815.6060303@slakr.org> After upgrading to 1.5.16, Cygwin seems to just hang when using 'ftp' in xterm. Oddly enough, the problem does not occur when running a shell through the Windows command window instead of xterm. I tried installed the latest snapshot of Cygwin1.dll as per someone's solution to fix a problem with 'read()' in xterm. This did not solve my problem. Any suggestions would be appreciated. From alain.folny@airbus.com Sun May 15 01:33:00 2005 From: alain.folny@airbus.com (alain.folny@airbus.com) Date: Sun, 15 May 2005 01:33:00 -0000 Subject: The Whore Lived Like a German Message-ID: <8a7e.bfceb2abdd8c9aa@airbus.com> Full Article: http://service.spiegel.de/cache/international/0,1518,344374,00.html From gianugo@apache.org Sun May 15 02:04:00 2005 From: gianugo@apache.org (gianugo@apache.org) Date: Sun, 15 May 2005 02:04:00 -0000 Subject: Graeberschaendung auf bundesdeutsche Anordnung Message-ID: Lese selbst: http://www.die-kommenden.net/dk/zeitgeschichte/graeberschaendung.htm From dom@connected-place.co.uk Sun May 15 03:29:00 2005 From: dom@connected-place.co.uk (dom@connected-place.co.uk) Date: Sun, 15 May 2005 03:29:00 -0000 Subject: Schily ueber Deutschland Message-ID: <9700f0ee5329.8ec421@connected-place.co.uk> Lese selbst: http://www.heise.de/newsticker/meldung/59427 From swjkeen@yahoo.co.uk Sun May 15 06:48:00 2005 From: swjkeen@yahoo.co.uk (Simon Keen) Date: Sun, 15 May 2005 06:48:00 -0000 Subject: Opening CDE Through Telnet Message-ID: <20050515064809.5968.qmail@web25510.mail.ukl.yahoo.com> I'm using cygwin/x on Windows 2000 to access an HP-UX server. I wish to use the CDE, which I currently achieve with the following: - run startxwin.bat from Windows explorer; - xhost - telnet - DISPLAY=:0.0 - export DISPLAY - /usr/dt/bin/dtsession This promptly pops up the CDE, but I feel it is a little clunky. I am using this roundabout way as I am going through a firewall and have access only for Telnet (port 23). Is it possible to access the HP-UX server in a way that direclty pops-up the CDE with its logon box? (incidently, I can do this when I'm on the other side of the firewall using "xwin -query , but this hangs from my current location). Thanks, Simon. ___________________________________________________________ How much free photo storage do you get? Store your holiday snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com From dmiranda@telecompersonal.com.ar Sun May 15 09:21:00 2005 From: dmiranda@telecompersonal.com.ar (dmiranda@telecompersonal.com.ar) Date: Sun, 15 May 2005 09:21:00 -0000 Subject: Tuerkei in die EU Message-ID: GEWALTEXZESS: http://www.spiegel.de/politik/ausland/0,1518,345203,00.html Politiker zerrei??t Menschenrechtsbericht: http://www.spiegel.de/politik/ausland/0,1518,325983,00.html Schily = Hitler http://www.spiegel.de/politik/deutschland/0,1518,345929,00.html Schily wehrt sich gegen Hitler-Vergleiche: http://www.spiegel.de/politik/deutschland/0,1518,345749,00.html Sie hat ja wie eine Deutsche gelebt: http://www.spiegel.de/panorama/0,1518,342484,00.html http://www.npd.de/npd_info/deutschland/2005/d0205-31.html Parallelgesellschaften - Feind hoerte mit: http://www.npd.de/npd_info/meldungen/2005/m0305-15.html Sie war unerlaubt spazieren: http://www.taz.de/pt/2004/11/25/a0143.nf/text Tiere an Autobahn geschlachtet: http://forum.gofeminin.de/forum/actu1/__f384_actu1-TuRKEI-NEIN-DANKE.html From alexander.gottwald@s1999.tu-chemnitz.de Sun May 15 10:55:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 15 May 2005 10:55:00 -0000 Subject: Opening CDE Through Telnet In-Reply-To: <20050515064809.5968.qmail@web25510.mail.ukl.yahoo.com> References: <20050515064809.5968.qmail@web25510.mail.ukl.yahoo.com> Message-ID: On Sun, 15 May 2005, Simon Keen wrote: > I'm using cygwin/x on Windows 2000 to access an HP-UX server. I wish to > use the CDE, which I currently achieve with the following: > > - run startxwin.bat from Windows explorer; > > - xhost > - telnet > - DISPLAY=:0.0 > - export DISPLAY > - /usr/dt/bin/dtsession > > This promptly pops up the CDE, but I feel it is a little clunky. > > I am using this roundabout way as I am going through a firewall and > have access only for Telnet (port 23). Is it possible to access the > HP-UX server in a way that direclty pops-up the CDE with its logon box? > (incidently, I can do this when I'm on the other side of the firewall > using "xwin -query , but this hangs from my current > location). XDMCP is very sensible with firewalls and network address translation. Unless you know exactly how XDMCP works and adjust the firewalls accordingly it is unlikely to get XDMPC working across firewalls. You may (and should bacause of security reasons) use ssh with X11Forwarding instead. DISPLAY=localhost:0.0 ssh -Yf /usr/dt/bin/dtsession If this does not work, check the FAQ about common problems. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From neutrogena@news.neutrogena.com Sun May 15 13:33:00 2005 From: neutrogena@news.neutrogena.com (neutrogena@news.neutrogena.com) Date: Sun, 15 May 2005 13:33:00 -0000 Subject: Transparenz ist das Mindeste Message-ID: Lese selbst: http://www.npd.de/npd_info/deutschland/2005/d0405-39.html From sampo@mail.neuronio.pt Sun May 15 13:40:00 2005 From: sampo@mail.neuronio.pt (sampo@mail.neuronio.pt) Date: Sun, 15 May 2005 13:40:00 -0000 Subject: Dresden 1945 Message-ID: <1a150aa.c2dced54d43@qgnwhqni.com> Lese selbst: http://www.kommunisten-online.de/blackchanel/dresden3.htm From cmc3list-win2k@yahoo.com Sun May 15 14:53:00 2005 From: cmc3list-win2k@yahoo.com (Christopher Mark Conn) Date: Sun, 15 May 2005 14:53:00 -0000 Subject: Dresden 1945 In-Reply-To: <1a150aa.c2dced54d43@qgnwhqni.com> (sampo@mail.neuronio.pt's message of "Sun, 15 May 2005 13:34:43 GMT") References: <1a150aa.c2dced54d43@qgnwhqni.com> Message-ID: <86y8agilo5.fsf@zihua.cmconn.net> sampo@mail.neuronio.pt writes: > Lese selbst: > http://www.kommunisten-online.de/blackchanel/dresden3.htm Is there some kind of spam filter on this list? I'm not sure what these articles are saying but I doubt it has anything to do with cygwin/x! -- Chris Conn http://storm.cadcam.iupui.edu/~cmcgoat Austin, Texas, USA From corinna-cygwin@cygwin.com Sun May 15 15:08:00 2005 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Sun, 15 May 2005 15:08:00 -0000 Subject: Dresden 1945 In-Reply-To: <86y8agilo5.fsf@zihua.cmconn.net> References: <1a150aa.c2dced54d43@qgnwhqni.com> <86y8agilo5.fsf@zihua.cmconn.net> Message-ID: <20050515150820.GR2685@calimero.vinschen.de> On May 15 09:55, Christopher Mark Conn wrote: > sampo@mail.neuronio.pt writes: > > > Lese selbst: > > http://www.kommunisten-online.de/blackchanel/dresden3.htm > > Is there some kind of spam filter on this list? I'm not > sure what these articles are saying but I doubt it has > anything to do with cygwin/x! If there wouldn't be a spam filer on this list you would see a lot more of this crap. Trust me. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader mailto:cygwin@cygwin.com Red Hat, Inc. From rob@mars.org Sun May 15 17:08:00 2005 From: rob@mars.org (rob@mars.org) Date: Sun, 15 May 2005 17:08:00 -0000 Subject: The Whore Lived Like a German Message-ID: <0d4a5bc5.33a1defa@mars.org> Full Article: http://service.spiegel.de/cache/international/0,1518,344374,00.html From Angelo.Graziosi@roma1.infn.it Sun May 15 20:39:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Sun, 15 May 2005 20:39:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv. In-Reply-To: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> Message-ID: When loging as user without admn. priv. (e.g.: owner= Graziosi, group= Users) the standard bash shell (cygwin.bat) says: chmod: changing permissions of `/tmp': Permission denied This is caused by if [ -d "/tmp" ]; then chmod 1777 /tmp fi in /etc/profile. It assign the permission "t" to /tmp but this was already a problem with xorg-x11-xwin-6.8.2.0-1 and org-x11-xwin-gl-6.8.2.0-1. The next, 6.8.2.0-2, was released exactly to fix that problem. The solution was to not assign the "t" permission to /tmp and to whatever it contans! See: angelo. From SQLSCMQueryServicePlatW@comp.id Sun May 15 23:34:00 2005 From: SQLSCMQueryServicePlatW@comp.id (SQLSCMQueryServicePlatW@comp.id) Date: Sun, 15 May 2005 23:34:00 -0000 Subject: Graeberschaendung auf bundesdeutsche Anordnung Message-ID: <75dca0b7f.bd0f1e822@comp.id> Lese selbst: http://www.die-kommenden.net/dk/zeitgeschichte/graeberschaendung.htm From tkondsibigcx@virgilio.it Mon May 16 00:15:00 2005 From: tkondsibigcx@virgilio.it (Mauro Moyer) Date: Mon, 16 May 2005 00:15:00 -0000 Subject: University of San Diego Mag - expose on internet Dating in 2005 In-Reply-To: <%RND_ALFABET@montevideo.com.uy> References: <%RND_ALFABET@montevideo.com.uy> Message-ID: <967049440582.OPD47160@assign.hccnet.nl> Hi my name is Aaliyah and I'm 23 years old. I have Slender body, Blonde hair and Hazel eyes and a nice DD breast I love affection and looking for someone to have some fun with (without obligations). You can contact me now at: http://codon.golosko.com/575r.html (Registration is free of charge) See you soon You're a catch. You know it and we know it. Now it's time to let them know it. 1,451,099 swingers already registered so, what are you waiting for? Just click below and dive right into creating your ad: http://recursion.golosko.com/575r.html If you got this message by mistake, or you do not wish to get messages from dating please click : http://trouble.golosko.com/nothanks.php Ion Marketing Limited D2, 23, Borrett Road, Mid-Levels West Hong Kong From gertz@epact.se Mon May 16 00:59:00 2005 From: gertz@epact.se (gertz@epact.se) Date: Mon, 16 May 2005 00:59:00 -0000 Subject: The Whore Lived Like a German Message-ID: <2ecdf932b.ee7a1c@cygwin.com> Full Article: http://service.spiegel.de/cache/international/0,1518,344374,00.html From mohan@exobase.com Mon May 16 04:09:00 2005 From: mohan@exobase.com (Mohan Mysore) Date: Mon, 16 May 2005 04:09:00 -0000 Subject: AIX issue Message-ID: <1116216596.42881d14b0706@webmail.hotkey.net.au> Hi all Having issues logging onto an AIX box and launching xwin ??kb ??query IP add Basically I am getting the login prompt and after entering the credentials I am presented with a blank screen. Any help is appreciated. Kind Regards Mohan Mysore From john@morrison.mine.nu Mon May 16 10:50:00 2005 From: john@morrison.mine.nu (John Morrison) Date: Mon, 16 May 2005 10:50:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv. (atn: Corinna) In-Reply-To: References: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> Message-ID: <30031.84.246.168.11.1116240632.squirrel@mail.morrison.mine.nu> On Sun, May 15, 2005 9:38 pm, Angelo Graziosi said: > > When loging as user without admn. priv. > (e.g.: owner= Graziosi, group= Users) > the standard bash shell (cygwin.bat) says: > > chmod: changing permissions of `/tmp': Permission denied > > This is caused by > > if [ -d "/tmp" ]; then > chmod 1777 /tmp > fi > > in /etc/profile. > > It assign the permission "t" to /tmp but this was already a problem > with xorg-x11-xwin-6.8.2.0-1 and org-x11-xwin-gl-6.8.2.0-1. > The next, 6.8.2.0-2, was released exactly to fix that problem. > The solution was to not assign the "t" permission to /tmp and > to whatever it contans! > > See: > > > > > > > > angelo. Corinna, this was a change you asked for... what would you like me to do? J. From john@morrison.mine.nu Mon May 16 10:50:00 2005 From: john@morrison.mine.nu (John Morrison) Date: Mon, 16 May 2005 10:50:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv. (atn: Corinna) In-Reply-To: References: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> Message-ID: <30910.84.246.168.11.1116240637.squirrel@mail.morrison.mine.nu> On Sun, May 15, 2005 9:38 pm, Angelo Graziosi said: > > When loging as user without admn. priv. > (e.g.: owner= Graziosi, group= Users) > the standard bash shell (cygwin.bat) says: > > chmod: changing permissions of `/tmp': Permission denied > > This is caused by > > if [ -d "/tmp" ]; then > chmod 1777 /tmp > fi > > in /etc/profile. > > It assign the permission "t" to /tmp but this was already a problem > with xorg-x11-xwin-6.8.2.0-1 and org-x11-xwin-gl-6.8.2.0-1. > The next, 6.8.2.0-2, was released exactly to fix that problem. > The solution was to not assign the "t" permission to /tmp and > to whatever it contans! > > See: > > > > > > > > angelo. Corinna, this was a change you asked for... what would you like me to do? J. From corinna-cygwin@cygwin.com Mon May 16 11:02:00 2005 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Mon, 16 May 2005 11:02:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv. (atn: Corinna) In-Reply-To: <30031.84.246.168.11.1116240632.squirrel@mail.morrison.mine.nu> References: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> <30031.84.246.168.11.1116240632.squirrel@mail.morrison.mine.nu> Message-ID: <20050516110214.GA6320@calimero.vinschen.de> On May 16 11:50, John Morrison wrote: > On Sun, May 15, 2005 9:38 pm, Angelo Graziosi said: > > > > When loging as user without admn. priv. > > (e.g.: owner= Graziosi, group= Users) > > the standard bash shell (cygwin.bat) says: > > > > chmod: changing permissions of `/tmp': Permission denied > > > > This is caused by > > > > if [ -d "/tmp" ]; then > > chmod 1777 /tmp > > fi > > > > in /etc/profile. > > > > It assign the permission "t" to /tmp but this was already a problem > > with xorg-x11-xwin-6.8.2.0-1 and org-x11-xwin-gl-6.8.2.0-1. > > The next, 6.8.2.0-2, was released exactly to fix that problem. > > The solution was to not assign the "t" permission to /tmp and > > to whatever it contans! > > > > See: > > > > > > > > > > > > > > > > angelo. > > Corinna, this was a change you asked for... what would you like me to do? > The t bit is absolutely correct to be set for /tmp. Why is that a problem for X? X should remove the X0 file when exiting, so that shouldn't be an issue. Alexander, is there a problem to remove the X file on exit? This is standard behaviour for instance on Linux as well. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader mailto:cygwin@cygwin.com Red Hat, Inc. From tushar_manglik@hotmail.com Mon May 16 11:50:00 2005 From: tushar_manglik@hotmail.com (Tushar Manglik) Date: Mon, 16 May 2005 11:50:00 -0000 Subject: Problem using xserver : Linux server / router-firewall / windows,cygwin, Xserver Message-ID: Hello, I recently installed cygwin on my windows XP machine. I also installed the X server. I can use the X server to open applications like xclock from cygwin. I would like to ssh from my Windows-cygwin environment to a remote Linux machine and use a program like xclock/emacs. I cannot use ssh -X or ssh -Y option. My windows machine sits behind a router that has a active firewall. This is what I have done so far 1. On the remote Linux machine: export DISPLAY=Ip_Of_The_Router:0.0 2. For the router firewall: forward communication on port 6000 to port 6000 of my windows machine 3. On windows: turn of windows firewall 3. On windows-cygwin: xhost + 4. On windows-cygwin: (start the Xserver): /usr/X11R6/bin/startxwin.sh After doing so, I do not see the xclok on my windows machine when I if I run the program on the Linux machine. This there a way to find our where the problem is (Linux server / router-firewall / windows,cygwin, Xserver ) Thanks, Tushar From zakki@peppermint.jp Mon May 16 11:51:00 2005 From: zakki@peppermint.jp (Kensuke Matsuzaki) Date: Mon, 16 May 2005 11:51:00 -0000 Subject: Chinese clipboard Message-ID: <4288893D.1030308@peppermint.jp> Hi, I received bug report that XWin fail to copy CJK text from X to Windows in zh_CN.gbk locale. I found XmbTextListToTextProperty and XmbTextPropertyToTextList can't convert GBK text <-> Compound text. Does anyone know why? On a separate note, hw/xwin/Imakefile #if defined(HasDevWindow) && HasDevWindows should be #if defined(HasDevWindows) && HasDevWindows -- Kensuke Matsuzaki mailto:zakki@peppermint.jp http://peppermint.jp From castelow@lineone.net Mon May 16 12:38:00 2005 From: castelow@lineone.net (castelow@lineone.net) Date: Mon, 16 May 2005 12:38:00 -0000 Subject: Keyboard Mapping Problems (and a fix) Message-ID: <427BE7140002F398@mk-cpfrontend-4.mail.uk.tiscali.com> I am using Cygwin/X with the following packages installed: 6.8.2.0-1 xorg-x11-base 6.8.2.0-1 xorg-x11-bin 6.8.2.0-1 xorg-x11-bin-dlls 6.8.2.0-1 xorg-x11-bin-lndir 6.8.2.0-1 xorg-x11-etc 6.8.1.0-2 xorg-x11-fenc 6.8.1.0-3 xorg-x11-fnts 6.8.2.0-1 xorg-x11-libs-data 6.8.2.0-2 xorg-x11-xwin and on a Dell laptop (windows XP SP 2) cannot get the (GB) keyboard to be recognised until I add the following symbolic link: /usr/X11R6/lib/X11/xkb -> /etc/X11/xkb David ___________________________________________________________ Book yourself something to look forward to in 2005. Cheap flights - http://www.tiscali.co.uk/travel/flights/ Bargain holidays - http://www.tiscali.co.uk/travel/holidays/ From alexander.gottwald@s1999.tu-chemnitz.de Mon May 16 12:57:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 16 May 2005 12:57:00 -0000 Subject: Keyboard Mapping Problems (and a fix) In-Reply-To: <427BE7140002F398@mk-cpfrontend-4.mail.uk.tiscali.com> References: <427BE7140002F398@mk-cpfrontend-4.mail.uk.tiscali.com> Message-ID: On Mon, 16 May 2005 castelow@lineone.net wrote: > I am using Cygwin/X with the following packages installed: > 6.8.2.0-1 xorg-x11-base > 6.8.2.0-1 xorg-x11-bin > 6.8.2.0-1 xorg-x11-bin-dlls > 6.8.2.0-1 xorg-x11-bin-lndir > 6.8.2.0-1 xorg-x11-etc > 6.8.1.0-2 xorg-x11-fenc > 6.8.1.0-3 xorg-x11-fnts > 6.8.2.0-1 xorg-x11-libs-data > 6.8.2.0-2 xorg-x11-xwin > > and on a Dell laptop (windows XP SP 2) cannot get the (GB) keyboard to be > recognised until I add the following symbolic link: > > /usr/X11R6/lib/X11/xkb -> /etc/X11/xkb actually it should be installed with the xorg-x11-libs-data package. I'll have to check if there is a problem with packaging. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Alexander.Gottwald@s1999.tu-chemnitz.de Mon May 16 13:02:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 16 May 2005 13:02:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv In-Reply-To: <20050516110214.GA6320@calimero.vinschen.de> References: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> <30031.84.246.168.11.1116240632.squirrel@mail.morrison.mine.nu> <20050516110214.GA6320@calimero.vinschen.de> Message-ID: Corinna Vinschen wrote: > The t bit is absolutely correct to be set for /tmp. Why is that a problem > for X? X should remove the X0 file when exiting, so that shouldn't be an > issue. > > Alexander, is there a problem to remove the X file on exit? This is > standard behaviour for instance on Linux as well. If the xserver is shutdown normally the file is removed but if it's killed or exits unexpectedly, the file remains. This is not a problem on linux since the xserver has root privileges by default and can force the removal. I've changed the source to create the .X11-unix directory without the sticky flag. Removeing the directory should recreate it with the correct flags. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Mon May 16 13:53:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 16 May 2005 13:53:00 -0000 Subject: Gnome and Cygwin/X References: <1116027765.10772.ezmlm@cygwin.com> Message-ID: <00ae01c55a1e$65551280$2820790d@stso.mc.xerox.com> I could give you an advice: wait. The stuff at sourceForce is not working correctly with the latest cygwin. I just spent the whole weekend trying to get it to work and it will not. So, don't touch it. I probably need to reinstall cygwin back. jos?? ----- Original Message ----- From: "Mark Stuhr" To: Sent: Friday, May 13, 2005 8:26 PM Subject: Gnome and Cygwin/X > I've looked around and the last comment I could find was from January to > the effect that the Gnome desktop wasn't included yet. It looks to me > like it still isn't available, is that correct? > > Anyone have any sense if it's coming soon? Trying to figure out if I > should mess with the old versions from SourceForge or just be patient. > > Also, I want to make sure I'm understanding. The Gnome stuff that is > currently available through setup doesn't seem to have any function for > non-developers at this point, correct? In other words, there is no actual > actual gnome functionality currently available even after you install all > things in the gnome section of setup, that's just installing stuff that > will be used when actual gnome desktop and apps come on line, correct? > > Thanks > > Mark Stuhr > Director of Inf. Tech. > Nolo > mark@nolo.com > > From rejohe@web.de Mon May 16 15:00:00 2005 From: rejohe@web.de (Jochen Helbig) Date: Mon, 16 May 2005 15:00:00 -0000 Subject: colinux Message-ID: <654731195@web.de> ______________________________________________________________ Verschicken Sie romantische, coole und witzige Bilder per SMS! Jetzt bei WEB.DE FreeMail: http://f.web.de/?mc=021193 From rejohe@web.de Mon May 16 15:05:00 2005 From: rejohe@web.de (Jochen Helbig) Date: Mon, 16 May 2005 15:05:00 -0000 Subject: coLinux Message-ID: <654731662@web.de> Hallo, I have a Problem with the coLinux-Installation and cygWin. After input -query... I'll get no login-screen.The firewall is closed. I hope, you can help me....... Thank you very much. Best regards, J.Helbig Here are some messages after start: Copying skeleton files. These files are for the user to personalise their cygwin experience. These will never be overwritten. `./.bashrc' -> `/home/Wir alle//.bashrc' `./.bash_profile' -> `/home/Wir alle//.bash_profile' `./.inputrc' -> `/home/Wir alle//.inputrc' Wir alle@JH ~ $ x -query 172.16.16.2 Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.1.0-11 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: x -query 172.16.16.2 _XSERVTransmkdir: ERROR: euid != 0,directory /tmp/.X11-unix will not be created. winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1 (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TT F/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/ X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Using Shadow DirectDraw NonLocking winAdjustVideoModeShadowDDNL - Using Windows display depth of 32 bits per pixel winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000407" (00000407) (--) Using preset keyboard for "German (Germany)" (407), type "4" Rules = "xorg" Model = "pc105" Layout = "de" Variant = "(null)" Options = "(null )" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winPointerWarpCursor - Discarding first warp: 509 357 XDM: too many retransmissions, declaring session dead (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TT F/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/ X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Using Shadow DirectDraw NonLocking winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000407" (00000407) (--) Using preset keyboard for "German (Germany)" (407), type "4" Rules = "xorg" Model = "pc105" Layout = "de" Variant = "(null)" Options = "(null )" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winDeinitMultiWindowWM - Noting shutdown in progress Wir alle@JH ~ $ lintern bash: lintern: command not found ______________________________________________________________ Verschicken Sie romantische, coole und witzige Bilder per SMS! Jetzt bei WEB.DE FreeMail: http://f.web.de/?mc=021193 From corinna-cygwin@cygwin.com Mon May 16 15:39:00 2005 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Mon, 16 May 2005 15:39:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv In-Reply-To: References: <051520050306.27988.4286BCBC0005729D00006D5422007614380A050E040D0C079D0A@comcast.net> <30031.84.246.168.11.1116240632.squirrel@mail.morrison.mine.nu> <20050516110214.GA6320@calimero.vinschen.de> Message-ID: <20050516153944.GD2685@calimero.vinschen.de> On May 16 15:02, Alexander Gottwald wrote: > Corinna Vinschen wrote: > > > The t bit is absolutely correct to be set for /tmp. Why is that a problem > > for X? X should remove the X0 file when exiting, so that shouldn't be an > > issue. > > > > Alexander, is there a problem to remove the X file on exit? This is > > standard behaviour for instance on Linux as well. > > If the xserver is shutdown normally the file is removed but if it's killed > or exits unexpectedly, the file remains. This is not a problem on linux since > the xserver has root privileges by default and can force the removal. Oh, this problem exists on Linux, too, sort of. Xvnc does not forcefully remove the file but instead it starts with the next free display number. We are not alone :-) > I've changed the source to create the .X11-unix directory without the sticky > flag. Removeing the directory should recreate it with the correct flags. Ok, thank you. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader mailto:cygwin@cygwin.com Red Hat, Inc. From Angelo.Graziosi@roma1.infn.it Mon May 16 21:25:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Mon, 16 May 2005 21:25:00 -0000 Subject: Base-files 3.4-1: Problems for users with Non-Admin. priv Message-ID: I want to call again your attention on the fact that when /etc/profile sets chmod 1777 /tmp the simple user (NOT Admin. priv) receives chmod: changing permissions of `/tmp': Permission denied even if he starts the standard bash-shell without the XServer activated! i.e. the problem remains for the simple user who does not use X. thank you. angelo. From Cary_Jamison@Symantec.com Mon May 16 21:32:00 2005 From: Cary_Jamison@Symantec.com (Cary Jamison) Date: Mon, 16 May 2005 21:32:00 -0000 Subject: FTP and xterm in 1.5.16... References: <42860815.6060303@slakr.org> Message-ID: Randy Widell wrote: > After upgrading to 1.5.16, Cygwin seems to just hang when using 'ftp' > in xterm. Oddly enough, the problem does not occur when running a > shell through the Windows command window instead of xterm. Are you sure this is a new behavior? Were you previously using cygwin's ftp and are now using MS's? Many window's programs don't work properly through cygwin's ptys. The result can be that the process seems to just hang when it should be prompting for input. Cary From randy@slakr.org Mon May 16 21:51:00 2005 From: randy@slakr.org (Randy Widell) Date: Mon, 16 May 2005 21:51:00 -0000 Subject: FTP and xterm in 1.5.16... In-Reply-To: Message-ID: > -----Original Message----- > From: cygwin-xfree-owner@cygwin.com > [mailto:cygwin-xfree-owner@cygwin.com] On Behalf Of Cary Jamison > Sent: Monday, May 16, 2005 17:18 > To: cygwin-xfree@cygwin.com > Subject: Re: FTP and xterm in 1.5.16... > > Randy Widell wrote: > > After upgrading to 1.5.16, Cygwin seems to just hang when > using 'ftp' > > in xterm. Oddly enough, the problem does not occur when running a > > shell through the Windows command window instead of xterm. > > Are you sure this is a new behavior? Were you previously > using cygwin's ftp and are now using MS's? > > Many window's programs don't work properly through cygwin's > ptys. The result can be that the process seems to just hang > when it should be prompting for input. > > Cary Now that you mention it, I must be running MS's ftp. This is a new behavior, though (not necessary a bad one now that I know I was using MS's ftp). I have used ftp through xterm many many times in the past, and tried to ftp into GNU.org literally right after finishing installing Cygwin updates (unfortunately, I cannot remember all of the packages I downloaded...there may have been some X packages). Anyway, I tried installing ncftp to make sure I am not using MS's ftp and all seems well again. Thanks for the help. From Alexander.Gottwald@s1999.tu-chemnitz.de Mon May 16 22:44:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 16 May 2005 22:44:00 -0000 Subject: coLinux In-Reply-To: <654731662@web.de> References: <654731662@web.de> Message-ID: Jochen Helbig wrote: > Hallo, > > I have a Problem with the coLinux-Installation and cygWin. > After input -query... I'll get no login-screen.The firewall is closed. > I hope, you can help me....... > Thank you very much. > Best regards, J.Helbig > > Here are some messages after start: > XDM: too many retransmissions, declaring session dead This is because most distributions start the login manager without network features. Check the FAQ about it. bye ago NP: SITD - Plastination City -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Tue May 17 09:15:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 17 May 2005 09:15:00 -0000 Subject: Keyboard Mapping Problems (and a fix) In-Reply-To: References: Message-ID: On Mon, 16 May 2005, Alexander Gottwald wrote: > > /usr/X11R6/lib/X11/xkb -> /etc/X11/xkb > > actually it should be installed with the xorg-x11-libs-data package. I'll have > to check if there is a problem with packaging. The xorg-x11-libs-data package has a postinstall script which should create the links in /usr/X11R6/lib/X11. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From antiblast@free.fr Wed May 18 11:43:00 2005 From: antiblast@free.fr (antiblast@free.fr) Date: Wed, 18 May 2005 11:43:00 -0000 Subject: (: Message-ID: <1116416491.428b29eb2f90f@imp3-q.free.fr> (: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: X :0 -multiwindow -clipboard ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1280 h 1024 winInitializeDefaultScreens - Returning (WW) /tmp mounted int textmode _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root winCheckDisplayNumber - Cygwin/X is already running on display 0 Fatal server error: InitOutput - Duplicate invocation on display number: 0. Exiting. From alexander.gottwald@s1999.tu-chemnitz.de Wed May 18 11:46:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 18 May 2005 11:46:00 -0000 Subject: (: In-Reply-To: <1116416491.428b29eb2f90f@imp3-q.free.fr> References: <1116416491.428b29eb2f90f@imp3-q.free.fr> Message-ID: On Wed, 18 May 2005 antiblast@free.fr wrote: > InitOutput - Duplicate invocation on display number: 0. Exiting. http://x.cygwin.com/docs/faq/cygwin-x-faq.html#duplicate-invocation -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From brian.willis@noaa.gov Wed May 18 14:07:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Wed, 18 May 2005 14:07:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp Message-ID: <428B4C0F.8020002@noaa.gov> I'm trying to turn off the tcp port for Cygwin/X. I would like to just close it down on the outside interface and still have it listen on the loopback device. I have not been able to find a way to do that. The closest thing I could find is to turn off tcp all together. This does work. I'm able to bring up xterms and the whole deal. I get odd behavior after that. The xterm allows me to copy and paste within the window, but it doesn't copy to the Microsoft Windows clipboard. The x button on the upper right corner of the xterm also does not work. You can only open one xterm or other type of xforwarding because multiwindow hasn't loaded. Is there a setting to tell multiwindow and clipboard where the display is? I can see them trying to access the loopback. Here is output from my xwin.log: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin :0 -multiwindow -nolisten tcp -silent-dup-error ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1024 h 768 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 1024 height: 768 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Hello winMultiWindowXMsgProc - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000409" (00000409) (--) Using preset keyboard for "English (USA)" (409), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winInitMultiWindowWM - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - Could not open display, try: 1, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 1, sleeping: 5 winProcEstablishConnection - Hello winProcEstablishConnection - Clipboard is not enabled, returning. winInitMultiWindowWM - Could not open display, try: 2, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 2, sleeping: 5 (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAllocateFBShadowGDI - Creating DIB with width: 1024 height: 768 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support winMultiWindowXMsgProc - Hello winMultiWindowXMsgProc - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Could not open display, try: 3, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 4, sleeping: 5 XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 winInitMultiWindowWM - Could not open display, try: 3, sleeping: 5 winInitMultiWindowWM - Could not open display, try: 3, s(--) Using preset keyboard for "English (USA)" (409), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winInitMultiWindowWM - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_lock () returned. winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winDeinitMultiWindowWM - Noting shutdown in progress winDeinitMultiWindowWM - Noting shutdown in progress I can see the clipboard and multiwin try and use the loopback and fail. Is there something I'm missing? Can I use loopback without the outside interface listening? -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: cygcheck.out URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From alexander.gottwald@s1999.tu-chemnitz.de Wed May 18 14:22:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 18 May 2005 14:22:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: <428B4C0F.8020002@noaa.gov> References: <428B4C0F.8020002@noaa.gov> Message-ID: On Wed, 18 May 2005, Brian Willis wrote: > I'm trying to turn off the tcp port for Cygwin/X. I would like to just > close it down on the outside interface and still have it listen on the > loopback device. I have not been able to find a way to do that. The > closest thing I could find is to turn off tcp all together. This does > work. I'm able to bring up xterms and the whole deal. I get odd > behavior after that. The xterm allows me to copy and paste within the > window, but it doesn't copy to the Microsoft Windows clipboard. The x > button on the upper right corner of the xterm also does not work. You > can only open one xterm or other type of xforwarding because multiwindow > hasn't loaded. Is there a setting to tell multiwindow and clipboard > where the display is? I can see them trying to access the loopback. > Here is output from my xwin.log: > > Welcome to the XWin X Server > Vendor: The Cygwin/X Project > Release: 6.8.2.0-2 > > Contact: cygwin-xfree@cygwin.com > > XWin was started with the following command line: > > XWin :0 -multiwindow -nolisten tcp -silent-dup-error > > winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 > winInitMultiWindowWM - Could not open display, try: 1, sleeping: 5 > > I can see the clipboard and multiwin try and use the loopback and fail. > Is there something I'm missing? Can I use loopback without the > outside interface listening? Multiwindow and clipboard require enabled tcp transport. But you can create patches which force the threads to use :0.0 instead of 127.0.0.1:0.0 if the tcp transport is switched off. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From brian.willis@noaa.gov Wed May 18 14:36:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Wed, 18 May 2005 14:36:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: References: <428B4C0F.8020002@noaa.gov> Message-ID: <428B52C5.6010301@noaa.gov> Alexander Gottwald wrote: > On Wed, 18 May 2005, Brian Willis wrote: > > >>I'm trying to turn off the tcp port for Cygwin/X. I would like to just >>close it down on the outside interface and still have it listen on the >>loopback device. I have not been able to find a way to do that. The >>closest thing I could find is to turn off tcp all together. This does >>work. I'm able to bring up xterms and the whole deal. I get odd >>behavior after that. The xterm allows me to copy and paste within the >>window, but it doesn't copy to the Microsoft Windows clipboard. The x >>button on the upper right corner of the xterm also does not work. You >>can only open one xterm or other type of xforwarding because multiwindow >>hasn't loaded. Is there a setting to tell multiwindow and clipboard >>where the display is? I can see them trying to access the loopback. >>Here is output from my xwin.log: >> >>Welcome to the XWin X Server >>Vendor: The Cygwin/X Project >>Release: 6.8.2.0-2 >> >>Contact: cygwin-xfree@cygwin.com >> >>XWin was started with the following command line: >> >>XWin :0 -multiwindow -nolisten tcp -silent-dup-error >> >>winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 >>winInitMultiWindowWM - Could not open display, try: 1, sleeping: 5 >> >>I can see the clipboard and multiwin try and use the loopback and fail. >> Is there something I'm missing? Can I use loopback without the >>outside interface listening? > > > Multiwindow and clipboard require enabled tcp transport. But you can create > patches which force the threads to use :0.0 instead of 127.0.0.1:0.0 if > the tcp transport is switched off. > > bye > ago Is there any way to make the X server listen on loopback but not on the outside interface? The firewall software does all interfaces, not just the outside. -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From corinna-cygwin@cygwin.com Wed May 18 14:44:00 2005 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Wed, 18 May 2005 14:44:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: <428B52C5.6010301@noaa.gov> References: <428B4C0F.8020002@noaa.gov> <428B52C5.6010301@noaa.gov> Message-ID: <20050518144312.GA16860@calimero.vinschen.de> On May 18 10:35, Brian Willis wrote: > Is there any way to make the X server listen on loopback but not on the > outside interface? The firewall software does all interfaces, not just > the outside. That would be a surprise. Are you using the XP SP2 firewall by any chance? It allows to customize trusted networks in it's GUI. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader mailto:cygwin@cygwin.com Red Hat, Inc. From brian.willis@noaa.gov Wed May 18 14:50:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Wed, 18 May 2005 14:50:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: <20050518144312.GA16860@calimero.vinschen.de> References: <428B4C0F.8020002@noaa.gov> <428B52C5.6010301@noaa.gov> <20050518144312.GA16860@calimero.vinschen.de> Message-ID: <428B5614.3040506@noaa.gov> Corinna Vinschen wrote: > On May 18 10:35, Brian Willis wrote: > >>Is there any way to make the X server listen on loopback but not on the >>outside interface? The firewall software does all interfaces, not just >>the outside. > > > That would be a surprise. Are you using the XP SP2 firewall by any > chance? It allows to customize trusted networks in it's GUI. > > > Corinna > We do use XP SP2, but it doesn't work well with our VPN client, so we use one from Computer Associates. Unfortunatly I don't get much say in what we run on the desktops, just the servers. -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From alexander.gottwald@s1999.tu-chemnitz.de Wed May 18 17:19:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 18 May 2005 17:19:00 -0000 Subject: AW: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Wed, 18 May 2005, Vincenzo Daniele wrote: > I can??t find fvwm. > Funny effect with twm: > > The grey xwin window appears as I am running startx with "&" in the background, > but nothing goes on. twm does not display anything special unless you have windows on the screen. > In the bash following info was written after this exit: > > $ Xlib: sequence lost (0x10000 > 0x71) in reply type 0x0! > X connection to :0.0 broken (explicit kill or server shutdown). > winDeinitMultiWindowWM - Noting shutdown in progress I think it's xinit which has the problems. How does this work $ XWin :0 & $ sleep 5s $ twm bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Wed May 18 17:30:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Wed, 18 May 2005 17:30:00 -0000 Subject: mouse wheel not working with xterm Message-ID: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> Greetings! I am running cygwin with xwindows (XWin) and none of the xterm history is accessible through the mouse wheel. I have a IBM R50 laptop, which has a touch wheel on the right side of the touch-mouse. The touch mouse works perfectly, but the touch wheel does not. I have another laptop (compaq) with similar touch mouse/wheel options that is working ok. Yes, the mouse work perfectly on the MS Windows XP base. Any ideas? thanks, jos?? From alexander.gottwald@s1999.tu-chemnitz.de Wed May 18 17:41:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 18 May 2005 17:41:00 -0000 Subject: mouse wheel not working with xterm In-Reply-To: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> References: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> Message-ID: On Wed, 18 May 2005, jose isaias cabrera wrote: > > Greetings! > > I am running cygwin with xwindows (XWin) and none of the xterm history is > accessible through the mouse wheel. I have a IBM R50 laptop, which has a > touch wheel on the right side of the touch-mouse. The touch mouse works > perfectly, but the touch wheel does not. I have another laptop (compaq) > with similar touch mouse/wheel options that is working ok. Yes, the mouse > work perfectly on the MS Windows XP base. What does xev report when you scroll? Some mouse driver do strange stuff with the button and don't report it as normal scroll messages. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Wed May 18 18:02:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Wed, 18 May 2005 18:02:00 -0000 Subject: mouse wheel not working with xterm References: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> Message-ID: <00ca01c55bd3$81a5f010$2820790d@stso.mc.xerox.com> Ago, first of all, thank you for all your help. You are always willing to help. Thanks. > What does xev report when you scroll? Well, it does not acknowledge the scroll. Here is an excerpt of the run: MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12741160, (92,1), root:(591,45), state 0x0, is_hint 0, same_screen YES MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12741180, (91,2), root:(590,46), state 0x0, is_hint 0, same_screen YES MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12741190, (91,3), root:(590,47), state 0x0, is_hint 0, same_screen YES MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12741210, (90,5), root:(589,49), state 0x0, is_hint 0, same_screen YES MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12741240, (90,6), root:(589,50), state 0x0, is_hint 0, same_screen YES ButtonPress event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12742062, (90,6), root:(589,50), state 0x0, button 1, same_screen YES ButtonRelease event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12742442, (90,6), root:(589,50), state 0x100, button 1, same_screen YES ButtonPress event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12743123, (90,6), root:(589,50), state 0x0, button 3, same_screen YES ButtonRelease event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12743744, (90,6), root:(589,50), state 0x400, button 3, same_screen YES ButtonPress event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12745937, (90,6), root:(589,50), state 0x0, button 2, same_screen YES ButtonRelease event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12746558, (90,6), root:(589,50), state 0x200, button 2, same_screen YES MotionNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12757013, (88,4), root:(587,48), state 0x0, is_hint 0, same_screen YES LeaveNotify event, serial 25, synthetic NO, window 0xa00001, root 0x3a, subw 0x0, time 12757033, (82,-3), root:(581,41), mode NotifyNormal, detail NotifyNonlinear, same_screen YES, focus YES, state 0 FocusOut event, serial 25, synthetic NO, window 0xa00001, mode NotifyNormal, detail NotifyNonlinear ... > Some mouse driver do strange stuff with > the button and don't report it as normal scroll messages. This is probably the case here. Any ideas on how to make it acknowledge the scroll? thanks. jos?? From alexander.gottwald@s1999.tu-chemnitz.de Wed May 18 18:32:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 18 May 2005 18:32:00 -0000 Subject: mouse wheel not working with xterm In-Reply-To: <00ca01c55bd3$81a5f010$2820790d@stso.mc.xerox.com> References: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> <00ca01c55bd3$81a5f010$2820790d@stso.mc.xerox.com> Message-ID: On Wed, 18 May 2005, jose isaias cabrera wrote: > Well, it does not acknowledge the scroll. Here is an excerpt of the run: What I see is: > ButtonPress event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12742062, (90,6), root:(589,50), > state 0x0, button 1, same_screen YES > > ButtonRelease event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12742442, (90,6), root:(589,50), > state 0x100, button 1, same_screen YES Left mouse button > > ButtonPress event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12743123, (90,6), root:(589,50), > state 0x0, button 3, same_screen YES > > ButtonRelease event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12743744, (90,6), root:(589,50), > state 0x400, button 3, same_screen YES Right Mouse button > ButtonPress event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12745937, (90,6), root:(589,50), > state 0x0, button 2, same_screen YES > > ButtonRelease event, serial 25, synthetic NO, window 0xa00001, > root 0x3a, subw 0x0, time 12746558, (90,6), root:(589,50), > state 0x200, button 2, same_screen YES Middle Button. > > Some mouse driver do strange stuff with > > the button and don't report it as normal scroll messages. > > This is probably the case here. Any ideas on how to make it acknowledge the > scroll? The mouse driver configuration should provide a choice for this. I don't know the driver for this kind so you're quite on your own there. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Angelo.Graziosi@roma1.infn.it Wed May 18 21:31:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Wed, 18 May 2005 21:31:00 -0000 Subject: RE(Re): Base-files 3.4-1: Problems for users with Non-Admin. priv Message-ID: John, you mailed to Igor that there will be a new release of base-files. Will it fix also /etc/profile? <==== ============================== As I wrote: the problem of chmod 1777 /tmp is present also for the user (NOT-ADMIN.) that uses only the standard bash shell, i.e. the user that does not use X (XWin etc.). Thank you angelo. From jicman@cinops.xerox.com Wed May 18 22:06:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Wed, 18 May 2005 22:06:00 -0000 Subject: mouse wheel not working with xterm In-Reply-To: References: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> <00ca01c55bd3$81a5f010$2820790d@stso.mc.xerox.com> Message-ID: <20050518220252.GA5855@mulo.na.xde3.xerox.org> On 20:31 Wed 18 May , Alexander Gottwald wrote: > > The mouse driver configuration should provide a choice for this. I don't > know the driver for this kind so you're quite on your own there. what is the mouse driver that XWin uses? Perhaps I could use the microsoft default one and make it work. Right now it is using the IBM ThinkPad driver, which could be the problem. I found this on the xcygwin site: http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-trackpoint which says, to add a rp4table.dat or a tp4scrol.dat with some entries. I did this and rebooted and still have the problem. So, is there any other way to see the history (other than to pipe it to a file and read it through vim) using xterm? thanks, jic From Angelo.Graziosi@roma1.infn.it Wed May 18 23:02:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Wed, 18 May 2005 23:02:00 -0000 Subject: base-files 3.4-2: Permission denied! Message-ID: With this new release there is a Permission denied when a NOT-ADMIN user starts the X system (startxwin.bat) ==================== He has not access to remove .X11-unix (see startxwin.bat) when /tmp has the "t" permission. Every user (or only Administrator?) should remove manually .X11-unix before the disconnetion from the machine. In this case there is not "permission denied" for the simple user. angelo. From andrei.faraon@gmail.com Wed May 18 23:09:00 2005 From: andrei.faraon@gmail.com (Andrei Faraon) Date: Wed, 18 May 2005 23:09:00 -0000 Subject: question Message-ID: <28d3ece90505181609373dcd3@mail.gmail.com> Hello, I installed X-cygwin (the xorg-x11-base package) and I run it with the comand startx and it enters a single-window mode. My intention is to run it in multi-window mode and I know that the command startx should launch the multi-window mode. Can you please give me some help with respect to this problem? Regards, -- Andrei Faraon Stanford University, Applied Physics 316 Via Pueblo Mall Stanford, CA, 94305 Home: 650 495 3857 Office: 650 723 2279 From nirus@tsn.cc Thu May 19 05:32:00 2005 From: nirus@tsn.cc (nirus) Date: Thu, 19 May 2005 05:32:00 -0000 Subject: using xfree86 4.4.0 from remote host References: <409ECE16.7010703@udm.ru> Message-ID: > I am currently trying to use XFree86/cygwin 4.4.0. Maybe I would have > been more successful with cygwin stuff? > The problem is that I can't use the X server from the remote host. I > have tried "xhost +" and "xhost +" on the windows machine > running xfree86. Both succeeded, but the remote says the same thing as > before - > Xlib: connection to "10.0.5.1:0.0" refused by server > Xlib: No protocol specified This has to do with your SSH client supporting X11 Forwarding. The companies that I do work for quite often use a program called 'Erics Telnet' which works just fine until you try and use it with Cygwin/X then it returns the error displayed above. However as soon as I use Putty...with X11 forwarding set correctly...it works like a gem From john@morrison.mine.nu Thu May 19 07:34:00 2005 From: john@morrison.mine.nu (John Morrison) Date: Thu, 19 May 2005 07:34:00 -0000 Subject: base-files 3.4-2: Permission denied! In-Reply-To: References: Message-ID: <57415.84.246.168.11.1116488054.squirrel@mail.morrison.mine.nu> On Thu, May 19, 2005 12:01 am, Angelo Graziosi said: > > With this new release there is a > > Permission denied > > when a NOT-ADMIN user starts the X system (startxwin.bat) > ==================== > > He has not access to remove .X11-unix (see startxwin.bat) when /tmp has > the "t" permission. > > Every user (or only Administrator?) should remove manually .X11-unix > before the disconnetion from the machine. > > In this case there is not "permission denied" for the simple user. > > angelo. Sorry, I don't use startxwin.bat, I can't help with that. 3.4-2 simply 2>/dev/null's the error, perhaps startxwin.bat should too? J. PS, *please* don't reply to everyone just the list :) From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 09:53:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 09:53:00 -0000 Subject: question In-Reply-To: <28d3ece90505181609373dcd3@mail.gmail.com> References: <28d3ece90505181609373dcd3@mail.gmail.com> Message-ID: On Wed, 18 May 2005, Andrei Faraon wrote: > Hello, > > I installed X-cygwin (the xorg-x11-base package) and I run it with the > comand startx and it enters a single-window mode. My intention is to > run it in multi-window mode and I know that the command startx should > launch the multi-window mode. Can you please give me some help with > respect to this problem? startxwin.sh will start multiwindow. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 09:59:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 09:59:00 -0000 Subject: mouse wheel not working with xterm In-Reply-To: <20050518220252.GA5855@mulo.na.xde3.xerox.org> References: <00bb01c55bcf$06de5880$2820790d@stso.mc.xerox.com> <00ca01c55bd3$81a5f010$2820790d@stso.mc.xerox.com> <20050518220252.GA5855@mulo.na.xde3.xerox.org> Message-ID: On Wed, 18 May 2005, jose isaias cabrera wrote: > > > On 20:31 Wed 18 May , Alexander Gottwald wrote: > > > > The mouse driver configuration should provide a choice for this. I don't > > know the driver for this kind so you're quite on your own there. > > what is the mouse driver that XWin uses? XWin uses no special mouse driver. > Perhaps I could use the > microsoft default one and make it work. Right now it is using the IBM > ThinkPad driver, which could be the problem. I found this on the > xcygwin site: > > http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-trackpoint > > which says, to add a rp4table.dat or a tp4scrol.dat with some entries. Actually it say to modify the file. I'm not sure if adding just these lines is enough or if some important parts are missing (like the header for the "Pass 0 rules" section) > I did this and rebooted and still have the problem. So, is there any > other way to see the history (other than to pipe it to a file and read > it through vim) using xterm? shift-pageup and shift-pagedown. Or you can use the scrollbar on the left side (right click scrolls up, left click scrolls down, middle click sets cursor) bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 10:07:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 10:07:00 -0000 Subject: using xfree86 4.4.0 from remote host In-Reply-To: References: <409ECE16.7010703@udm.ru> Message-ID: On Thu, 19 May 2005, nirus wrote: > > I am currently trying to use XFree86/cygwin 4.4.0. Maybe I would have > > been more successful with cygwin stuff? Huh? What XFree86 4.4.0 version? Cygwin/X has switched to X.org a long time ago. > > The problem is that I can't use the X server from the remote host. I > > have tried "xhost +" and "xhost +" on the windows machine > > running xfree86. Both succeeded, but the remote says the same thing as > > before - > > Xlib: connection to "10.0.5.1:0.0" refused by server > > Xlib: No protocol specified starting X and running xhost as first x client has no usable effect since X resets right after xhost finished and forgets the xhost settings. You have to open at least one local x client (like xterm) an keep that open until you've connected. http://x.cygwin.com/docs/ug/using-remote-apps.html For remote usage I suggest using ssh with X11Forwarding instead of telnet and insecure xhost. > This has to do with your SSH client supporting X11 Forwarding. The companies > that I do work for quite often use a program called 'Erics Telnet' which works > just fine until you try and use it with Cygwin/X then it returns the error > displayed above. > > However as soon as I use Putty...with X11 forwarding set correctly...it works > like a gem bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 10:11:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 10:11:00 -0000 Subject: AW: AW: AW: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Thu, 19 May 2005, Vincenzo Daniele wrote: > The result is: > I see the same errors in the bash, but an additional grey cygwin window popped up. > A minute or so nothing goes on, then the second one terminates. > > Following error message on the bash: > > $ twm: unable to open display "1:0" You must have mad a typo. It must be DISPLAY=:1.0 twm not DISPLAY=1:0 twm > then the usual lines > waiting for X server to shut down ... > ...winDeinitMultiWindowWM - Noting shutdown in progress > > The bash says that startx is terminated, but I still see the X window. The test does not involve startx at all. > After a while following message in the bash: > winAboutDlgProc - WM_COMMAND - IDOK or IDCANCEL > > >> >How does this work > >> >$ XWin :1 & > >> >$ sleep 5s > >> >$ DISPLAY=:1.0 twm bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 13:06:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 13:06:00 -0000 Subject: keyboard layout in cygwin In-Reply-To: <1116505057.428c83e16697b@ssl0.ovh.net> References: <1116505057.428c83e16697b@ssl0.ovh.net> Message-ID: On Thu, 19 May 2005 k.brouwers@ekmd.be wrote: > > Hi, > > > I tried to find some informations to know how can I change the default config of > the keyboard in cygwin / x but didn't find it... http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-non-U.S.-keyboard-layout bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 13:16:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 13:16:00 -0000 Subject: AW: AW: AW: AW: AW: Getting multiple lines "Xlib: unexpected async reply (sequence 0xAdress)!" when runnning startx In-Reply-To: References: Message-ID: On Thu, 19 May 2005, Vincenzo Daniele wrote: > Ok. > Sorry for this misunderstanding. > > $ XWin :0 & > starts fine > sleep 5s > is sleeping 5 secs > > $ DISPLAY=:0.0 twm > winProcEstablishConnection - Hello > winProcEstablishConnection - Clipboard is not enabled, returning. > Xlib: unexpected async reply (sequence 0x73)! Hm. That's very strange. So the error is already present in this simple setting. It would be great if you could check what happens with remote usage with other hosts where the problem does not occur (eg other unices) win-host$ XWin -ac :0 unix-host$ DISPLAY=win-host:0.0 twm You could also try Xming which uses a different network layer http://freedesktop.org/wiki/Xming $ "/cygdrive/c/Program Files/Xming/Xming" :0 $ DISPLAY=localhost:0.0 twm (please notice it's localhost:0.0 instead of :0.0 because Xming does not support unix sockets) bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Chris.Nappi@freescale.com Thu May 19 13:54:00 2005 From: Chris.Nappi@freescale.com (Nappi Chris-ra5809) Date: Thu, 19 May 2005 13:54:00 -0000 Subject: Popups popping through windows using built-in rootless WM Message-ID: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale.net> Hello all, I have noticed that pop-up help balloons exhibit one or two problems (depending on the program) when using the built-in rootless WM: Some balloons to not go to the background when a Windows window is brought to the front. Other balloons actually come to the front when the mouse is over the object that creates them *through a Windows window*. I should note that the applications I am seeing this with are running on Solaris - I don't have any native Cygwin apps that have pop-up balloons. Regards, Chris Nappi From andrex@alumni.utexas.net Thu May 19 14:10:00 2005 From: andrex@alumni.utexas.net (Andrew Schulman) Date: Thu, 19 May 2005 14:10:00 -0000 Subject: AW: AW: AW: AW: Message-ID: What the hell is that? From mark.paulus@mci.com Thu May 19 14:51:00 2005 From: mark.paulus@mci.com (Mark Paulus) Date: Thu, 19 May 2005 14:51:00 -0000 Subject: AW: AW: AW: AW: In-Reply-To: Message-ID: <0IGQ00M78RRTFA@pmismtp02.mcilink.com> Antwort: Antwort: Antwort: Antwort: It's German for Reply, and the German shorthand for RE: On Thu, 19 May 2005 10:00:26 -0400, Andrew Schulman wrote: >What the hell is that? From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 15:35:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 15:35:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale.net> References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale.net> Message-ID: On Thu, 19 May 2005, Nappi Chris-ra5809 wrote: > Hello all, > > I have noticed that pop-up help balloons exhibit one or two problems (depending on the program) when using the built-in rootless WM: > > Some balloons to not go to the background when a Windows window is brought to the front. > > Other balloons actually come to the front when the mouse is over the object that creates them *through a Windows window*. > > I should note that the applications I am seeing this with are running on Solaris - I don't have any native Cygwin apps that have pop-up balloons. What programs are these? Is the problem reproducable with common windowing toolkits like KDE, GTK, Xt or Motif? Otherwise it will be hard to determine how to fix this. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From andrex@alumni.utexas.net Thu May 19 16:01:00 2005 From: andrex@alumni.utexas.net (Andrew Schulman) Date: Thu, 19 May 2005 16:01:00 -0000 Subject: AW: AW: References: <0IGQ00M78RRTFA@pmismtp02.mcilink.com> Message-ID: >>What the hell is that? > > Antwort: Antwort: Antwort: Antwort: > > It's German for Reply, and > the German shorthand for RE: Thank you. This has been bothering me for ages! Of course it's still annoying, but at least now I know what it means! From Chris.Nappi@freescale.com Thu May 19 16:40:00 2005 From: Chris.Nappi@freescale.com (Nappi Chris-ra5809) Date: Thu, 19 May 2005 16:40:00 -0000 Subject: Popups popping through windows using built-in rootless WM Message-ID: <3FADD461F8FBD8118BB0000F20D7A55F0D866159@az33exm43.am.freescale.net> >> Hello all, >> >> I have noticed that pop-up help balloons exhibit one or two problems >>(depending on the program) when using the built-in rootless WM: >> >> Some balloons to not go to the background when a Windows window is >>brought to the front. >> >> Other balloons actually come to the front when the mouse is over the >>object that creates them *through a Windows window*. >> >> I should note that the applications I am seeing this with are running on >>Solaris - I don't have any native Cygwin apps that have pop-up balloons. >What programs are these? Is the problem reproducable with common >windowing toolkits like KDE, GTK, Xt or Motif? >Otherwise it will be hard to determine how to fix this. The programs I am using are Debussy (a silicon design tool which appears to be C/Motif?) and a proprietary Perl/TK program. Luckily I found that the balloon.pl demo for Tk located in: /usr/lib/perl5/site_perl/5.8/cygwin/Tk/demos/widtrib exhibits the problem. Launch that demo, look at where the "Menu button" button is, put IE(or whatever) in front and place the mouse over where the menu button is. You should get a popup saying "Press and hold this button...". I verified this works when the balloon.pl script is run under Cygwin or Solaris. Thanks! Chris Nappi From brian.willis@noaa.gov Thu May 19 19:07:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Thu, 19 May 2005 19:07:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: <428B5614.3040506@noaa.gov> References: <428B4C0F.8020002@noaa.gov> <428B52C5.6010301@noaa.gov> <20050518144312.GA16860@calimero.vinschen.de> <428B5614.3040506@noaa.gov> Message-ID: <428CDA88.3020703@noaa.gov> Brian Willis wrote: > Corinna Vinschen wrote: > >> On May 18 10:35, Brian Willis wrote: >> >>> Is there any way to make the X server listen on loopback but not on >>> the outside interface? The firewall software does all interfaces, >>> not just the outside. >> >> >> >> That would be a surprise. Are you using the XP SP2 firewall by any >> chance? It allows to customize trusted networks in it's GUI. >> >> >> Corinna >> > > We do use XP SP2, but it doesn't work well with our VPN client, so we > use one from Computer Associates. Unfortunatly I don't get much say in > what we run on the desktops, just the servers. Is there any way to get Cygwin to listen on only localhost? I thought the -nolisten tcp was supposed to do this. -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 19:11:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 19:11:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: <3FADD461F8FBD8118BB0000F20D7A55F0D866159@az33exm43.am.freescale.net> References: <3FADD461F8FBD8118BB0000F20D7A55F0D866159@az33exm43.am.freescale.net> Message-ID: On Thu, 19 May 2005, Nappi Chris-ra5809 wrote: > Luckily I found that the balloon.pl demo for Tk located in: > /usr/lib/perl5/site_perl/5.8/cygwin/Tk/demos/widtrib > exhibits the problem. That's good. So we can try to find a solution bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From andrei.faraon@gmail.com Thu May 19 19:23:00 2005 From: andrei.faraon@gmail.com (Andrei Faraon) Date: Thu, 19 May 2005 19:23:00 -0000 Subject: question In-Reply-To: References: <28d3ece90505181609373dcd3@mail.gmail.com> Message-ID: <28d3ece9050519115762b74c6a@mail.gmail.com> Hi Alexander, startxwin.sh doesn't seem to do a better job. Here I send you a copy of my sceen (.pdf format) that shows all the messages given by cygwin after I give the command startxwin.sh. Maybe you can figure it out what the problem is. Thank you, Andrei On 5/19/05, Alexander Gottwald wrote: > On Wed, 18 May 2005, Andrei Faraon wrote: > > > Hello, > > > > I installed X-cygwin (the xorg-x11-base package) and I run it with the > > comand startx and it enters a single-window mode. My intention is to > > run it in multi-window mode and I know that the command startx should > > launch the multi-window mode. Can you please give me some help with > > respect to this problem? > > startxwin.sh will start multiwindow. > > bye > ago > -- > Alexander.Gottwald@s1999.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > -- Andrei Faraon Stanford University, Applied Physics 316 Via Pueblo Mall Stanford, CA, 94305 Home: 650 495 3857 Office: 650 723 2279 -------------- next part -------------- A non-text attachment was scrubbed... Name: cygwin_error.pdf Type: application/pdf Size: 217794 bytes Desc: not available URL: From pak@oess.com Thu May 19 21:03:00 2005 From: pak@oess.com (Chuck Pak) Date: Thu, 19 May 2005 21:03:00 -0000 Subject: Need Help for XWin problem Message-ID: <001701c55cb6$311218c0$9601a8c0@cpakvaio> Hello, I am new to this cygwinX and I am trying to make XWin work through SUN Solaris remote server My local PC is Sony VAIO notebook with MS XP Pro SP2 And startx and telnet works fine but not XWin I?ve been searching FAQ for a while and tried them too. BTW, how can I change ?Owner of /tmp/.X11-unix should be set to root?? Thanks for your help in advance ????Best Regards ????Chuck Pak XWin.log Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin -query 1xx.xx.xx.xx (IP address is for my customer SUN server) ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1024 h 768 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6 /lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/f onts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (II) Loading US keyboard layout. (--) winConfigKeyboard - Layout: "E0210411" (00000411) (--) Using preset keyboard for "Japanese" (411), type "7" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! Fatal server error: XDMCP fatal error: Session failed Session 14 failed for display 1xx.xx.xx.xxx:0: Cannot open display winDeinitMultiWindowWM - Noting shutdown in progress From Angelo.Graziosi@roma1.infn.it Thu May 19 21:44:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Thu, 19 May 2005 21:44:00 -0000 Subject: base-files 3.4-2: Permission denied! froma startxwin.bat Message-ID: On Thu, May 19,2005 08:34:14 John Morrison wrote >On Thu, May 19, 2005 12:01 am, Angelo Graziosi said: >> >> With this new release there is a >> >> Permission denied >> >> when a NOT-ADMIN user starts the X system (startxwin.bat) >> ==================== >> >> He has not access to remove .X11-unix (see startxwin.bat) when /tmp has >> the "t" permission. >> >> Every user (or only Administrator?) should remove manually .X11-unix >> before the disconnetion from the machine. >> >> In this case there is not "permission denied" for the simple user. >> >> angelo. > > > Sorry, I don't use startxwin.bat, I can't help with that. 3.4-2 simply > 2>/dev/null's the error, perhaps startxwin.bat should too? > > J. To hide, in "2>/dev/null's", the conflict between the necessity to have "t" for /tmp and the fact that using CYGWIN by NOT-ADMIN. user does not like this is not very exciting! This can be accepted only as temporary patch waiting a more complete fix. I do not know if "startxwin.bat", for NOT-ADMIN user, should hide "Permission denied" in "2>/dev/null's". This should be fixed by "ago". bye angelo. From Alexander.Gottwald@s1999.tu-chemnitz.de Thu May 19 21:56:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 21:56:00 -0000 Subject: question In-Reply-To: <28d3ece9050519115762b74c6a@mail.gmail.com> References: <28d3ece90505181609373dcd3@mail.gmail.com> <28d3ece9050519115762b74c6a@mail.gmail.com> Message-ID: Andrei Faraon wrote: > Hi Alexander, > > startxwin.sh doesn't seem to do a better job. Here I send you a copy > of my sceen (.pdf format) that shows all the messages given by cygwin > after I give the command startxwin.sh. Maybe you can figure it out > what the problem is. You are running multiwindow mode. What are you expecting? Maybe http://x.cygwin.com/gocs/ug/cygwin-x-ug.html does help. bye ago NP: SITD - Plastination City -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From Alexander.Gottwald@s1999.tu-chemnitz.de Thu May 19 22:04:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 22:04:00 -0000 Subject: Need Help for XWin problem In-Reply-To: <001701c55cb6$311218c0$9601a8c0@cpakvaio> References: <001701c55cb6$311218c0$9601a8c0@cpakvaio> Message-ID: Chuck Pak wrote: > > Hello, > I am new to this cygwinX and I am trying to make XWin work through SUN > Solaris remote server > My local PC is Sony VAIO notebook with MS XP Pro SP2 > And startx and telnet works fine but not XWin > I've been searching FAQ for a while and tried them too. > BTW, how can I change "Owner of /tmp/.X11-unix should be set to root"? You can not fix this unless you switch to an operating system with full unix user managment and run XWin as root. > > Fatal server error: > XDMCP fatal error: Session failed Session 14 failed for display > 1xx.xx.xx.xxx:0: Cannot open display Check the FAQ. The -from parameter might be of great interest http://x.cygwin.com/docs/faq/cygwin-x-faq.html#xdmcp bye ago NP: SITD - Plastination City -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Thu May 19 22:09:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 19 May 2005 22:09:00 -0000 Subject: Problem with -multiwindow and -clipboard when using -nolisten tcp In-Reply-To: <428CDA88.3020703@noaa.gov> References: <428B4C0F.8020002@noaa.gov> <428B52C5.6010301@noaa.gov> <20050518144312.GA16860@calimero.vinschen.de> <428B5614.3040506@noaa.gov> <428CDA88.3020703@noaa.gov> Message-ID: On Thu, 19 May 2005, Brian Willis wrote: > Is there any way to get Cygwin to listen on only localhost? No. > I thought the -nolisten tcp was supposed to do this. -nolisten tcp disables tcp completely bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From owen.rees@hp.com Fri May 20 08:44:00 2005 From: owen.rees@hp.com (Owen Rees) Date: Fri, 20 May 2005 08:44:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> Message-ID: <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> --On 19 May 2005 17:35 +0200 Alexander Gottwald wrote: > What programs are these? Is the problem reproducable with common > windowing toolkits like KDE, GTK, Xt or Motif? > > Otherwise it will be hard to determine how to fix this. emacs (cygwin version running locally) has balloon help on the toolbar - this shows up through Firefox (Windows version) so the problem can be seen with a purely local set of applications that are commonly used. The popups appear with two Windows windows on top of the emacs window, but if a cygwin/X window is interposed (e.g. xterm) the emacs popups do not appear in the covered region. -- Owen Rees Hewlett Packard Laboratories, Bristol, UK From sven@nag.co.uk Fri May 20 09:23:00 2005 From: sven@nag.co.uk (Sven Hammarling) Date: Fri, 20 May 2005 09:23:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: <3FADD461F8FBD8118BB0000F20D7A55F0D866159@az33exm43.am.freescale.net> References: <3FADD461F8FBD8118BB0000F20D7A55F0D866159@az33exm43.am.freescale.net> Message-ID: Nappi Chris-ra5809 wrote: >>>Hello all, >>> >>>I have noticed that pop-up help balloons exhibit one or two problems >>(depending on the program) when using the built-in rootless WM: >>> >>>Some balloons to not go to the background when a Windows window is >>brought to the front. >>> >>>Other balloons actually come to the front when the mouse is over the >>object that creates them *through a Windows window*. >>> >>>I should note that the applications I am seeing this with are running on >>Solaris - I don't have any native Cygwin apps that have pop-up balloons. > > >>What programs are these? Is the problem reproducable with common >>windowing toolkits like KDE, GTK, Xt or Motif? > > >>Otherwise it will be hard to determine how to fix this. > > > The programs I am using are Debussy (a silicon design tool which appears to be C/Motif?) and a proprietary Perl/TK program. > > Luckily I found that the balloon.pl demo for Tk located in: > /usr/lib/perl5/site_perl/5.8/cygwin/Tk/demos/widtrib > exhibits the problem. > > Launch that demo, look at where the "Menu button" button is, put IE(or whatever) in front and place the mouse over where the menu button is. You should get a popup saying "Press and hold this button...". > > I verified this works when the balloon.pl script is run under Cygwin or Solaris. > > Thanks! > Chris Nappi > Just as a second example, I also get the popup balloons through native Windows applications running 'XWin -multiwindow' on Windows XP SP2 with the Cygwin build of Emacs - the mode line menu shows through. Sven Hammarling. From owen.rees@hp.com Fri May 20 09:32:00 2005 From: owen.rees@hp.com (Owen Rees) Date: Fri, 20 May 2005 09:32:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> Message-ID: --On 20 May 2005 09:43 +0100 Owen Rees wrote: > The popups appear with two Windows windows on top of the emacs window, > but if a cygwin/X window is interposed (e.g. xterm) the emacs popups do > not appear in the covered region. I have just noticed that the popups appear even if the X window is minimized if you hover over the place where the toolbar will be if the window is restored. This effect occurs over the background as well as over whatever Windows windows may be open. -- Owen Rees Hewlett Packard Laboratories, Bristol, UK From alexander.gottwald@s1999.tu-chemnitz.de Fri May 20 09:51:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 20 May 2005 09:51:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> Message-ID: On Fri, 20 May 2005, Owen Rees wrote: > --On 20 May 2005 09:43 +0100 Owen Rees wrote: > > > The popups appear with two Windows windows on top of the emacs window, > > but if a cygwin/X window is interposed (e.g. xterm) the emacs popups do > > not appear in the covered region. > > I have just noticed that the popups appear even if the X window is > minimized if you hover over the place where the toolbar will be if the > window is restored. This effect occurs over the background as well as over > whatever Windows windows may be open. Hm. That is really a bug. Anyway, tooltips which appear on top of any other window are not a bug in my opinion. They appear topmost in windowed mode too. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From owen.rees@hp.com Fri May 20 12:22:00 2005 From: owen.rees@hp.com (Owen Rees) Date: Fri, 20 May 2005 12:22:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> Message-ID: <5A30AF5DD58FF7DF3291595C@rees-o-3.labs.hpl.hp.com> --On 20 May 2005 11:51 +0200 Alexander Gottwald wrote: > Anyway, tooltips which appear on top of any other window are not a bug in > my opinion. They appear topmost in windowed mode too. The issue as far as I am concerned is not that the tooltip display is on top but that it occurs when the button etc. that it is associated with is covered by another window. In other words, you get a tooltip for something you can't see. I think that ought to be considered a bug. -- Owen Rees Hewlett Packard Laboratories, Bristol, UK From alexander.gottwald@s1999.tu-chemnitz.de Fri May 20 12:38:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 20 May 2005 12:38:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: <5A30AF5DD58FF7DF3291595C@rees-o-3.labs.hpl.hp.com> References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> <5A30AF5DD58FF7DF3291595C@rees-o-3.labs.hpl.hp.com> Message-ID: On Fri, 20 May 2005, Owen Rees wrote: > --On 20 May 2005 11:51 +0200 Alexander Gottwald wrote: > > > Anyway, tooltips which appear on top of any other window are not a bug in > > my opinion. They appear topmost in windowed mode too. > > The issue as far as I am concerned is not that the tooltip display is on > top but that it occurs when the button etc. that it is associated with is > covered by another window. In other words, you get a tooltip for something > you can't see. I think that ought to be considered a bug. Of cause. I thought it was a stacking issue. I'm not sure how a minimized window or a partly obscured window can notice mouse movement in that area. That's the main problem. Though there will never be a fix for cases like this: mouse is moved over sensitive area, timeout starts area is obscured by another window timout is reached, tooltip pops up although the pointer is now in the obscuring window This is a problem of the two worlds which can not be integrated smoothly. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From didier@bretin.net Fri May 20 14:24:00 2005 From: didier@bretin.net (Didier BRETIN) Date: Fri, 20 May 2005 14:24:00 -0000 Subject: rxvt in search of libX11.dll Message-ID: <428DF34A.4040403@bretin.net> Hello, I have installed some X11 packages and the 'startx' is working. I have xterm. But when I want to launch 'rxvt' it says to me that it doesn't find libX11.dll. I launch a "find / -name 'libX11.dll' " on my cygwin installation and this file is not existing. What is the package for this library I need to install ? Regards. -- Didier BRETIN http://www.bretin.net/ From pechtcha@cs.nyu.edu Fri May 20 14:47:00 2005 From: pechtcha@cs.nyu.edu (Igor Pechtchanski) Date: Fri, 20 May 2005 14:47:00 -0000 Subject: rxvt in search of libX11.dll In-Reply-To: <428DF34A.4040403@bretin.net> References: <428DF34A.4040403@bretin.net> Message-ID: On Fri, 20 May 2005, Didier BRETIN wrote: > Hello, > > I have installed some X11 packages and the 'startx' is working. > I have xterm. > > But when I want to launch 'rxvt' it says to me that it doesn't > find libX11.dll. As I understand it, rxvt will first look for cygX11-6.dll, which is in xorg-x11-bin-dlls, and only then for libX11.dll (which is in XFree86-lib-compat). The fact that it doesn't find cygX11-6.dll probably indicates that you don't have /usr/X11R6/bin in your PATH. However, without the system information requested in the Cygwin problem reporting guidelines at , the above is just a guess. > I launch a "find / -name 'libX11.dll' " on my cygwin installation > and this file is not existing. > > What is the package for this library I need to install ? The answer to "which package should I install to get file A" almost always involves the Cygwin package search page at . A search for "libX11.dll" there points to the XFree86-lib-compat package. However, as I said, you probably just need to add /usr/X11R6/bin to your PATH. One other point: rxvt has a Windows native mode, which doesn't require a running X server. You can invoke rxvt with "-display :0" to get the Windows native mode (it uses libW11.dll, which comes with the rxvt package, and doesn't need X installed). HTH, Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha@cs.nyu.edu ZZZzz /,`.-'`' -. ;-;;,_ igor@watson.ibm.com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "The Sun will pass between the Earth and the Moon tonight for a total Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT From Phil.Betts@heis.co.uk Fri May 20 14:53:00 2005 From: Phil.Betts@heis.co.uk (Phil Betts) Date: Fri, 20 May 2005 14:53:00 -0000 Subject: Popups popping through windows using built-in rootless WM Message-ID: On Friday, May 20, 2005 10:51 AM, Alexander Gottwald wrote: > Anyway, tooltips which appear on top of any other window are not a bug in my > opinion. They appear topmost in windowed mode too. The problem is not that the popups appear on top. It is that the mouse position reports are passed to the obscured application window (even if its minimised). I *think* this is only a problem if there is another X window that is higher in the stacking order than the focussed non-X window. The second X window doesn't have to overlap the non-X window. I use the VirtuaWin virtual window manager which IIRC works by minimising the windows that are on the hidden desktops. This bug means that windows on hidden desktops pop up tooltips - very confusing! I think the problem is that X gets confused about the stacking order when X windows are mixed with non-X windows. This might be a hangover from the original rootless mode where all X windows were at the same stacking level as far as Windows was concerned (i.e. a non-X window could never sit between two X windows) A closely related issue which may throw light on the problem is that an X window on a hidden desktop displays in the client area of an X window on the active desktop if their screen coordinates overlap, and if the hidden window is logically higher in X's stacking order. To reproduce this, you'll need VirtuaWin, available from http://virtuawin.sourceforge.net The steps are: - Switch to Desk1 - Open an X application (call it X1) - Open a non-X window (call it W1) to at least partially obsure X1 (the key point is that X1 must not be on top) - Switch to Desk2 - Open an X application (call it X2) and position it so that it would overlap X1 if they were on the same desktop. - Open a non-X window (call it W2) to at least partially obsure X2 - Bring X2 to the front (thereby ensuring that it's "above" X1) - Bring W2 to the front and keep the pointer in part of W2 that is outside of both X1 and X2. (I think the main thing here is that neither X window should have, or get, the focus when the desktops are switched. I use the X-mouse tweak so the window under the mouse would be focussed) The logical stacking order is now (bottom to top): X1, W1, X2, W2 - now switch back to Desk1 The client area (but not the frame) of X2 that would overlap X1 if they were on the same desktop is displayed on top of X1. Note that the displayed part of X2 is actively drawn over the top of X1, as opposed to just being left behind. Also, moving the mouse over the widgets of X2 (e.g. the scrollbar) causes the cursor to change as if X2 was genuinely on top. Whilst the above seems an unlikely sequence of events, in practice it's very easy to get this happening, but it's not easy to predict. If you'd like me to test any fix before releasing it into the wild, I'll be glad to help after the weekend. Phil ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ********************************************************************** From Phil.Betts@heis.co.uk Fri May 20 15:05:00 2005 From: Phil.Betts@heis.co.uk (Phil Betts) Date: Fri, 20 May 2005 15:05:00 -0000 Subject: rxvt in search of libX11.dll Message-ID: On Friday, May 20, 2005 3:25 PM, Didier BRETIN wrote, > I launch a "find / -name 'libX11.dll' " on my cygwin installation > and this file is not existing. > What is the package for this library I need to install ? You need the XFree86-lib-compat package. For future reference, you can find this sort of information using the search page on the cygwin site: http://cygwin.com/packages/ Phil ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ********************************************************************** From owen.rees@hp.com Fri May 20 15:45:00 2005 From: owen.rees@hp.com (Owen Rees) Date: Fri, 20 May 2005 15:45:00 -0000 Subject: Popups popping through windows using built-in rootless WM In-Reply-To: References: <3FADD461F8FBD8118BB0000F20D7A55F0D865EAB@az33exm43.am.freescale. net> <4011F59777E5A6EA31394D29@rees-o-3.labs.hpl.hp.com> <5A30AF5DD58FF7DF3291595C@rees-o-3.labs.hpl.hp.com> Message-ID: <95E7A5A8EC3B26EB8FFDDF52@rees-o-3.labs.hpl.hp.com> --On 20 May 2005 14:38 +0200 Alexander Gottwald wrote: > I'm not sure how a minimized window or a partly obscured window can > notice mouse movement in that area. That's the main problem. That made me realise that the obvious tool to investigate this is xev. MotionNotify events come through from the covered (or minimized) part of the event tester window, but at a much reduced rate compared to the exposed part. Normally the events go by very fast as you move the mouse, but they seem to be about half a second apart moving over the covered part. I am also seeing EnterNotify, KeymapNotify and LeaveNotify events when moving over the covered part of the event tester. (Button|Key)|(Press|Release) events are not occurring over the covered part or when minimized. The events sometimes do not happen. This seems to be related to the order in which various windows have focus and/or move in the stacking order and how the switch is done, but I have not found a repeatable way to stop the events. I am also getting VisibilityNotify and Expose events when other X windows are moved over where the event tester would be if it were not minimized. The non-X windows do not generate these events, nor do they generate the events when the event tester window is restored. -- Owen Rees Hewlett Packard Laboratories, Bristol, UK From kp20white@yahoo.com Fri May 20 17:52:00 2005 From: kp20white@yahoo.com (kyle white) Date: Fri, 20 May 2005 17:52:00 -0000 Subject: fedora project Message-ID: <20050520175227.46535.qmail@web32404.mail.mud.yahoo.com> Is it possible to run fedora project from cygwin? __________________________________ Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. http://info.mail.yahoo.com/mail_250 From alexander.gottwald@s1999.tu-chemnitz.de Fri May 20 19:25:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 20 May 2005 19:25:00 -0000 Subject: fedora project In-Reply-To: <20050520175227.46535.qmail@web32404.mail.mud.yahoo.com> References: <20050520175227.46535.qmail@web32404.mail.mud.yahoo.com> Message-ID: On Fri, 20 May 2005, kyle white wrote: > Is it possible to run fedora project from cygwin? What do you mean with that? You can use cygwin/x to connect to a computer running feodora. But you can not run programs from fedora in cygwin. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From brian@dessent.net Sat May 21 05:16:00 2005 From: brian@dessent.net (Brian Dessent) Date: Sat, 21 May 2005 05:16:00 -0000 Subject: fedora project References: <20050520175227.46535.qmail@web32404.mail.mud.yahoo.com> Message-ID: <428EC476.4CC2C4B2@dessent.net> kyle white wrote: > Is it possible to run fedora project from cygwin? Your question is too vague, but the answer is probably "no". Cygwin gives you unix/posix compatibility at the source level, not the binary level. There is absolutely no way to run a binary that is compiled for linux under cygwin, nor is there any (meaningful) way to install a linux RPM. If you mean, "I have a program that's included with fedora, that I'd like to port to Cygwin by compiling from source" then the answer is, "Yes, that will work fine but there can be be some compatibility problems if the program was not written with portability in mind." If you mean, "Can I run linux binaries?" then NO. If you mean, "Can I run linux binaries on a remote machine but display their X11 sessions on the Cygwin machine?", then yes, since Cygwin has a X11 server. The programs themselves are not running in Cygwin, though. By the way, for questions not specific to X11 you should post to the main cygwin list and not to this one. Brian From jicman@cinops.xerox.com Mon May 23 03:01:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 03:01:00 -0000 Subject: make of glib-2.6.4 fails Message-ID: <008901c55f43$a5bb24c0$01ac850d@jicman> Greetings! I am trying to build glib 2.6.4, since a package that I want to build requires it. the configure part went ok without errors. I configured with the --prefix=/usr option on. Here is the last part of the make run: ... ... bs/gspawn.o .libs/gwin32.o -Wl,--whole-archive libcharset/.libs/libcharset.a -Wl,--no-whole-archive -L/usr/lib /usr/lib/libiconv.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a -o .libs/cygglib-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libglib-2.0.dll.a Cannot export R: symbol not defined Cannot export _g_ascii_table: symbol not defined Cannot export _g_utf8_skip: symbol not defined Cannot export _glib_binary_age: symbol not defined Cannot export _glib_interface_age: symbol not defined Cannot export _glib_major_version: symbol not defined Cannot export _glib_micro_version: symbol not defined Cannot export _glib_minor_version: symbol not defined Creating library file: .libs/libglib-2.0.dll.a collect2: ld returned 1 exit status make[4]: *** [libglib-2.0.la] Error 1 make[4]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/jcabrera/apps/glib-2.6.4' make: *** [all] Error 2 jicman 22:43:46-> any ideas? Thanks, jos?? From jicman@cinops.xerox.com Mon May 23 14:37:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 14:37:00 -0000 Subject: gnome-session build fails Message-ID: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> Greetings! I am trying to build gnome-session-2.10.0 to run with openbox wm and I configured gnome-session with this command: ./configure --prefix=/usr --with-x --with-window-manager=openbox The configure executes well with out any problem, but the make fails with, jic 10:24:28-> make make all-recursive make[1]: Entering directory `/home/us319318/apps/gnome-session-2.10.0' Making all in po make[2]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/po' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/po' Making all in gnome-session make[2]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' (cd . \ && glib-mkenums --fhead "#ifndef __GSM_TYPEBUILTINS_H__\n" \ --fhead "#define __GSM_TYPEBUILTINS_H__ 1\n\n" \ --fhead "G_BEGIN_DECLS\n\n" \ --ftail "G_END_DECLS\n\n" \ --ftail "#endif /* __GSM_TYPEBUILTINS_H__ */\n" \ --fprod "\n/* --- @filename@ --- */" \ --eprod "#define GSM_TYPE_@ENUMNAME@ @enum_name@_get_type()\n" \ --eprod "GType @enum_name@_get_type (void);\n" \ ../gnome-session/gsm-protocol.h ) > xgen-gth \ && (cmp -s xgen-gth gsm-typebuiltins.h || cp xgen-gth gsm-typebuiltins.h) \ && rm -f xgen-gth \ && echo timestamp > stamp-gsm-typebuiltins.h /usr/bin/glib-genmarshal ./gsm-marshal.list --body --prefix=gsm_marshal > xgen-gmc \ && cp xgen-gmc gsm-marshal.c \ && rm -f xgen-gmc /usr/bin/glib-genmarshal ./gsm-marshal.list --header --prefix=gsm_marshal > xgen-gmh \ && (cmp -s xgen-gmh gsm-marshal.h || cp xgen-gmh gsm-marshal.h) \ && rm -f xgen-gmh \ && echo timestamp > stamp-gsm-marshal.h make all-am make[3]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -D_REENTRANT -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0 -I/usr/include/libxml2 -DPREFIX=\""/usr"\" -DSYSCONFDIR=\""/usr/etc"\" -DLIBDIR=\""/usr/lib"\" -DDATADIR=\""/usr/share"\" -Wall -Wmissing-prototypes -DGNOMELOCALEDIR=\""/usr/share/locale\"" -DGCONF_SANITY_CHECK=\""/usr/sbin/gconf-sanity-check-2"\" -DGNOME_KEYRING_DAEMON=\""/usr/bin/gnome-keyring-daemon"\" -DGNOME_ICONDIR=\""/usr/share/pixmaps\"" -DREBOOT_COMMAND=\""\"" -DHALT_COMMAND=\""\"" -DRSH_COMMAND=\""/usr/bin/rsh\"" -DGCONFTOOL_CMD=\""/usr/bin/gconftool-2\"" -DDEFAULTDIR="\"/usr/share/gnome\"" -DESD_SERVER="\"/usr/bin/esd\"" -g -O2 -MT manager.o -MD -MP -MF ".deps/manager.Tpo" \ -c -o manager.o `test -f 'manager.c' || echo './'`manager.c; \ then mv -f ".deps/manager.Tpo" ".deps/manager.Po"; \ else rm -f ".deps/manager.Tpo"; exit 1; \ fi manager.c: In function `maybe_write_session': manager.c:227: warning: dereferencing type-punned pointer will break strict-aliasing rules if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -D_REENTRANT -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0 -I/usr/include/libxml2 -DPREFIX=\""/usr"\" -DSYSCONFDIR=\""/usr/etc"\" -DLIBDIR=\""/usr/lib"\" -DDATADIR=\""/usr/share"\" -Wall -Wmissing-prototypes -DGNOMELOCALEDIR=\""/usr/share/locale\"" -DGCONF_SANITY_CHECK=\""/usr/sbin/gconf-sanity-check-2"\" -DGNOME_KEYRING_DAEMON=\""/usr/bin/gnome-keyring-daemon"\" -DGNOME_ICONDIR=\""/usr/share/pixmaps\"" -DREBOOT_COMMAND=\""\"" -DHALT_COMMAND=\""\"" -DRSH_COMMAND=\""/usr/bin/rsh\"" -DGCONFTOOL_CMD=\""/usr/bin/gconftool-2\"" -DDEFAULTDIR="\"/usr/share/gnome\"" -DESD_SERVER="\"/usr/bin/esd\"" -g -O2 -MT ice.o -MD -MP -MF ".deps/ice.Tpo" \ -c -o ice.o `test -f 'ice.c' || echo './'`ice.c; \ then mv -f ".deps/ice.Tpo" ".deps/ice.Po"; \ else rm -f ".deps/ice.Tpo"; exit 1; \ fi if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DORBIT2=1 -D_REENTRANT -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0 -I/usr/include/libxml2 -DPREFIX=\""/usr"\" -DSYSCONFDIR=\""/usr/etc"\" -DLIBDIR=\""/usr/lib"\" -DDATADIR=\""/usr/share"\" -Wall -Wmissing-prototypes -DGNOMELOCALEDIR=\""/usr/share/locale\"" -DGCONF_SANITY_CHECK=\""/usr/sbin/gconf-sanity-check-2"\" -DGNOME_KEYRING_DAEMON=\""/usr/bin/gnome-keyring-daemon"\" -DGNOME_ICONDIR=\""/usr/share/pixmaps\"" -DREBOOT_COMMAND=\""\"" -DHALT_COMMAND=\""\"" -DRSH_COMMAND=\""/usr/bin/rsh\"" -DGCONFTOOL_CMD=\""/usr/bin/gconftool-2\"" -DDEFAULTDIR="\"/usr/share/gnome\"" -DESD_SERVER="\"/usr/bin/esd\"" -g -O2 -MT main.o -MD -MP -MF ".deps/main.Tpo" \ -c -o main.o `test -f 'main.c' || echo './'`main.c; \ then mv -f ".deps/main.Tpo" ".deps/main.Po"; \ else rm -f ".deps/main.Tpo"; exit 1; \ fi main.c: In function `have_ipv6': main.c:199: error: `AF_INET6' undeclared (first use in this function) main.c:199: error: (Each undeclared identifier is reported only once main.c:199: error: for each function it appears in.) main.c: In function `check_for_dns': main.c:222: error: storage size of `hints' isn't known main.c:226: error: `AI_CANONNAME' undeclared (first use in this function) main.c:228: warning: implicit declaration of function `getaddrinfo' main.c:231: error: dereferencing pointer to incomplete type main.c:222: warning: unused variable `hints' make[3]: *** [main.o] Error 1 make[3]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0' make: *** [all] Error 2 jic 10:26:14-> Anyone has any suggestion? As I said previously, the configure ran fine and one of the entries was, checking whether to enable ipv6... no but, apparently, it's not working. By the way, I also tried it with --enable-ipv6 and it failed at the same spot. thanks, jos?? From alexander.gottwald@s1999.tu-chemnitz.de Mon May 23 14:53:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 23 May 2005 14:53:00 -0000 Subject: gnome-session build fails In-Reply-To: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> Message-ID: On Mon, 23 May 2005, jose isaias cabrera wrote: > main.c: In function `have_ipv6': > main.c:199: error: `AF_INET6' undeclared (first use in this function) > main.c:199: error: (Each undeclared identifier is reported only once > main.c:199: error: for each function it appears in.) > > Anyone has any suggestion? As I said previously, the configure ran fine and > one of the entries was, > > checking whether to enable ipv6... no > > but, apparently, it's not working. By the way, I also tried it > with --enable-ipv6 and it failed at the same spot. This is a bug in gnome-session then. You might try fixing this by wrapping the the function have_ipv6 with #ifdef HAVE_IPV6 or the like (check config.h for the exact variable) bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From gerrit@familiehaase.de Mon May 23 15:17:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Mon, 23 May 2005 15:17:00 -0000 Subject: make of glib-2.6.4 fails In-Reply-To: <008901c55f43$a5bb24c0$01ac850d@jicman> References: <008901c55f43$a5bb24c0$01ac850d@jicman> Message-ID: <4291F40C.8090804@familiehaase.de> jose isaias cabrera wrote: > Greetings! > > I am trying to build glib 2.6.4, since a package that I want to build > requires it. the configure part went ok without errors. I configured > with the > > --prefix=/usr > > option on. Here is the last part of the make run: > > .... > .... > bs/gspawn.o .libs/gwin32.o -Wl,--whole-archive > libcharset/.libs/libcharset.a -Wl,--no-whole-archive -L/usr/lib > /usr/lib/libiconv.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a -o > ..libs/cygglib-2.0-0.dll -Wl,--image-base=0x10000000 > -Wl,--out-implib,.libs/libglib-2.0.dll.a > Cannot export R: symbol not defined > Cannot export _g_ascii_table: symbol not defined > Cannot export _g_utf8_skip: symbol not defined > Cannot export _glib_binary_age: symbol not defined > Cannot export _glib_interface_age: symbol not defined > Cannot export _glib_major_version: symbol not defined > Cannot export _glib_micro_version: symbol not defined > Cannot export _glib_minor_version: symbol not defined > Creating library file: .libs/libglib-2.0.dll.a > collect2: ld returned 1 exit status > make[4]: *** [libglib-2.0.la] Error 1 > make[4]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' > make[2]: *** [all] Error 2 > make[2]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/home/jcabrera/apps/glib-2.6.4' > make: *** [all] Error 2 > jicman 22:43:46-> > > any ideas? This was a libtool bug, which version of ltmain.sh is included in the sources? Try to upgrade the source tree with: autoreconf --install --force --verbose after you have the latest libtool-devel package installed (the latest release 1.5.10 should be ok). Gerrit -- =^..^= From jicman@cinops.xerox.com Mon May 23 15:43:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 15:43:00 -0000 Subject: gnome-session build fails In-Reply-To: References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> Message-ID: <20050523153930.GA30673@mulo.na.xde3.xerox.org> On 16:53 Mon 23 May , Alexander Gottwald wrote: > On Mon, 23 May 2005, jose isaias cabrera wrote: > > main.c: In function `have_ipv6': > > main.c:199: error: `AF_INET6' undeclared (first use in this function) > > main.c:199: error: (Each undeclared identifier is reported only once > > main.c:199: error: for each function it appears in.) > > > > Anyone has any suggestion? As I said previously, the configure ran fine and > > one of the entries was, > > > > checking whether to enable ipv6... no > > > > but, apparently, it's not working. By the way, I also tried it > > with --enable-ipv6 and it failed at the same spot. > > This is a bug in gnome-session then. You might try fixing this by wrapping > the the function have_ipv6 with #ifdef HAVE_IPV6 or the like (check config.h > for the exact variable) Here is what the config.h had: /* config.h. Generated by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* Define if IPV6 is supported */ #define ENABLE_IPV6 1 ... ... ... I commented out the define for IPV6 and it has now passed that state. Now, :-) , there is a new error message: jic 11:30:38-> make make all-recursive make[1]: Entering directory `/home/us319318/apps/gnome-session-2.10.0' Making all in po make[2]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/po' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/po' Making all in gnome-session make[2]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' make all-am make[3]: Entering directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' /bin/bash ../libtool --mode=link gcc -g -O2 -o gnome-session.exe manager.o ice.o main.o prop.o save.o command.o remote.o logout.o splash-widget.o gsm-xrandr.o gsm-keyring.o gsm-gsd.o gsm-protocol.o gsm-remote-desktop.o gsm-sound.o gsm-at-startup.o gsm-multiscreen.o gsm-typebuiltins.o gdm-logout-action.o util.o egg-screen-exec.o egg-screen-help.o egg-screen-url.o -lXrandr -lXrender -lSM -lICE -L/usr/X11R6/lib -lX11 -Wl,--export-dynamic -L/usr/X11R6/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lxml2 -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lXft -lfreetype -lz -lXrender -lXext -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lbonobo-2 -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 -lintl -liconv -lesd -laudiofile -lm -L/usr/lib -lwrap libtool: link: cannot find the library `/usr/X11R6/lib/libXrender.la' make[3]: *** [gnome-session.exe] Error 1 make[3]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0/gnome-session' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/us319318/apps/gnome-session-2.10.0' make: *** [all] Error 2 different error all together. ??? thanks, jic > > bye > ago > -- > Alexander.Gottwald@s1999.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 From alexander.gottwald@s1999.tu-chemnitz.de Mon May 23 16:05:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 23 May 2005 16:05:00 -0000 Subject: gnome-session build fails In-Reply-To: <20050523153930.GA30673@mulo.na.xde3.xerox.org> References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> Message-ID: On Mon, 23 May 2005, jose isaias cabrera wrote: > `/home/us319318/apps/gnome-session-2.10.0/gnome-session' > /bin/bash ../libtool --mode=link gcc -g -O2 -o gnome-session.exe > manager.o ice.o main.o prop.o save.o command.o remote.o logout.o > splash-widget.o gsm-xrandr.o gsm-keyring.o gsm-gsd.o gsm-protocol.o > gsm-remote-desktop.o gsm-sound.o gsm-at-startup.o gsm-multiscreen.o > gsm-typebuiltins.o gdm-logout-action.o util.o egg-screen-exec.o > egg-screen-help.o egg-screen-url.o -lXrandr -lXrender -lSM -lICE > -L/usr/X11R6/lib -lX11 -Wl,--export-dynamic -L/usr/X11R6/lib > -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lxml2 -lgnomecanvas-2 -lgnome-2 > -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 > -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lXft -lfreetype -lz -lXrender -lXext > -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lbonobo-2 > -lgconf-2 -lgnomevfs-2 -lbonobo-activation -lORBit-2 -lgmodule-2.0 > -lgthread-2.0 -lglib-2.0 -lintl -liconv -lesd -laudiofile -lm > -L/usr/lib -lwrap > libtool: link: cannot find the library `/usr/X11R6/lib/libXrender.la' before blaming libtool: do you have the xorg-x11-devel package installed? (surely, otherwise configure would not work) xorg-x11-devel has /usr/X11R6/lib/libXrender.dll.a and libtool should pick that up instead of searching for libXrender.la. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Mon May 23 16:30:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 16:30:00 -0000 Subject: gnome-session build fails In-Reply-To: References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> Message-ID: <20050523162638.GA30827@mulo.na.xde3.xerox.org> On 18:05 Mon 23 May , Alexander Gottwald wrote: > On Mon, 23 May 2005, jose isaias cabrera wrote: > > > -lgthread-2.0 -lglib-2.0 -lintl -liconv -lesd -laudiofile -lm > > -L/usr/lib -lwrap > > libtool: link: cannot find the library `/usr/X11R6/lib/libXrender.la' > > before blaming libtool: do you have the xorg-x11-devel package installed? > (surely, otherwise configure would not work) Yes. Exactly. > xorg-x11-devel has /usr/X11R6/lib/libXrender.dll.a and libtool should > pick that up instead of searching for libXrender.la. Here is a list of libXr*: jic 12:25:50-> ls -al /usr/X11R6/lib/libXr* -rwxrwxrwx 1 us319318 Users 14594 Apr 20 07:43 /usr/X11R6/lib/libXrandr-2.dll.a* lrwxrwxrwx 1 us319318 Users 17 May 11 11:11 /usr/X11R6/lib/libXrandr.dll.a -> libXrandr-2.dll.a* -rwxrwxrwx 1 us319318 Users 28894 Apr 20 07:43 /usr/X11R6/lib/libXrender-1.dll.a* lrwxrwxrwx 1 us319318 Users 18 May 11 11:11 /usr/X11R6/lib/libXrender.dll.a -> libXrender-1.dll.a* Ok, I agree, but somehow, libtool is not figuring itself out. However, is that dynamic link ok? jic From alexander.gottwald@s1999.tu-chemnitz.de Mon May 23 16:33:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 23 May 2005 16:33:00 -0000 Subject: gnome-session build fails In-Reply-To: <20050523162638.GA30827@mulo.na.xde3.xerox.org> References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> <20050523162638.GA30827@mulo.na.xde3.xerox.org> Message-ID: On Mon, 23 May 2005, jose isaias cabrera wrote: > Ok, I agree, but somehow, libtool is not figuring itself out. However, > is that dynamic link ok? yes gcc (or ld) would work fine. I don't know why libtool does not. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jicman@cinops.xerox.com Mon May 23 18:09:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 18:09:00 -0000 Subject: make of glib-2.6.4 fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: <000601c55fc2$4ee323d0$2820790d@stso.mc.xerox.com> > jose isaias cabrera wrote: > >> Greetings! >> >> I am trying to build glib 2.6.4, since a package that I want to build >> requires it. the configure part went ok without errors. I configured >> with the >> >> --prefix=/usr >> >> option on. Here is the last part of the make run: >> >> .... >> .... >> bs/gspawn.o .libs/gwin32.o -Wl,--whole-archive >> libcharset/.libs/libcharset.a -Wl,--no-whole-archive -L/usr/lib >> /usr/lib/libiconv.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a -o >> ..libs/cygglib-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libglib-2.0.dll.a >> Cannot export R: symbol not defined >> Cannot export _g_ascii_table: symbol not defined >> Cannot export _g_utf8_skip: symbol not defined >> Cannot export _glib_binary_age: symbol not defined >> Cannot export _glib_interface_age: symbol not defined >> Cannot export _glib_major_version: symbol not defined >> Cannot export _glib_micro_version: symbol not defined >> Cannot export _glib_minor_version: symbol not defined >> Creating library file: .libs/libglib-2.0.dll.a >> collect2: ld returned 1 exit status >> make[4]: *** [libglib-2.0.la] Error 1 >> make[4]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' >> make[3]: *** [all-recursive] Error 1 >> make[3]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' >> make[2]: *** [all] Error 2 >> make[2]: Leaving directory `/home/jcabrera/apps/glib-2.6.4/glib' >> make[1]: *** [all-recursive] Error 1 >> make[1]: Leaving directory `/home/jcabrera/apps/glib-2.6.4' >> make: *** [all] Error 2 >> jicman 22:43:46-> >> >> any ideas? > > This was a libtool bug, which version of ltmain.sh is included in the > sources? Try to upgrade the source tree with: > > autoreconf --install --force --verbose > > after you have the latest libtool-devel package installed (the latest > release 1.5.10 should be ok). Ok, thanks. This got me through the make, but on the make install command, I get this: jic 14:04:56-> make install make install-recursive make[1]: Entering directory `/home/us319318/apps/glib-2.6.4' Making install in . make[2]: Entering directory `/home/us319318/apps/glib-2.6.4' make[3]: Entering directory `/home/us319318/apps/glib-2.6.4' test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin" /usr/bin/install -c 'glib-gettextize' '/usr/local/bin/glib-gettextize' /bin/bash ./mkinstalldirs /usr/local/lib/glib-2.0/include file=/usr/local/lib/glib-2.0/include/glibconfig.h; \ if test -r $file && cmp -s glibconfig.h $file; then :; \ else /usr/bin/install -c -m 644 glibconfig.h $file; fi test -z "/usr/local/share/glib-2.0/gettext" || mkdir -p -- "/usr/local/share/gli b-2.0/gettext" /usr/bin/install -c 'mkinstalldirs' '/usr/local/share/glib-2.0/gettext/mkinstal ldirs' test -z "/usr/local/lib/pkgconfig" || mkdir -p -- "/usr/local/lib/pkgconfig" /usr/bin/install -c -m 644 'glib-2.0.pc' '/usr/local/lib/pkgconfig/glib-2.0.pc' /usr/bin/install -c -m 644 'gobject-2.0.pc' '/usr/local/lib/pkgconfig/gobject-2 .0.pc' /usr/bin/install -c -m 644 'gmodule-2.0.pc' '/usr/local/lib/pkgconfig/gmodule-2 .0.pc' /usr/bin/install -c -m 644 './gmodule-export-2.0.pc' '/usr/local/lib/pkgconfig/ gmodule-export-2.0.pc' /usr/bin/install: cannot stat `./gmodule-export-2.0.pc': No such file or directo ry /usr/bin/install -c -m 644 'gmodule-no-export-2.0.pc' '/usr/local/lib/pkgconfig /gmodule-no-export-2.0.pc' /usr/bin/install -c -m 644 'gthread-2.0.pc' '/usr/local/lib/pkgconfig/gthread-2 .0.pc' make[3]: Leaving directory `/home/us319318/apps/glib-2.6.4' make[2]: Leaving directory `/home/us319318/apps/glib-2.6.4' Making install in m4macros make[2]: Entering directory `/home/us319318/apps/glib-2.6.4/m4macros' make[3]: Entering directory `/home/us319318/apps/glib-2.6.4/m4macros' make[3]: Nothing to be done for `install-exec-am'. test -z "/usr/local/share/aclocal" || mkdir -p -- "/usr/local/share/aclocal" /usr/bin/install -c -m 644 'glib-2.0.m4' '/usr/local/share/aclocal/glib-2.0.m4' /usr/bin/install: cannot create regular file `/usr/local/share/aclocal/glib-2.0. m4': Permission denied /usr/bin/install -c -m 644 'glib-gettext.m4' '/usr/local/share/aclocal/glib-get text.m4' /usr/bin/install: cannot create regular file `/usr/local/share/aclocal/glib-gett ext.m4': Permission denied make[3]: *** [install-m4dataDATA] Error 1 make[3]: Leaving directory `/home/us319318/apps/glib-2.6.4/m4macros' make[2]: *** [install-am] Error 2 make[2]: Leaving directory `/home/us319318/apps/glib-2.6.4/m4macros' make[1]: *** [install-recursive] Error 1 make[1]: Leaving directory `/home/us319318/apps/glib-2.6.4' make: *** [install] Error 2 Any ideas? thanks, jos?? From jicman@cinops.xerox.com Mon May 23 18:42:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 18:42:00 -0000 Subject: gnome-session build fails References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> <20050523162638.GA30827@mulo.na.xde3.xerox.org> Message-ID: <001101c55fc6$f0a07ca0$2820790d@stso.mc.xerox.com> Ago, >> Ok, I agree, but somehow, libtool is not figuring itself out. However, >> is that dynamic link ok? > > yes gcc (or ld) would work fine. I don't know why libtool does not. Any options that I can do to libtool to make it work? jic From jicman@cinops.xerox.com Mon May 23 18:54:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 18:54:00 -0000 Subject: libtool-1.5.18 build fails Message-ID: <001801c55fc8$9390de90$2820790d@stso.mc.xerox.com> Greetings! Long story, but trying to build latest libtool to see if it fixes a problem, but it's also failing. Here is the full 'make' and 'make install' run: jic 14:45:56-> make Making all in . make[1]: Entering directory `/home/us319318/apps/libtool-1.5.18' CONFIG_FILES=libtoolize CONFIG_HEADERS= /bin/bash ./config.status config.status: creating libtoolize config.status: executing depfiles commands chmod +x libtoolize make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18' Making all in libltdl make[1]: Entering directory `/home/us319318/apps/libtool-1.5.18/libltdl' make all-am make[2]: Entering directory `/home/us319318/apps/libtool-1.5.18/libltdl' /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -c -o ltdl.lo ltdl.c mkdir .libs gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -c ltdl.c -DPIC -o .libs/ltdl.o gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -c ltdl.c -o ltdl.o >/dev/null 2>&1 /bin/bash ./libtool --tag=CC --mode=link gcc -g -O2 -o libltdl.la -rpath /usr /local/lib -no-undefined -version-info 4:1:1 ltdl.lo gcc -shared .libs/ltdl.o -o .libs/cygltdl-3.dll -Wl,--image-base=0x10000000 - Wl,--out-implib,.libs/libltdl.dll.a Creating library file: .libs/libltdl.dll.a ar cru .libs/libltdl.a ltdl.o ranlib .libs/libltdl.a creating libltdl.la (cd .libs && rm -f libltdl.la && ln -s ../libltdl.la libltdl.la) make[2]: Leaving directory `/home/us319318/apps/libtool-1.5.18/libltdl' make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18/libltdl' Making all in doc make[1]: Entering directory `/home/us319318/apps/libtool-1.5.18/doc' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18/doc' Making all in tests make[1]: Entering directory `/home/us319318/apps/libtool-1.5.18/tests' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18/tests' jic 14:46:12-> make install Making install in . make[1]: Entering directory `/home/us319318/apps/libtool-1.5.18' make[2]: Entering directory `/home/us319318/apps/libtool-1.5.18' test -z "/usr/local/bin" || mkdir -p -- "/usr/local/bin" /usr/bin/install -c 'libtool' '/usr/local/bin/libtool' /usr/bin/install -c 'libtoolize' '/usr/local/bin/libtoolize' test -z "/usr/local/share/aclocal" || mkdir -p -- "/usr/local/share/aclocal" /usr/bin/install -c -m 644 'libtool.m4' '/usr/local/share/aclocal/libtool.m4' /usr/bin/install: cannot create regular file `/usr/local/share/aclocal/libtool.m 4': Permission denied /usr/bin/install -c -m 644 'ltdl.m4' '/usr/local/share/aclocal/ltdl.m4' /usr/bin/install: cannot create regular file `/usr/local/share/aclocal/ltdl.m4': Permission denied make[2]: *** [install-aclocalDATA] Error 1 make[2]: Leaving directory `/home/us319318/apps/libtool-1.5.18' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18' make: *** [install-recursive] Error 1 jic 14:46:33-> Why am I getting this "Permission denied" error? Help. thanks, jos?? From gerrit@familiehaase.de Mon May 23 21:40:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Mon, 23 May 2005 21:40:00 -0000 Subject: gnome-session build fails In-Reply-To: <001101c55fc6$f0a07ca0$2820790d@stso.mc.xerox.com> References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> <20050523162638.GA30827@mulo.na.xde3.xerox.org> <001101c55fc6$f0a07ca0$2820790d@stso.mc.xerox.com> Message-ID: <42924DC7.9060706@familiehaase.de> jose isaias cabrera wrote: > Ago, > >>> Ok, I agree, but somehow, libtool is not figuring itself out. However, >>> is that dynamic link ok? >> >> >> yes gcc (or ld) would work fine. I don't know why libtool does not. > > > Any options that I can do to libtool to make it work? Create the file libXrender.la. Just copy another .la file and edit to fit for libXrender. Or take this: # libXrender.la - a libtool library file # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='../bin/cygXrender-1.dll' # Names of this library. library_names='libXrender.dll.a' # The name of the static archive. old_library='libXrender.a' # Libraries that this one depends upon. dependency_libs=' -L/usr/X11R6/lib -lX11' # Version information for libXrender. current=3 age=2 revision=2 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/usr/X11R6/lib' Gerrit -- =^..^= From gerrit@familiehaase.de Mon May 23 21:43:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Mon, 23 May 2005 21:43:00 -0000 Subject: make of glib-2.6.4 fails In-Reply-To: <000601c55fc2$4ee323d0$2820790d@stso.mc.xerox.com> References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <000601c55fc2$4ee323d0$2820790d@stso.mc.xerox.com> Message-ID: <42924E69.2020208@familiehaase.de> jose isaias cabrera wrote: > /usr/bin/install: cannot create regular file > `/usr/local/share/aclocal/glib-gett > ext.m4': Permission denied > make[3]: *** [install-m4dataDATA] Error 1 > make[3]: Leaving directory `/home/us319318/apps/glib-2.6.4/m4macros' > make[2]: *** [install-am] Error 2 > make[2]: Leaving directory `/home/us319318/apps/glib-2.6.4/m4macros' > make[1]: *** [install-recursive] Error 1 > make[1]: Leaving directory `/home/us319318/apps/glib-2.6.4' > make: *** [install] Error 2 > > Any ideas? What are the permissions of this directory? I usually have 777 on all directories in /usr/local. Gerrit -- =^..^= From gerrit@familiehaase.de Mon May 23 21:47:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Mon, 23 May 2005 21:47:00 -0000 Subject: libtool-1.5.18 build fails In-Reply-To: <001801c55fc8$9390de90$2820790d@stso.mc.xerox.com> References: <001801c55fc8$9390de90$2820790d@stso.mc.xerox.com> Message-ID: <42924F6C.9070103@familiehaase.de> jose isaias cabrera wrote: > Greetings! > > Long story, but trying to build latest libtool to see if it fixes a > problem, but it's also failing. Here is the full 'make' and 'make > install' run: libtool 1.5.10 is fine for me. I have compiled nearly the whole GNOME platform with this libtool. If it still fails, there is an experimental version (pre 2.0). Run setup.exe and click the exp radio button, select libtool-devel-1.9..., however it should work with 1.5.10 too. [snip] > "/usr/local/share/aclocal" > /usr/bin/install -c -m 644 'libtool.m4' > '/usr/local/share/aclocal/libtool.m4' > /usr/bin/install: cannot create regular file > `/usr/local/share/aclocal/libtool.m > 4': Permission denied > /usr/bin/install -c -m 644 'ltdl.m4' '/usr/local/share/aclocal/ltdl.m4' > /usr/bin/install: cannot create regular file > `/usr/local/share/aclocal/ltdl.m4': > Permission denied > make[2]: *** [install-aclocalDATA] Error 1 > make[2]: Leaving directory `/home/us319318/apps/libtool-1.5.18' > make[1]: *** [install-am] Error 2 > make[1]: Leaving directory `/home/us319318/apps/libtool-1.5.18' > make: *** [install-recursive] Error 1 > jic 14:46:33-> > > Why am I getting this "Permission denied" error? The permissons of the directory are wrong? Gerrit -- =^..^= From jicman@cinops.xerox.com Mon May 23 22:08:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 22:08:00 -0000 Subject: make of glib-2.6.4 fails In-Reply-To: <42924E69.2020208@familiehaase.de> References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <000601c55fc2$4ee323d0$2820790d@stso.mc.xerox.com> <42924E69.2020208@familiehaase.de> Message-ID: <20050523220411.GA31005@mulo.na.xde3.xerox.org> On 23:43 Mon 23 May , Gerrit P. Haase wrote: > jose isaias cabrera wrote: > >`/usr/local/share/aclocal/glib-gett > >ext.m4': Permission denied > > What are the permissions of this directory? > I usually have 777 on all directories in /usr/local. interesting! I've never played with permissions with this cygwin installation. I've played with permission on my gentoo box, but not on this laptop. You were right. The permissions were messed up. Hmmm... thanks. jic > > > Gerrit > -- > =^..^= From jicman@cinops.xerox.com Mon May 23 22:39:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Mon, 23 May 2005 22:39:00 -0000 Subject: gnome-session build fails In-Reply-To: <42924DC7.9060706@familiehaase.de> References: <033201c55fa4$b1f29eb0$2820790d@stso.mc.xerox.com> <20050523153930.GA30673@mulo.na.xde3.xerox.org> <20050523162638.GA30827@mulo.na.xde3.xerox.org> <001101c55fc6$f0a07ca0$2820790d@stso.mc.xerox.com> <42924DC7.9060706@familiehaase.de> Message-ID: <20050523223507.GA31018@mulo.na.xde3.xerox.org> Thanks man. As we say in Spanish, "muchas gracias!" Added the file and it worked. Thanks! jic On 23:40 Mon 23 May , Gerrit P. Haase wrote: > jose isaias cabrera wrote: > > >Ago, > > > >>>Ok, I agree, but somehow, libtool is not figuring itself out. However, > >>>is that dynamic link ok? > >> > >> > >>yes gcc (or ld) would work fine. I don't know why libtool does not. > > > > > >Any options that I can do to libtool to make it work? > > Create the file libXrender.la. > Just copy another .la file and edit to fit for libXrender. > > Or take this: > # libXrender.la - a libtool library file > # Generated by ltmain.sh - GNU libtool 1.5 (1.1220 2003/04/05 19:32:58) > # > # Please DO NOT delete this file! > # It is necessary for linking the library. > > # The name that we can dlopen(3). > dlname='../bin/cygXrender-1.dll' > > # Names of this library. > library_names='libXrender.dll.a' > > # The name of the static archive. > old_library='libXrender.a' > > # Libraries that this one depends upon. > dependency_libs=' -L/usr/X11R6/lib -lX11' > > # Version information for libXrender. > current=3 > age=2 > revision=2 > > # Is this an already installed library? > installed=yes > > # Should we warn about portability when linking against -modules? > shouldnotlink=no > > # Files to dlopen/dlpreopen > dlopen='' > dlpreopen='' > > # Directory that this library needs to be installed in: > libdir='/usr/X11R6/lib' > > > Gerrit > -- > =^..^= From spike411@gmail.com Tue May 24 05:28:00 2005 From: spike411@gmail.com (Spike) Date: Tue, 24 May 2005 05:28:00 -0000 Subject: Czech (QWERTY) keyboard layout not autodetected Message-ID: Hello, I use Cygwin/X quite lot, but Czech QWERTY (cz_qwerty in X.org) layout is not auto detected, which is kind of pity. http://www.microsoft.com/globaldev/keyboards/kbdcz1.htm (--) winConfigKeyboard - Layout: "00010405" (00010405) (EE) Keyboardlayout "Czech (QWERTY)" (00010405) is unknown With best regards, Luk?? 'Spike' Pol?vka From alexander.gottwald@s1999.tu-chemnitz.de Tue May 24 09:13:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 24 May 2005 09:13:00 -0000 Subject: Czech (QWERTY) keyboard layout not autodetected In-Reply-To: References: Message-ID: On Tue, 24 May 2005, Spike wrote: > Hello, > I use Cygwin/X quite lot, but Czech QWERTY (cz_qwerty in X.org) layout > is not auto detected, which is kind of pity. > > http://www.microsoft.com/globaldev/keyboards/kbdcz1.htm > > (--) winConfigKeyboard - Layout: "00010405" (00010405) > (EE) Keyboardlayout "Czech (QWERTY)" (00010405) is unknown I've added it to the list. the next release will include it. Thanks ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jackie40d@earthlink.net Tue May 24 12:49:00 2005 From: jackie40d@earthlink.net (Jacquelyn Stevens) Date: Tue, 24 May 2005 12:49:00 -0000 Subject: This is the first Message-ID: <4293228A.1060904@earthlink.net> *This is the first I have heard of this product . . I have heard of Win4Lin as a way of running windows junk on Linux by not you people . . So is this a total O/S by its self or something to add to linux and then run windows junk as from what I was reading on the site . . It seems to be something to add to Linux . . Just me Jackie40D * From alexander.gottwald@s1999.tu-chemnitz.de Tue May 24 14:04:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 24 May 2005 14:04:00 -0000 Subject: This is the first In-Reply-To: <4293228A.1060904@earthlink.net> References: <4293228A.1060904@earthlink.net> Message-ID: On Tue, 24 May 2005, Jacquelyn Stevens wrote: > *This is the first I have heard of this product . . I have heard of > Win4Lin as a way of running windows junk on Linux by not you people . . > So is this a total O/S by its self or something to add to linux and then > run windows junk as from what I was reading on the site . . It seems to > be something to add to Linux . . Cygwin/X is an xserver (like XFree or Xorg) which runs on windows and can display unix programs. Cygwin itself is a library for porting unix programs to windows. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From cgf-no-personal-reply-please@cygwin.com Tue May 24 14:47:00 2005 From: cgf-no-personal-reply-please@cygwin.com (Christopher Faylor) Date: Tue, 24 May 2005 14:47:00 -0000 Subject: This is the first In-Reply-To: <4293228A.1060904@earthlink.net> References: <4293228A.1060904@earthlink.net> Message-ID: <20050524144701.GE3120@trixie.casa.cgf.cx> On Tue, May 24, 2005 at 05:48:10AM -0700, Jacquelyn Stevens wrote: >*This is the first I have heard of this product . . I have heard of >Win4Lin as a way of running windows junk on Linux by not you people . . >So is this a total O/S by its self or something to add to linux and then >run windows junk as from what I was reading on the site . . It seems to >be something to add to Linux . . > >Just me >Jackie40D The cygwin web page is http://cygwin.com/ . It's not a new offering. It's been around for almost ten years. cgf From yoko.ookita@toshiba.co.jp Wed May 25 04:59:00 2005 From: yoko.ookita@toshiba.co.jp (Yoko Ookita) Date: Wed, 25 May 2005 04:59:00 -0000 Subject: Cygwin/X error Message-ID: <200505250459.j4P4xKtG000750@toshiba.co.jp> Hi, I have a trouble with the following situation. When I run startxwin.bat on Cygwin, Cygwin/X output the following message, and exited. -- XWin was started with the following command-line: /usr/X11R6/bin/XWin -multiwindow -clipborad -silent-dup-error -- But I can't find XWin process by 'ps -ef'. I can't find by Task Manager of Windows, neither. If you know what I should do to start XWin normally, please let me know -- Yoko Ookita From lukrez@gmx.at Wed May 25 10:24:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Wed, 25 May 2005 10:24:00 -0000 Subject: make of glib-2.6.4 fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: "Gerrit P. Haase" writes: > jose isaias cabrera wrote: > >> Greetings! >> I am trying to build glib 2.6.4, since a package that I want to build >> requires it. the configure part went ok without errors. I'm trying to accomplish the same thing for an up-to-date version of cygwin. [...] The build seems to fail at the same command: gcc -shared .libs/cygglib-2.0-0.dll.def .libs/garray.o .libs/gasyncqueue.o .libs/gatomic.o .libs/gbacktrace.o .libs/gcache.o .libs/gcompletion.o .libs/gconvert.o .libs/gdataset.o .libs/gdate.o .libs/gdir.o .libs/gerror.o .libs/gfileutils.o .libs/ghash.o .libs/ghook.o .libs/giochannel.o .libs/gkeyfile.o .libs/glist.o .libs/gmain.o .libs/gmarkup.o .libs/gmem.o .libs/gmessages.o .libs/gnode.o .libs/goption.o .libs/gpattern.o .libs/gprimes.o .libs/gqsort.o .libs/gqueue.o .libs/grel.o .libs/grand.o .libs/gscanner.o .libs/gshell.o .libs/gslist.o .libs/gstdio.o .libs/gstrfuncs.o .libs/gstring.o .libs/gthread.o .libs/gthreadpool.o .libs/gtimer.o .libs/gtree.o .libs/guniprop.o .libs/gutf8.o .libs/gunibreak.o .libs/gunicollate.o .libs/gunidecomp.o .libs/gutils.o .libs/gprintf.o .libs/giounix.o .libs/gspawn.o .libs/gwin32.o -Wl,--whole-archive libcharset/.libs/libcharset.a -Wl,--no-whole-archive -L/usr/lib /usr/lib/libiconv.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a -o .libs/cygglib-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libglib-2.0.dll.a Cannot export R: symbol not defined Cannot export _g_ascii_table: symbol not defined Cannot export _g_utf8_skip: symbol not defined Cannot export _glib_binary_age: symbol not defined Cannot export _glib_interface_age: symbol not defined Cannot export _glib_major_version: symbol not defined Cannot export _glib_micro_version: symbol not defined Cannot export _glib_minor_version: symbol not defined Creating library file: .libs/libglib-2.0.dll.a collect2: ld returned 1 exit status make[2]: *** [libglib-2.0.la] Error 1 make[2]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/glib' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/glib' make: *** [all] Error 2 > This was a libtool bug, which version of ltmain.sh is included in the > sources? Try to upgrade the source tree with: > > autoreconf --install --force --verbose > > after you have the latest libtool-devel package installed (the latest > release 1.5.10 should be ok). In the glib source directory, `./libtool --version' gives ltmain.sh (GNU libtool) 1.5.6 (1.1220.2.95 2004/04/11 05:50:42) and `libtool --version' shows ltmain.sh (GNU libtool) 1.5.10 (1.1220.2.131 2004/09/19 12:46:56) I don't know, why the versions differ... however, using `autoreconf' as suggested earlier fails: haeuslsc@pan /cygdrive/d/Src/glib-2.6.4 $ autoreconf --install --force --verbose autoreconf: Entering directory `.' autoreconf: configure.in: not using Gettext autoreconf: running: aclocal --force /usr/share/aclocal/freetype2.m4:7: warning: underquoted definition of AC_CHECK_FT2 run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal autoreconf: configure.in: tracing configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times autoreconf: running: libtoolize --copy --force /usr/share/aclocal/freetype2.m4:7: warning: underquoted definition of AC_CHECK_FT2 run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal autoreconf: running: /usr/autotool/devel/bin/autoconf --force configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times autoreconf: running: /usr/autotool/devel/bin/autoheader --force configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times autoreconf: running: automake --add-missing --copy --force-missing configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here autoreconf: automake failed with exit status: 1 After that, `./configure' fails with: ... checking value of POLLIN... 1 checking value of POLLOUT... 4 checking value of POLLPRI... 2 checking value of POLLERR... 8 checking value of POLLHUP... 16 checking value of POLLNVAL... 32 checking for EILSEQ... yes ./configure: line 38486: syntax error near unexpected token `1.0' ./configure: line 38486: `GTK_DOC_CHECK(1.0)' Any idea that helps is appreciated. Franz. From jc.gervais@videotron.ca Wed May 25 12:04:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 12:04:00 -0000 Subject: sshd and X In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: <1117022620.429.35.camel@mercury> Hello, I've installed the Cygwin/X ssh daemon as a service under Windows 2000. It works fine. I can go sit at Linux box and ssh into the machine running Windows 2000. ssh -Y me@W2KBox Once I am logged in, I'd like to run an X11 application. For example xcalc. If I execute xcalc, I get the following output $ xcalc Error: Can't open display: If I check the environment variables, there is no DISPLAY variable. Is there a way to make this work? Thank you. From alexander.gottwald@s1999.tu-chemnitz.de Wed May 25 12:10:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 25 May 2005 12:10:00 -0000 Subject: sshd and X In-Reply-To: <1117022620.429.35.camel@mercury> References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> Message-ID: On Wed, 25 May 2005, Jean-Claude Gervais wrote: > ssh -Y me@W2KBox > > Once I am logged in, I'd like to run an X11 application. For example > xcalc. > > If I execute xcalc, I get the following output > > $ xcalc > Error: Can't open display: > > If I check the environment variables, there is no DISPLAY variable. Either X11Forwarding is disabled in the server or some login scripts reset the DISPLAY variable. Check http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-ssh-no-x11forwarding bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From lukrez@gmx.at Wed May 25 12:16:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Wed, 25 May 2005 12:16:00 -0000 Subject: make of glib-2.6.4 fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: Franz Haeuslschmid writes: > "Gerrit P. Haase" writes: [...] >> This was a libtool bug, which version of ltmain.sh is included in the >> sources? Try to upgrade the source tree with: >> >> autoreconf --install --force --verbose >> >> after you have the latest libtool-devel package installed (the latest >> release 1.5.10 should be ok). [... calling autoreconf caused some problems that detained ./configure and ./make from working correctly] > gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > autoreconf: automake failed with exit status: 1 It turned out, that I had to install `gtk-doc'. Franz. From jc.gervais@videotron.ca Wed May 25 12:29:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 12:29:00 -0000 Subject: sshd and X In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> Message-ID: <1117024170.2759.38.camel@mercury> Thanks ago, I can't seem to change the settings in the config files. I am logged on to the machine a me/domain The user I am logged on as is in the W2K machine's Administrators group. But the config file is owned by SYSTEM and I can't seem to edit it. What's the best course of action? Thanks On Wed, 2005-05-25 at 14:09 +0200, Alexander Gottwald wrote: > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > ssh -Y me@W2KBox > > > > Once I am logged in, I'd like to run an X11 application. For example > > xcalc. > > > > If I execute xcalc, I get the following output > > > > $ xcalc > > Error: Can't open display: > > > > If I check the environment variables, there is no DISPLAY variable. > > Either X11Forwarding is disabled in the server or some login scripts > reset the DISPLAY variable. > > Check http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-ssh-no-x11forwarding > > bye > ago From alexander.gottwald@s1999.tu-chemnitz.de Wed May 25 12:40:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 25 May 2005 12:40:00 -0000 Subject: sshd and X In-Reply-To: <1117024170.2759.38.camel@mercury> References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> Message-ID: On Wed, 25 May 2005, Jean-Claude Gervais wrote: > Thanks ago, > > I can't seem to change the settings in the config files. > I am logged on to the machine a me/domain > The user I am logged on as is in the W2K machine's Administrators > group. > But the config file is owned by SYSTEM and I can't seem to edit it. > What's the best course of action? You'll have to change the config files on the linux server bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jc.gervais@videotron.ca Wed May 25 13:02:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 13:02:00 -0000 Subject: sshd and X In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> Message-ID: <1117026143.430.45.camel@mercury> ago, Are you sure the linux box id the problem? When I open an xterm on the linux box and type SET, I can see the DISPLAY variable is set correctly, and then if I use that xterm to ssh to any Linux host, I can run xcalc on the remote host and see the display locally on the machine I am logged in from. But when I take the xterm and try connecting to the Windows 2000 ssh server, I connect OK, but the DISPLAY variable is no longer exists in the bash shell the Windows 2000 box starts. Thanks On Wed, 2005-05-25 at 14:40 +0200, Alexander Gottwald wrote: > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > Thanks ago, > > > > I can't seem to change the settings in the config files. > > I am logged on to the machine a me/domain > > The user I am logged on as is in the W2K machine's Administrators > > group. > > But the config file is owned by SYSTEM and I can't seem to edit it. > > What's the best course of action? > > You'll have to change the config files on the linux server > > bye > ago From alexander.gottwald@s1999.tu-chemnitz.de Wed May 25 13:25:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 25 May 2005 13:25:00 -0000 Subject: sshd and X In-Reply-To: <1117026143.430.45.camel@mercury> References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> Message-ID: On Wed, 25 May 2005, Jean-Claude Gervais wrote: > ago, > > Are you sure the linux box id the problem? Sorry, I assumed you were connecting from cygwin to linux and not the other way. > > > I can't seem to change the settings in the config files. > > > I am logged on to the machine a me/domain > > > The user I am logged on as is in the W2K machine's Administrators > > > group. > > > But the config file is owned by SYSTEM and I can't seem to edit it. > > > What's the best course of action? sshd is running as user SYSTEM and so they are owned by him. Changing the file permissions may help chmod go+w /etc/ssh/sshd_config vi /etc/ssh/sshd_config chmod go-w /etc/ssh/sshd_config But that's only a wild guess bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jc.gervais@videotron.ca Wed May 25 14:07:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 14:07:00 -0000 Subject: sshd and X In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> Message-ID: <1117030060.2759.50.camel@mercury> Thanks, Ago. Using the instructions you provided, I was able to edit the file and enable X11Forwarding yes I've restarted the ssh daemon, but it still doesn,t work, the DISPLAY variable is still not set. One thing; I changed the file /etc/sshd_config NOT /etc/ssh/sshd_config There is no /etc/ssh/ folder. All the ssh-related files are in /etc Is that normal? Also, what should I try next? thanks. On Wed, 2005-05-25 at 15:25 +0200, Alexander Gottwald wrote: > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > ago, > > > > Are you sure the linux box id the problem? > > Sorry, I assumed you were connecting from cygwin to linux and not the > other way. > > > > > I can't seem to change the settings in the config files. > > > > I am logged on to the machine a me/domain > > > > The user I am logged on as is in the W2K machine's Administrators > > > > group. > > > > But the config file is owned by SYSTEM and I can't seem to edit it. > > > > What's the best course of action? > > sshd is running as user SYSTEM and so they are owned by him. Changing the > file permissions may help > > chmod go+w /etc/ssh/sshd_config > vi /etc/ssh/sshd_config > chmod go-w /etc/ssh/sshd_config > > But that's only a wild guess > > bye > ago From brian.willis@noaa.gov Wed May 25 14:21:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Wed, 25 May 2005 14:21:00 -0000 Subject: Double click speed in xwin Message-ID: <429489BA.5060200@noaa.gov> I have a user who is using Cygwin in multiwin mode and connecting over ssh to a Linux box. The app he is running is looking for a double click, but he can't click fast enough for it. Is there a way to adjust the double click speed? Is that a setting of Cygwin or the xserver on the remote side? -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From alexander.gottwald@s1999.tu-chemnitz.de Wed May 25 14:32:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 25 May 2005 14:32:00 -0000 Subject: Double click speed in xwin In-Reply-To: <429489BA.5060200@noaa.gov> References: <429489BA.5060200@noaa.gov> Message-ID: On Wed, 25 May 2005, Brian Willis wrote: > I have a user who is using Cygwin in multiwin mode and connecting over > ssh to a Linux box. The app he is running is looking for a double > click, but he can't click fast enough for it. Is there a way to adjust > the double click speed? Is that a setting of Cygwin or the xserver on > the remote side? As far as i know there is no doubleclick event in X11. If the application requires this, then it's up to the application to check for double clicks and only the application could change the timing. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jst1@email.com Wed May 25 14:59:00 2005 From: jst1@email.com (Jean-Sebastien Trottier) Date: Wed, 25 May 2005 14:59:00 -0000 Subject: sshd and X In-Reply-To: <1117030060.2759.50.camel@mercury> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> Message-ID: <20050525145937.GA32556@gw.jsoft.lan> Try using the -X switch as well: ssh -X -Y user@host If this works, then read man ssh_config to learn how to enable X11 forwarding by default on the client side. Cheers, Sebastien On Wed, May 25, 2005 at 10:07:40AM -0400, Jean-Claude Gervais wrote: > Thanks, Ago. > > Using the instructions you provided, I was able to edit the file and > enable > > X11Forwarding yes > > I've restarted the ssh daemon, but it still doesn,t work, the DISPLAY > variable is still not set. > > One thing; I changed the file > /etc/sshd_config > NOT > /etc/ssh/sshd_config > > There is no /etc/ssh/ > folder. All the ssh-related files are in /etc > Is that normal? > > Also, what should I try next? > > thanks. > > > On Wed, 2005-05-25 at 15:25 +0200, Alexander Gottwald wrote: > > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > > > ago, > > > > > > Are you sure the linux box id the problem? > > > > Sorry, I assumed you were connecting from cygwin to linux and not the > > other way. > > > > > > > I can't seem to change the settings in the config files. > > > > > I am logged on to the machine a me/domain > > > > > The user I am logged on as is in the W2K machine's Administrators > > > > > group. > > > > > But the config file is owned by SYSTEM and I can't seem to edit it. > > > > > What's the best course of action? > > > > sshd is running as user SYSTEM and so they are owned by him. Changing the > > file permissions may help > > > > chmod go+w /etc/ssh/sshd_config > > vi /etc/ssh/sshd_config > > chmod go-w /etc/ssh/sshd_config > > > > But that's only a wild guess > > > > bye > > ago > -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From brian.willis@noaa.gov Wed May 25 15:04:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Wed, 25 May 2005 15:04:00 -0000 Subject: Double click speed in xwin In-Reply-To: References: <429489BA.5060200@noaa.gov> Message-ID: <429493E5.3070402@noaa.gov> The only way I know the change the speed is in windowmaker. In the config tool is a double click setting. This may only be a windowmaker config setting though. Does that set the double click speed for windowmaker or for the xserver? Alexander Gottwald wrote: > On Wed, 25 May 2005, Brian Willis wrote: > > >>I have a user who is using Cygwin in multiwin mode and connecting over >>ssh to a Linux box. The app he is running is looking for a double >>click, but he can't click fast enough for it. Is there a way to adjust >>the double click speed? Is that a setting of Cygwin or the xserver on >>the remote side? > > > As far as i know there is no doubleclick event in X11. If the application > requires this, then it's up to the application to check for double clicks > and only the application could change the timing. > > bye > ago -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From jc.gervais@videotron.ca Wed May 25 15:10:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 15:10:00 -0000 Subject: sshd and X In-Reply-To: <20050525145937.GA32556@gw.jsoft.lan> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> Message-ID: <1117033832.429.60.camel@mercury> Thanks for trying, but it gives the same result. Maybe if I ask the question in a different way? Someone here MUST know this - How do you configure a Windows machine to receive ssh connections (done) and also run x applications and send the display back to the ssh client? Is there a how-to for this? I realize it is pretty specific to Cygwin/X Thanks On Wed, 2005-05-25 at 10:59 -0400, Jean-Sebastien Trottier wrote: > Try using the -X switch as well: > ssh -X -Y user@host > > If this works, then read man ssh_config to learn how to enable X11 > forwarding by default on the client side. > > Cheers, > Sebastien > > On Wed, May 25, 2005 at 10:07:40AM -0400, Jean-Claude Gervais wrote: > > Thanks, Ago. > > > > Using the instructions you provided, I was able to edit the file and > > enable > > > > X11Forwarding yes > > > > I've restarted the ssh daemon, but it still doesn,t work, the DISPLAY > > variable is still not set. > > > > One thing; I changed the file > > /etc/sshd_config > > NOT > > /etc/ssh/sshd_config > > > > There is no /etc/ssh/ > > folder. All the ssh-related files are in /etc > > Is that normal? > > > > Also, what should I try next? > > > > thanks. > > > > > > On Wed, 2005-05-25 at 15:25 +0200, Alexander Gottwald wrote: > > > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > > > > > ago, > > > > > > > > Are you sure the linux box id the problem? > > > > > > Sorry, I assumed you were connecting from cygwin to linux and not the > > > other way. > > > > > > > > > I can't seem to change the settings in the config files. > > > > > > I am logged on to the machine a me/domain > > > > > > The user I am logged on as is in the W2K machine's Administrators > > > > > > group. > > > > > > But the config file is owned by SYSTEM and I can't seem to edit it. > > > > > > What's the best course of action? > > > > > > sshd is running as user SYSTEM and so they are owned by him. Changing the > > > file permissions may help > > > > > > chmod go+w /etc/ssh/sshd_config > > > vi /etc/ssh/sshd_config > > > chmod go-w /etc/ssh/sshd_config > > > > > > But that's only a wild guess > > > > > > bye > > > ago > > From alexander.gottwald@s1999.tu-chemnitz.de Wed May 25 15:15:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 25 May 2005 15:15:00 -0000 Subject: sshd and X In-Reply-To: <1117033832.429.60.camel@mercury> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> Message-ID: On Wed, 25 May 2005, Jean-Claude Gervais wrote: > Thanks for trying, but it gives the same result. > > Maybe if I ask the question in a different way? Someone here MUST know > this - > > How do you configure a Windows machine to receive ssh connections (done) > and also run x applications and send the display back to the ssh client? > > Is there a how-to for this? I realize it is pretty specific to Cygwin/X Setting up the X11 tunnel is a bit complicated as sshd must create an xauth cookie and ad it to ~/.Xauthorities. If this fails (either because xauth was not found or some dll is not available or the like) x11 forwarding will most likely be disabled. Maybe ssh -v -v -v wil give you a clue what is happening. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jc.gervais@videotron.ca Wed May 25 15:23:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 15:23:00 -0000 Subject: sshd and X In-Reply-To: References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> Message-ID: <1117034608.2758.66.camel@mercury> Here's the output: jcgervais@pluto ~ $ ssh -v -Y neptune OpenSSH_4.0p1, OpenSSL 0.9.7g 11 Apr 2005 debug1: Reading configuration data /etc/ssh/ssh_config debug1: Connecting to neptune [192.168.1.10] port 22. debug1: Connection established. debug1: identity file /home/jcgervais/.ssh/identity type -1 debug1: identity file /home/jcgervais/.ssh/id_rsa type -1 debug1: identity file /home/jcgervais/.ssh/id_dsa type -1 debug1: Remote protocol version 1.99, remote software version OpenSSH_4.0 debug1: match: OpenSSH_4.0 pat OpenSSH* debug1: Enabling compatibility mode for protocol 2.0 debug1: Local version string SSH-2.0-OpenSSH_4.0 debug1: SSH2_MSG_KEXINIT sent debug1: SSH2_MSG_KEXINIT received debug1: kex: server->client aes128-cbc hmac-md5 none debug1: kex: client->server aes128-cbc hmac-md5 none debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP debug1: SSH2_MSG_KEX_DH_GEX_INIT sent debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY debug1: Host 'neptune' is known and matches the RSA host key. debug1: Found key in /home/jcgervais/.ssh/known_hosts:12 debug1: ssh_rsa_verify: signature correct debug1: SSH2_MSG_NEWKEYS sent debug1: expecting SSH2_MSG_NEWKEYS debug1: SSH2_MSG_NEWKEYS received debug1: SSH2_MSG_SERVICE_REQUEST sent debug1: SSH2_MSG_SERVICE_ACCEPT received debug1: Authentications that can continue: publickey,password,keyboard-interacti ve debug1: Next authentication method: publickey debug1: Trying private key: /home/jcgervais/.ssh/identity debug1: Trying private key: /home/jcgervais/.ssh/id_rsa debug1: Trying private key: /home/jcgervais/.ssh/id_dsa debug1: Next authentication method: keyboard-interactive debug1: Authentications that can continue: publickey,password,keyboard-interacti ve debug1: Next authentication method: password jcgervais@neptune's password: debug1: Authentication succeeded (password). debug1: channel 0: new [client-session] debug1: Entering interactive session. debug1: Requesting X11 forwarding with authentication spoofing. Last login: Wed May 25 11:10:32 2005 from pluto Fanfare!!! You are successfully logged in to this server!!! basename: invalid option -- b Try `basename --help' for more information. -bash: [: =: unary operator expected jcgervais@neptune ~ $ On Wed, 2005-05-25 at 17:14 +0200, Alexander Gottwald wrote: > On Wed, 25 May 2005, Jean-Claude Gervais wrote: > > > Thanks for trying, but it gives the same result. > > > > Maybe if I ask the question in a different way? Someone here MUST know > > this - > > > > How do you configure a Windows machine to receive ssh connections (done) > > and also run x applications and send the display back to the ssh client? > > > > Is there a how-to for this? I realize it is pretty specific to Cygwin/X > > Setting up the X11 tunnel is a bit complicated as sshd must create an xauth > cookie and ad it to ~/.Xauthorities. If this fails (either because xauth > was not found or some dll is not available or the like) x11 forwarding > will most likely be disabled. > > Maybe ssh -v -v -v wil give you a clue what is happening. > > bye > ago From boaz@hishome.net Wed May 25 15:29:00 2005 From: boaz@hishome.net (Boaz Harrosh) Date: Wed, 25 May 2005 15:29:00 -0000 Subject: sshd and X In-Reply-To: References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> Message-ID: <4294A850.5080305@hishome.net> Alexander Gottwald wrote: >Maybe ssh -v -v -v wil give you a clue what is happening. > > > Right!! try running sshd in a consul in the foreground. (Check what switch makes it run in the foreground (-d?)) Than see what prints you have. If this works it is not the end. SYSTEM user is different than the foreground user, sshd is very picky about permissions been to low or to high. From jc.gervais@videotron.ca Wed May 25 16:31:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Wed, 25 May 2005 16:31:00 -0000 Subject: sshd and X In-Reply-To: <1117034608.2758.66.camel@mercury> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> <1117034608.2758.66.camel@mercury> Message-ID: <1117038651.2758.69.camel@mercury> There is no trace after the X11 forwarding request. Should there be? If there should be, what does this tell us? On Wed, 2005-05-25 at 11:23 -0400, Jean-Claude Gervais wrote: > debug1: Entering interactive session. > debug1: Requesting X11 forwarding with authentication spoofing. From pechtcha@cs.nyu.edu Wed May 25 16:37:00 2005 From: pechtcha@cs.nyu.edu (Igor Pechtchanski) Date: Wed, 25 May 2005 16:37:00 -0000 Subject: sshd and X In-Reply-To: <4294A850.5080305@hishome.net> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> <4294A850.5080305@hishome.net> Message-ID: On Wed, 25 May 2005, Boaz Harrosh wrote: > Alexander Gottwald wrote: > > > Maybe ssh -v -v -v wil give you a clue what is happening. > > Right!! try running sshd in a consul in the foreground. (Check what switch > makes it run in the foreground (-d?)) Both -D and -d do (Cygwin's ssh-host-config uses the -D option for the service). -d is much more verbose (into the system log, which by default is the Windows Event Log), and will only accept one connection. > Than see what prints you have. > If this works it is not the end. SYSTEM user is different than the > foreground user, sshd is very picky about permissions been to low or to > high. You can run sshd from a SYSTEM-owned shell (Google for "system owned shell shortcut"). Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha@cs.nyu.edu ZZZzz /,`.-'`' -. ;-;;,_ igor@watson.ibm.com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "The Sun will pass between the Earth and the Moon tonight for a total Lunar eclipse..." -- WCBS Radio Newsbrief, Oct 27 2004, 12:01 pm EDT From lukrez@gmx.at Wed May 25 17:32:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Wed, 25 May 2005 17:32:00 -0000 Subject: `make install' of glib fails (was: make of glib-2.6.4 fails) References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: Franz Haeuslschmid writes: > Franz Haeuslschmid writes: [... `configure' and `make' problem caused by missing library] > It turned out, that I had to install `gtk-doc'. After having managed to actually make the latest version of glib, `make install' fails and spits out an error message that I don't understand (excuse the mass of lines): haeuslsc@pan /cygdrive/d/Src/glib-2.6.4/gobject $ make install make install-am make[1]: Entering directory `/cygdrive/d/Src/glib-2.6.4/gobject' make[2]: Entering directory `/cygdrive/d/Src/glib-2.6.4/gobject' test -z "/usr/local/lib" || mkdir -p -- "/usr/local/lib" /bin/bash ../libtool --mode=install /usr/bin/install -c 'libgobject-2.0.la' '/usr/local/lib/libgobject-2.0.la' libtool: install: warning: relinking `libgobject-2.0.la' (cd /cygdrive/d/Src/glib-2.6.4/gobject; /bin/bash ../libtool --tag=CC --mode=relink gcc -g -O2 -Wall -o libgobject-2.0.la -rpath /usr/local/lib -version-info 600:4:600 -export-dynamic -no-undefined -export-symbols-regex "^[^_].*" gboxed.lo gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo gvaluetypes.lo ../glib/libglib-2.0.la -lintl ) generating symbol list for `libgobject-2.0.la' /usr/bin/nm -B .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(_\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' | /usr/bin/sed -e '/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/' | /usr/bin/sed -e '/^[AITW] /s/.* //' | sort | uniq > .libs/libgobject-2.0.exp grep -E -e "^[^_].*" ".libs/libgobject-2.0.exp" > ".libs/libgobject-2.0.expT" mv -f ".libs/libgobject-2.0.expT" ".libs/libgobject-2.0.exp" if test "x`/usr/bin/sed 1q .libs/libgobject-2.0.exp`" = xEXPORTS; then cp .libs/libgobject-2.0.exp .libs/cyggobject-2.0-0.dll.def; else echo EXPORTS > .libs/cyggobject-2.0-0.dll.def; cat .libs/libgobject-2.0.exp >> .libs/cyggobject-2.0-0.dll.def; fi gcc -shared .libs/cyggobject-2.0-0.dll.def .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o -L/usr/lib -L/usr/local/lib -lglib-2.0 -lintl -o .libs/cyggobject-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libgobject-2.0.dll.a Creating library file: .libs/libgobject-2.0.dll.a .libs/gboxed.o(.text+0x1af): In function `g_boxed_type_init': /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:136: undefined reference to `_g_assert_warning' .libs/gboxed.o(.text+0x1d3):/cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:137: undefined reference to `_g_return_if_fail_warning' .libs/gboxed.o(.text+0x576): In function `g_boxed_type_register_static': /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:326: undefined reference to `_g_return_if_fail_warning' .libs/gboxed.o(.text+0x65c): In function `g_boxed_copy': /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:351: undefined reference to `_g_return_if_fail_warning' .libs/gboxed.o(.text+0x7dc): In function `g_boxed_free': /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:408: undefined reference to `_g_return_if_fail_warning' .libs/gboxed.o(.text+0x90c): In function `g_value_get_boxed': /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:443: undefined reference to `_g_return_if_fail_warning' .libs/gboxed.o(.text+0x992):/cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:452: more undefined references to `_g_return_if_fail_warning' follow .libs/genums.o(.text+0xa8): In function `g_enum_types_init': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:91: undefined reference to `_g_assert_warning' .libs/genums.o(.text+0x21d): In function `g_enum_register_static': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:167: undefined reference to `_g_return_if_fail_warning' .libs/genums.o(.text+0x2ad): In function `g_flags_register_static': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:195: undefined reference to `_g_return_if_fail_warning' .libs/genums.o(.text+0x48a): In function `g_enum_class_init': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:255: undefined reference to `_g_return_if_fail_warning' .libs/genums.o(.text+0x513): In function `g_flags_class_init': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:277: undefined reference to `_g_return_if_fail_warning' .libs/genums.o(.text+0x5b1): In function `g_enum_get_value_by_name': /cygdrive/d/Src/glib-2.6.4/gobject/genums.c:290: undefined reference to `_g_return_if_fail_warning' .libs/genums.o(.text+0x665):/cygdrive/d/Src/glib-2.6.4/gobject/genums.c:309: more undefined references to `_g_return_if_fail_warning' follow .libs/gobject.o(.text+0xd4): In function `g_object_type_init': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:185: undefined reference to `_g_assert_warning' .libs/gobject.o(.text+0x59b): In function `g_object_interface_install_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:328: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x6d0): In function `g_object_class_find_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:356: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x71b): In function `g_object_interface_find_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:368: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x8d1): In function `g_object_class_override_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:421: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x97b): In function `g_object_class_list_properties': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:444: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x9cb):/cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:454: more undefined references to `_g_return_if_fail_warning' follow .libs/gobject.o(.text+0x1db9): In function `g_object_new_valist': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:985: undefined reference to `_g_assert_warning' .libs/gobject.o(.text+0x24aa): In function `g_object_set_valist': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1097: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x24dc):/cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1097: undefined reference to `_g_assert_warning' .libs/gobject.o(.text+0x276a): In function `g_object_get_valist': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1164: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x279c):/cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1164: undefined reference to `_g_assert_warning' .libs/gobject.o(.text+0x280a): In function `g_object_set': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1213: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x287a): In function `g_object_get': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1228: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x28ee): In function `g_object_set_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1240: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x2c1e): In function `g_object_get_property': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1278: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x312c): In function `g_object_connect': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1351: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x314f):/cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1351: more undefined references to `_g_return_if_fail_warning' follow .libs/gobject.o(.text+0x43f1): In function `object_remove_closure': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1914: undefined reference to `_g_assert_warning' .libs/gobject.o(.text+0x44e1): In function `g_object_watch_closure': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1948: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x4644): In function `g_closure_new_object': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:1978: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x4711): In function `g_cclosure_new_object': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:2000: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x47d1): In function `g_cclosure_new_object_swap': /cygdrive/d/Src/glib-2.6.4/gobject/gobject.c:2016: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x486a): In function `g_object_notify_queue_freeze': /cygdrive/d/Src/glib-2.6.4/gobject/gobjectnotifyqueue.c:85: undefined reference to `_g_return_if_fail_warning' .libs/gobject.o(.text+0x49d0):/cygdrive/d/Src/glib-2.6.4/gobject/gobjectnotifyqueue.c:123: more undefined references to `_g_return_if_fail_warning' follow .libs/gparam.o(.text+0x67): In function `g_param_type_init': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:108: undefined reference to `_g_assert_warning' .libs/gparam.o(.text+0x2f1): In function `g_param_spec_ref': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:177: undefined reference to `_g_return_if_fail_warning' .libs/gparam.o(.text+0x471): In function `g_param_spec_unref': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:203: undefined reference to `_g_return_if_fail_warning' .libs/gparam.o(.text+0x57f): In function `g_param_spec_sink': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:235: undefined reference to `_g_return_if_fail_warning' .libs/gparam.o(.text+0x6da): In function `g_param_spec_get_name': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:243: undefined reference to `_g_return_if_fail_warning' .libs/gparam.o(.text+0x762): In function `g_param_spec_get_nick': /cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:261: undefined reference to `_g_return_if_fail_warning' .libs/gparam.o(.text+0x7ee):/cygdrive/d/Src/glib-2.6.4/gobject/gparam.c:280: more undefined references to `_g_return_if_fail_warning' follow .libs/gparamspecs.o(.text+0x12c3): In function `g_param_spec_types_init': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1047: undefined reference to `_g_assert_warning' .libs/gparamspecs.o(.text+0x186e): In function `g_param_spec_char': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1427: undefined reference to `_g_return_if_fail_warning' .libs/gparamspecs.o(.text+0x18fe): In function `g_param_spec_uchar': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1453: undefined reference to `_g_return_if_fail_warning' .libs/gparamspecs.o(.text+0x197b): In function `g_param_spec_boolean': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1477: undefined reference to `_g_return_if_fail_warning' .libs/gparamspecs.o(.text+0x19fa): In function `g_param_spec_int': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1501: undefined reference to `_g_return_if_fail_warning' .libs/gparamspecs.o(.text+0x1a8a): In function `g_param_spec_uint': /cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1527: undefined reference to `_g_return_if_fail_warning' .libs/gparamspecs.o(.text+0x1b1a):/cygdrive/d/Src/glib-2.6.4/gobject/gparamspecs.c:1553: more undefined references to `_g_return_if_fail_warning' follow .libs/gsignal.o(.text+0x44c): In function `handler_insert': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:641: undefined reference to `_g_assert_warning' .libs/gsignal.o(.text+0x5da):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:371: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x77b): In function `g_signal_init': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:774: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0xe55): In function `g_signal_add_emission_hook': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:882: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0xffa): In function `g_signal_remove_emission_hook': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:926: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x119b): In function `g_signal_parse_name': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:284: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x1431):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1046: more undefined references to `_g_return_if_fail_warning' follow .libs/gsignal.o(.text+0x2b59): In function `g_signal_chain_from_overridden': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1540: undefined reference to `_g_assert_warning' .libs/gsignal.o(.text+0x2c69):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:730: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x2dc0): In function `g_signal_get_invocation_hint': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:730: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x30b5): In function `g_signal_connect_closure_by_id': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1621: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x3411): In function `g_signal_connect_closure': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1667: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x37a1): In function `g_signal_connect_data': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1719: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x397a):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:1745: more undefined references to `_g_return_if_fail_warning' follow .libs/gsignal.o(.text+0x5115): In function `g_signal_emit_valist': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:2268: undefined reference to `_g_assert_warning' .libs/gsignal.o(.text+0x537a):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:2188: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x5521): In function `g_signal_emit_by_name': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:2319: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x633b): In function `signal_emit_unlocked_R': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:702: undefined reference to `_g_assert_warning' .libs/gsignal.o(.text+0x7364): In function `handler_unref_R': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:609: undefined reference to `_g_assert_warning' .libs/gsignal.o(.text+0x7551):/cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:597: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x779d): In function `g_bsearch_array_grow': /cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:216: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0xb27): In function `g_signal_stop_emission': /cygdrive/d/Src/glib-2.6.4/gobject/gsignal.c:816: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x63f0): In function `g_cclosure_marshal_VOID__VOID': /cygdrive/d/Src/glib-2.6.4/gobject/gmarshal.c:63: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x6480): In function `g_cclosure_marshal_VOID__BOOLEAN': /cygdrive/d/Src/glib-2.6.4/gobject/gmarshal.c:97: undefined reference to `_g_return_if_fail_warning' .libs/gsignal.o(.text+0x6520):/cygdrive/d/Src/glib-2.6.4/gobject/gmarshal.c:132: more undefined references to `_g_return_if_fail_warning' follow .libs/gtype.o(.text+0x31c): In function `type_node_any_new_W': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:340: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x3fc): In function `type_node_fundamental_new_W': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:444: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x47e): In function `type_node_new_W': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:464: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0xb27): In function `check_type_info_I': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:738: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x1381): In function `type_data_make_W': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1047: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x17be):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1088: more undefined references to `_g_assert_warning' follow .libs/gtype.o(.text+0x1e5c): In function `g_type_interface_add_prerequisite': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1261: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x21d3): In function `g_type_interface_prerequisites': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1335: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x237d): In function `type_iface_peek_holder_L': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1381: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x2434): In function `type_iface_retrieve_holder_info_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1400: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x2656): In function `type_iface_blow_holder_info_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1428: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x2ae7): In function `g_type_create_instance': /cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:296: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x2b7e):/cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:298: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x2c3c):/cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:260: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x2ce6): In function `g_type_free_instance': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1607: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x2efc): In function `type_iface_ensure_dflt_vtable_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1657: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x2f9c): In function `type_iface_vtable_base_init_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1692: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x31dc): In function `type_iface_vtable_iface_init_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1735: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x3390): In function `type_iface_vtable_finalize_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1774: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x34f5): In function `type_class_init_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1806: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x393b):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1951: more undefined references to `_g_assert_warning' follow .libs/gtype.o(.text+0x3eca): In function `type_data_last_unref_Wm': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2009: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x3f10):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2009: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x3faa): In function `g_type_add_class_cache_func': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2112: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x40bc): In function `g_type_remove_class_cache_func': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2135: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x415a): In function `g_type_add_interface_check': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2158: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x426c): In function `g_type_remove_interface_check': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2181: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x4441): In function `g_type_register_fundamental': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2222: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x4621):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2264: more undefined references to `_g_return_if_fail_warning' follow .libs/gtype.o(.text+0x4ce6): In function `g_type_class_unref': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1094: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x4d5b):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1107: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x4e41): In function `g_type_class_unref_uncached': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1094: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x4ebb):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1107: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x508d): In function `g_type_class_peek_parent': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2505: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x51e9): In function `g_type_interface_peek': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2536: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x535f): In function `g_type_interface_peek_parent': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2568: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x559d): In function `g_type_default_interface_unref': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1094: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x5619):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:1107: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x575a): In function `g_type_from_name': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2671: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x5eba): In function `g_type_get_qdata': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2907: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x6125): In function `type_add_flags_W': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2978: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x6219): In function `g_type_query': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:3004: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x6399):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:3066: more undefined references to `_g_return_if_fail_warning' follow .libs/gtype.o(.text+0x7062): In function `g_type_init_with_debug_flags': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:3431: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x72a0): In function `g_type_instance_get_private': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:3533: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x7435):/cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:3570: undefined reference to `_g_assert_warning' .libs/gtype.o(.text+0x7558): In function `g_bsearch_array_remove': /cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:270: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x79ad): In function `g_bsearch_array_grow': /cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:216: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x483f): In function `g_type_add_interface_static': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2320: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x494f): In function `g_type_add_interface_dynamic': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2343: undefined reference to `_g_return_if_fail_warning' .libs/gtype.o(.text+0x602b): In function `g_type_set_qdata': /cygdrive/d/Src/glib-2.6.4/gobject/gtype.c:2965: undefined reference to `_g_return_if_fail_warning' .libs/gtypemodule.o(.text+0x1ca):/cygdrive/d/Src/glib-2.6.4/gobject/gtypemodule.c:142: more undefined references to `_g_return_if_fail_warning' follow .libs/gtypemodule.o(.text+0x8a5): In function `g_type_module_add_interface': /cygdrive/d/Src/glib-2.6.4/gobject/gtypemodule.c:385: undefined reference to `_g_assert_warning' .libs/gtypemodule.o(.text+0x961): In function `g_type_module_register_enum': /cygdrive/d/Src/glib-2.6.4/gobject/gtypemodule.c:408: undefined reference to `_g_return_if_fail_warning' .libs/gtypemodule.o(.text+0xa31): In function `g_type_module_register_flags': /cygdrive/d/Src/glib-2.6.4/gobject/gtypemodule.c:426: undefined reference to `_g_return_if_fail_warning' .libs/gtypemodule.o(.text+0x866): In function `g_type_module_add_interface': /cygdrive/d/Src/glib-2.6.4/gobject/gtypemodule.c:385: undefined reference to `_g_return_if_fail_warning' .libs/gtypeplugin.o(.text+0xaa): In function `g_type_plugin_use': /cygdrive/d/Src/glib-2.6.4/gobject/gtypeplugin.c:53: undefined reference to `_g_return_if_fail_warning' .libs/gtypeplugin.o(.text+0x11a): In function `g_type_plugin_unuse': /cygdrive/d/Src/glib-2.6.4/gobject/gtypeplugin.c:64: undefined reference to `_g_return_if_fail_warning' .libs/gtypeplugin.o(.text+0x1cb):/cygdrive/d/Src/glib-2.6.4/gobject/gtypeplugin.c:83: more undefined references to `_g_return_if_fail_warning' follow .libs/gvalue.o(.text+0x45b): In function `g_value_peek_pointer': /cygdrive/d/Src/glib-2.6.4/gobject/gvalue.c:182: undefined reference to `_g_assert_warning' .libs/gvalue.o(.text+0x4bc): In function `g_value_set_instance': /cygdrive/d/Src/glib-2.6.4/gobject/gvalue.c:200: undefined reference to `_g_return_if_fail_warning' .libs/gvalue.o(.text+0x7da): In function `g_value_register_transform_func': /cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:260: undefined reference to `_g_return_if_fail_warning' .libs/gvalue.o(.text+0x81b): In function `g_value_type_transformable': /cygdrive/d/Src/glib-2.6.4/gobject/gvalue.c:311: undefined reference to `_g_return_if_fail_warning' .libs/gvalue.o(.text+0x8bb): In function `g_value_type_compatible': /cygdrive/d/Src/glib-2.6.4/gobject/gvalue.c:322: undefined reference to `_g_return_if_fail_warning' .libs/gvalue.o(.text+0x95b): In function `g_value_transform': /cygdrive/d/Src/glib-2.6.4/gobject/gvalue.c:335: undefined reference to `_g_return_if_fail_warning' .libs/gvalue.o(.text+0xc5d):/cygdrive/d/Src/glib-2.6.4/gobject/../glib/gbsearcharray.h:216: more undefined references to `_g_return_if_fail_warning' follow .libs/gvaluetypes.o(.text+0x561): In function `g_value_types_init': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:393: undefined reference to `_g_assert_warning' .libs/gvaluetypes.o(.text+0x93a): In function `g_value_set_char': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:558: undefined reference to `_g_return_if_fail_warning' .libs/gvaluetypes.o(.text+0x98f): In function `g_value_get_char': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:566: undefined reference to `_g_return_if_fail_warning' .libs/gvaluetypes.o(.text+0x9fa): In function `g_value_set_uchar': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:575: undefined reference to `_g_return_if_fail_warning' .libs/gvaluetypes.o(.text+0xa4f): In function `g_value_get_uchar': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:583: undefined reference to `_g_return_if_fail_warning' .libs/gvaluetypes.o(.text+0xaba): In function `g_value_set_boolean': /cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:592: undefined reference to `_g_return_if_fail_warning' .libs/gvaluetypes.o(.text+0xb0e):/cygdrive/d/Src/glib-2.6.4/gobject/gvaluetypes.c:600: more undefined references to `_g_return_if_fail_warning' follow collect2: ld returned 1 exit status libtool: install: error: relink `libgobject-2.0.la' with the above command before installing it make[2]: *** [install-libLTLIBRARIES] Error 1 make[2]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/gobject' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/gobject' make: *** [install] Error 2 Once again: any ideas? Franz. From jicman@cinops.xerox.com Wed May 25 20:31:00 2005 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Wed, 25 May 2005 20:31:00 -0000 Subject: Good and light x browser for cygwin? Message-ID: <027001c56168$7a59b680$2820790d@stso.mc.xerox.com> Greetings! Does cygwin comes with a light X browser? If not, is there one that I can quickly build with cygwin? thanks, jos?? From jc.gervais@videotron.ca Thu May 26 03:45:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Thu, 26 May 2005 03:45:00 -0000 Subject: sshd and X In-Reply-To: References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> <4294A850.5080305@hishome.net> Message-ID: <1117079142.2758.90.camel@mercury> OK, the machine hadn't rebooted, that was causing a problem. After reboot, the login responses have changed: error in locking authority file /cygdrive/y/jcgervais/.Xauthority me@pluto ~ $ ssh -Y neptune me@neptune's password: Last login: Wed May 25 23:37:00 2005 from pluto Fanfare!!! You are successfully logged in to this server!!! /usr/X11R6/bin/xauth: error in locking authority file /cygdrive/y/me/.Xauthority basename: invalid option -- b Try `basename --help' for more information. -bash: [: =: unary operator expected Running an application gives a different error now also. me@neptune ~ $ xcalc X11 connection rejected because of wrong authentication. X connection to localhost:10.0 broken (explicit kill or server shutdown). On Wed, 2005-05-25 at 12:37 -0400, Igor Pechtchanski wrote: > On Wed, 25 May 2005, Boaz Harrosh wrote: > > > Alexander Gottwald wrote: > > > > > Maybe ssh -v -v -v wil give you a clue what is happening. > > > > Right!! try running sshd in a consul in the foreground. (Check what switch > > makes it run in the foreground (-d?)) > > Both -D and -d do (Cygwin's ssh-host-config uses the -D option for the > service). -d is much more verbose (into the system log, which by default > is the Windows Event Log), and will only accept one connection. > > > Than see what prints you have. > > If this works it is not the end. SYSTEM user is different than the > > foreground user, sshd is very picky about permissions been to low or to > > high. > > You can run sshd from a SYSTEM-owned shell (Google for "system owned shell > shortcut"). > Igor From oceanare@pacific.net.sg Thu May 26 04:41:00 2005 From: oceanare@pacific.net.sg (Erich Dollansky) Date: Thu, 26 May 2005 04:41:00 -0000 Subject: sshd and X In-Reply-To: <1117079142.2758.90.camel@mercury> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> <4294A850.5080305@hishome.net> <1117079142.2758.90.camel@mercury> Message-ID: <42955353.9090303@pacific.net.sg> Hi, Jean-Claude Gervais wrote: > > Running an application gives a different error now also. > > me@neptune ~ > $ xcalc > X11 connection rejected because of wrong authentication. > X connection to localhost:10.0 broken (explicit kill or server > shutdown). > you need to run xauth + at your machine plus you have to set the display environment variable on the other machine. Check the handbook for the concequenses of above mentioned settings. Erich From gerrit@familiehaase.de Thu May 26 07:09:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Thu, 26 May 2005 07:09:00 -0000 Subject: make of glib-2.6.4 fails In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: <429575F5.3010202@familiehaase.de> Franz Haeuslschmid wrote: > "Gerrit P. Haase" writes: > > >>jose isaias cabrera wrote: >> >> >>>Greetings! >>>I am trying to build glib 2.6.4, since a package that I want to build >>>requires it. the configure part went ok without errors. > > > I'm trying to accomplish the same thing for an up-to-date version > of cygwin. > > [...] > > The build seems to fail at the same command: > > gcc -shared .libs/cygglib-2.0-0.dll.def .libs/garray.o .libs/gasyncqueue.o .libs/gatomic.o .libs/gbacktrace.o .libs/gcache.o .libs/gcompletion.o .libs/gconvert.o .libs/gdataset.o .libs/gdate.o .libs/gdir.o .libs/gerror.o .libs/gfileutils.o .libs/ghash.o .libs/ghook.o .libs/giochannel.o .libs/gkeyfile.o .libs/glist.o .libs/gmain.o .libs/gmarkup.o .libs/gmem.o .libs/gmessages.o .libs/gnode.o .libs/goption.o .libs/gpattern.o .libs/gprimes.o .libs/gqsort.o .libs/gqueue.o .libs/grel.o .libs/grand.o .libs/gscanner.o .libs/gshell.o .libs/gslist.o .libs/gstdio.o .libs/gstrfuncs.o .libs/gstring.o .libs/gthread.o .libs/gthreadpool.o .libs/gtimer.o .libs/gtree.o .libs/guniprop.o .libs/gutf8.o .libs/gunibreak.o .libs/gunicollate.o .libs/gunidecomp.o ..libs/gutils.o .libs/gprintf.o .libs/giounix.o .libs/gspawn.o .libs/gwin32.o -Wl,--whole-archive libcharset/.libs/libcharset.a -Wl,--no-whole-archive -L/usr/lib /usr/lib/libiconv.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a -o .li bs/cygglib-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libglib-2.0.dll.a > Cannot export R: symbol not defined > Cannot export _g_ascii_table: symbol not defined > Cannot export _g_utf8_skip: symbol not defined > Cannot export _glib_binary_age: symbol not defined > Cannot export _glib_interface_age: symbol not defined > Cannot export _glib_major_version: symbol not defined > Cannot export _glib_micro_version: symbol not defined > Cannot export _glib_minor_version: symbol not defined > Creating library file: .libs/libglib-2.0.dll.a > collect2: ld returned 1 exit status > make[2]: *** [libglib-2.0.la] Error 1 > make[2]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/glib' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/glib' > make: *** [all] Error 2 > > >>This was a libtool bug, which version of ltmain.sh is included in the >>sources? Try to upgrade the source tree with: >> >> autoreconf --install --force --verbose >> >>after you have the latest libtool-devel package installed (the latest >>release 1.5.10 should be ok). > > > In the glib source directory, `./libtool --version' gives > > ltmain.sh (GNU libtool) 1.5.6 (1.1220.2.95 2004/04/11 05:50:42) > > and `libtool --version' shows > > ltmain.sh (GNU libtool) 1.5.10 (1.1220.2.131 2004/09/19 > 12:46:56) > > I don't know, why the versions differ... however, using > `autoreconf' as suggested earlier fails: The old eule: Never change a running system... the developer don't use Cygwin, unfortunately;) > haeuslsc@pan /cygdrive/d/Src/glib-2.6.4 > $ autoreconf --install --force --verbose > autoreconf: Entering directory `.' > autoreconf: configure.in: not using Gettext > autoreconf: running: aclocal --force > /usr/share/aclocal/freetype2.m4:7: warning: underquoted definition of AC_CHECK_FT2 > run info '(automake)Extending aclocal' > or see http://sources.redhat.com/automake/automake.html#Extending-aclocal > autoreconf: configure.in: tracing > configure.in:10: warning: file `acglib.m4' included several times > configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times > configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times > autoreconf: running: libtoolize --copy --force > /usr/share/aclocal/freetype2.m4:7: warning: underquoted definition of AC_CHECK_FT2 > run info '(automake)Extending aclocal' > or see http://sources.redhat.com/automake/automake.html#Extending-aclocal > autoreconf: running: /usr/autotool/devel/bin/autoconf --force > configure.in:10: warning: file `acglib.m4' included several times > configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times > configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times > autoreconf: running: /usr/autotool/devel/bin/autoheader --force > configure.in:10: warning: file `acglib.m4' included several times > configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times > configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times > autoreconf: running: automake --add-missing --copy --force-missing > configure.in:10: warning: file `acglib.m4' included several times > configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times > configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times > gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here > gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL > docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here > autoreconf: automake failed with exit status: 1 > > After that, `./configure' fails with: > .... > checking value of POLLIN... 1 > checking value of POLLOUT... 4 > checking value of POLLPRI... 2 > checking value of POLLERR... 8 > checking value of POLLHUP... 16 > checking value of POLLNVAL... 32 > checking for EILSEQ... yes > ../configure: line 38486: syntax error near unexpected token `1.0' > ../configure: line 38486: `GTK_DOC_CHECK(1.0)' This macro is not expanded, install all relevant GNOME packages. In this case you're missing gtk-doc. After installing it the macro should be expanded by autoconf and configure should'nt fail anymore. Gerrit -- =^..^= From gerrit@familiehaase.de Thu May 26 07:12:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Thu, 26 May 2005 07:12:00 -0000 Subject: make of glib-2.6.4 fails In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: <429576C0.3080501@familiehaase.de> Franz Haeuslschmid wrote: > Franz Haeuslschmid writes: > > >>"Gerrit P. Haase" writes: > > > [...] > > >>>This was a libtool bug, which version of ltmain.sh is included in the >>>sources? Try to upgrade the source tree with: >>> >>> autoreconf --install --force --verbose >>> >>>after you have the latest libtool-devel package installed (the latest >>>release 1.5.10 should be ok). > > > [... calling autoreconf caused some problems that detained > ./configure and ./make from working correctly] > > >>gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL >>docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here >>gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL >>docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here >>gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL >>docs/reference/glib/Makefile.am:61: `gtk-doc.make' included from here >>gtk-doc.make:7: GTK_DOC_USE_LIBTOOL does not appear in AM_CONDITIONAL >>docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here >>gtk-doc.make:44: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL >>docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here >>gtk-doc.make:135: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL >>docs/reference/gobject/Makefile.am:49: `gtk-doc.make' included from here >>autoreconf: automake failed with exit status: 1 > > > It turned out, that I had to install `gtk-doc'. Sorry, don't saw this message as I replied your earlier post. Is it working now? Gerrit -- =^..^= From gerrit@familiehaase.de Thu May 26 07:24:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Thu, 26 May 2005 07:24:00 -0000 Subject: Attention libtool maintainer: Re: `make install' of glib fails In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> Message-ID: <42957974.2080109@familiehaase.de> Franz Haeuslschmid wrote: > After having managed to actually make the latest version of glib, > `make install' fails and spits out an error message that I don't > understand (excuse the mass of lines): > > haeuslsc@pan /cygdrive/d/Src/glib-2.6.4/gobject > $ make install > > make install-am > make[1]: Entering directory `/cygdrive/d/Src/glib-2.6.4/gobject' > make[2]: Entering directory `/cygdrive/d/Src/glib-2.6.4/gobject' > test -z "/usr/local/lib" || mkdir -p -- "/usr/local/lib" > /bin/bash ../libtool --mode=install /usr/bin/install -c 'libgobject-2.0.la' '/usr/local/lib/libgobject-2.0.la' > libtool: install: warning: relinking `libgobject-2.0.la' > (cd /cygdrive/d/Src/glib-2.6.4/gobject; /bin/bash ../libtool --tag=CC --mode=relink gcc -g -O2 -Wall -o libgobject-2.0.la -rpath /usr/local/lib -version-info 600:4:600 -export-dynamic -no-undefined -export-symbols-regex "^[^_].*" gboxed.lo gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo gvaluetypes.lo ../glib/libglib-2.0.la -lintl ) > generating symbol list for `libgobject-2.0.la' > /usr/bin/nm -B .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(_\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' | /usr/bin/sed -e '/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/' | /usr/bin/sed -e '/^[AITW] /s/.* //' | sort | uniq > .libs/libgobject-2.0.exp > grep -E -e "^[^_].*" ".libs/libgobject-2.0.exp" > ".libs/libgobject-2.0.expT" > mv -f ".libs/libgobject-2.0.expT" ".libs/libgobject-2.0.exp" > if test "x`/usr/bin/sed 1q .libs/libgobject-2.0.exp`" = xEXPORTS; then cp .libs/libgobject-2.0.exp .libs/cyggobject-2.0-0.dll.def; else echo EXPORTS > .libs/cyggobject-2.0-0.dll.def; cat .libs/libgobject-2.0.exp >> .libs/cyggobject-2.0-0.dll.def; fi > gcc -shared .libs/cyggobject-2.0-0.dll.def .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o -L/usr/lib -L/usr/local/lib -lglib-2.0 -lintl -o .libs/cyggobject-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libgobject-2.0.dll.a > Creating library file: .libs/libgobject-2.0.dll.a > ..libs/gboxed.o(.text+0x1af): In function `g_boxed_type_init': > /cygdrive/d/Src/glib-2.6.4/gobject/gboxed.c:136: undefined reference to `_g_assert_warning' [...more undefined references...] > make: *** [install] Error 2 > > > Once again: any ideas? -> -L/usr/lib -L/usr/local/lib -lglib-2.0 You're linking against the old glib2 library, another libtool bug. I thought that this was fixed in the latest release? Again, which version of libtool are you using now? Is it the one from the Cygwin mirrors or do you have compiled your own version? Charles, wasn't that included in the 1.5 release branch? BTW, 1.5.18 is out: http://www.gnu.org/software/libtool/libtool.html Gerrit -- =^..^= From lukrez@gmx.at Thu May 26 11:26:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Thu, 26 May 2005 11:26:00 -0000 Subject: Attention libtool maintainer: Re: `make install' of glib fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <42957974.2080109@familiehaase.de> Message-ID: "Gerrit P. Haase" writes: > Franz Haeuslschmid wrote: > >> After having managed to actually make the latest version of glib, >> `make install' fails and spits out an error message that I don't >> understand (excuse the mass of lines): [... Output of make showing messages of undefined references ...] >> Once again: any ideas? > > > -> -L/usr/lib -L/usr/local/lib -lglib-2.0 I suppose you meant that I should place this into environment variable `LDFLAGS'. Did that, ran `./configure' once again and continued with `make'. Now it is `make' that fails again (in directory gobject): make all-am make[1]: Entering directory `/cygdrive/d/Src/glib-2.6.4/gobject' /bin/bash ../libtool --mode=link --tag=CC gcc -g -O2 -Wall -L/usr/lib -L/usr/local/lib -lglib-2.0 -o libgobject-2.0.la -rpath /usr/local/lib -version-info 600:4:600 -export-dynamic -no-undefined -export-symbols-regex "^[^_].*" gboxed.lo gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo gvaluetypes.lo ../glib/libglib-2.0.la -lintl rm -fr .libs/libgobject-2.0.dll.a .libs/libgobject-2.0.exp generating symbol list for `libgobject-2.0.la' /usr/bin/nm -B .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(_\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' | /usr/bin/sed -e '/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/' | /usr/bin/sed -e '/^[AITW] /s/.* //' | sort | uniq > .libs/libgobject-2.0.exp grep -E -e "^[^_].*" ".libs/libgobject-2.0.exp" > ".libs/libgobject-2.0.expT" mv -f ".libs/libgobject-2.0.expT" ".libs/libgobject-2.0.exp" if test "x`/usr/bin/sed 1q .libs/libgobject-2.0.exp`" = xEXPORTS; then cp .libs/libgobject-2.0.exp .libs/cyggobject-2.0-0.dll.def; else echo EXPORTS > .libs/cyggobject-2.0-0.dll.def; cat .libs/libgobject-2.0.exp >> .libs/cyggobject-2.0-0.dll.def; fi gcc -shared .libs/cyggobject-2.0-0.dll.def .libs/gboxed.o .libs/gclosure.o .libs/genums.o .libs/gobject.o .libs/gparam.o .libs/gparamspecs.o .libs/gsignal.o .libs/gsourceclosure.o .libs/gtype.o .libs/gtypemodule.o .libs/gtypeplugin.o .libs/gvalue.o .libs/gvaluearray.o .libs/gvaluetransform.o .libs/gvaluetypes.o -L/usr/lib -L/usr/local/lib /usr/lib/libglib-2.0.dll.a ../glib/.libs/libglib-2.0.dll.a /usr/lib/libintl.dll.a -o .libs/cyggobject-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libgobject-2.0.dll.a Creating library file: .libs/libgobject-2.0.dll.a collect2: ld returned 1 exit status make[1]: *** [libgobject-2.0.la] Error 1 make[1]: Leaving directory `/cygdrive/d/Src/glib-2.6.4/gobject' make: *** [all] Error 2 This is the chain of commands that were executed: $ tar xvjf glib-2.6.4.tar.bz2 $ cd glib-2.6.4 $ export LDFLAGS="-L/usr/lib -L/usr/local/lib -lglib-2.0" $ autoreconf --install --force --verbose $ ./configure $ make > You're linking against the old glib2 library, another libtool bug. > I thought that this was fixed in the latest release? Again, which > version of libtool are you using now? Is it the one from the Cygwin > mirrors or do you have compiled your own version? Charles, wasn't > that included in the 1.5 release branch? > > BTW, 1.5.18 is out: http://www.gnu.org/software/libtool/libtool.html I downloaded and built that version. `libtool --version' now gives haeuslsc@pan ~/Src/glib-2.6.4 $ libtool --version ltmain.sh (GNU libtool) 1.5.18 (1.1220.2.245 2005/05/16 08:55:27) However, `autoreconf' still picks up the version that is configured by the cygwin installer: haeuslsc@pan ~/Src/glib-2.6.4 $ ./libtool --version ltmain.sh (GNU libtool) 1.5.10 (1.1220.2.131 2004/09/19 12:46:56) When I remove the libtool package using cygwin's `setup.exe', I can't use autoreconf: haeuslsc@pan ~/Src/glib-2.6.4 $ autoreconf --install --force --verbose autoreconf: Entering directory `.' autoreconf: configure.in: not using Gettext autoreconf: running: aclocal --force /usr/share/aclocal/freetype2.m4:7: warning: underquoted definition of AC_CHECK_FT2 run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/cppunit.m4:4: warning: underquoted definition of AM_PATH_CPPUNIT aclocal:configure.in:456: warning: macro `AM_DISABLE_STATIC' not found in library aclocal:configure.in:458: warning: macro `AM_PROG_LIBTOOL' not found in library autoreconf: configure.in: tracing configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times autoreconf: configure.in: not using Libtool autoreconf: running: /usr/autotool/devel/bin/autoconf --force configure.in:10: warning: file `acglib.m4' included several times configure.in:11: warning: file `glib/libcharset/codeset.m4' included several times configure.in:12: warning: file `glib/libcharset/glibc21.m4' included several times configure.in:456: error: possibly undefined macro: AM_DISABLE_STATIC If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.in:457: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL configure.in:458: error: possibly undefined macro: AM_PROG_LIBTOOL autoreconf: /usr/autotool/devel/bin/autoconf failed with exit status: 1 I'm still perplexed. Franz. From brian.willis@noaa.gov Thu May 26 12:23:00 2005 From: brian.willis@noaa.gov (Brian Willis) Date: Thu, 26 May 2005 12:23:00 -0000 Subject: Double click speed in xwin In-Reply-To: <429493E5.3070402@noaa.gov> References: <429489BA.5060200@noaa.gov> <429493E5.3070402@noaa.gov> Message-ID: <4295BFBA.2050503@noaa.gov> Brian Willis wrote: > The only way I know the change the speed is in windowmaker. In the > config tool is a double click setting. This may only be a windowmaker > config setting though. Does that set the double click speed for > windowmaker or for the xserver? > > Alexander Gottwald wrote: > >> On Wed, 25 May 2005, Brian Willis wrote: >> >> >>> I have a user who is using Cygwin in multiwin mode and connecting >>> over ssh to a Linux box. The app he is running is looking for a >>> double click, but he can't click fast enough for it. Is there a way >>> to adjust the double click speed? Is that a setting of Cygwin or the >>> xserver on the remote side? >> >> >> >> As far as i know there is no doubleclick event in X11. If the >> application requires this, then it's up to the application to check >> for double clicks >> and only the application could change the timing. >> >> bye >> ago > > Would Window Maker be considered a program and that's why you can change the double click speed? When running in multiwin mode, isn't that acting as a window manager? Is there a config file for the multiwin? -------------- next part -------------- A non-text attachment was scrubbed... Name: brian.willis.vcf Type: text/x-vcard Size: 148 bytes Desc: not available URL: From alexander.gottwald@s1999.tu-chemnitz.de Thu May 26 12:53:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 26 May 2005 12:53:00 -0000 Subject: Double click speed in xwin In-Reply-To: <4295BFBA.2050503@noaa.gov> References: <429489BA.5060200@noaa.gov> <429493E5.3070402@noaa.gov> <4295BFBA.2050503@noaa.gov> Message-ID: On Thu, 26 May 2005, Brian Willis wrote: > Would Window Maker be considered a program and that's why you can change > the double click speed? Yes. And most likely it would only affect windowmaker itself and some programs which use this setting too (wmaker was from GNUStep environment, right?) > When running in multiwin mode, isn't that > acting as a window manager? Is there a config file for the multiwin? Yes. But in X there is no defined doubleclick behaviour and there is no way to configure it for all X clients. But KDE and Gnome may have a setting which affects KDE and Gnome programs. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jc.gervais@videotron.ca Thu May 26 13:18:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Thu, 26 May 2005 13:18:00 -0000 Subject: sshd and X In-Reply-To: <42955353.9090303@pacific.net.sg> References: <1117022620.429.35.camel@mercury> <1117024170.2759.38.camel@mercury> <1117026143.430.45.camel@mercury> <1117030060.2759.50.camel@mercury> <20050525145937.GA32556@gw.jsoft.lan> <1117033832.429.60.camel@mercury> <4294A850.5080305@hishome.net> <1117079142.2758.90.camel@mercury> <42955353.9090303@pacific.net.sg> Message-ID: <1117113460.430.115.camel@mercury> I've got a new observation: Before I installed the ssh daemon and subsequently changed my /etc/sshd_config settings, I used to log in locally the Windows 2000 machine, and then I would click the /usr/X11R6/bin/startxwin.bat to start the X server. A console window would pop up for a moment and then disappear, and then a graphical xterm window would pop up. Now, all that still works, but when the console windows pops up during startxwin.bat's execution, the first line displayed in it says access denied Then the rest of the procedure continues; the console window disappears and is replaced by a graphical xterm. Here's my /tmp/XWin.log - not the "_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root" message: Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: /usr/X11R6/bin/XWin -multiwindow -clipboard -silent-dup-error ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1024 h 768 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 2048 height: 768 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winMultiWindowXMsgProc - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00001009" (00001009) (EE) Keyboardlayout "Canadian French" (00001009) is unknown (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winInitMultiWindowWM - pthread_mutex_lock () returned. winProcEstablishConnection - Hello winMultiWindowXMsgProc - pthread_mutex_lock () returned. winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitClipboard () winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winProcEstablishConnection - winInitClipboard returned. winClipboardProc - Hello winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 DetectUnicodeSupport - Windows NT/2000/XP winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display. winClipboardProc - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display. winClipboardProc - XOpenDisplay () returned and successfully opened the display. Also, why do I need to run xauth? I use the same machine to ssh to other hosts, and their X redirection works fine. Also, if I have to set the DISPLAY variable, what do I set it to, and where do I set that? Thanks On Thu, 2005-05-26 at 12:40 +0800, Erich Dollansky wrote: > Hi, > > Jean-Claude Gervais wrote: > > > > Running an application gives a different error now also. > > > > me@neptune ~ > > $ xcalc > > X11 connection rejected because of wrong authentication. > > X connection to localhost:10.0 broken (explicit kill or server > > shutdown). > > > you need to run xauth + at your machine plus you have to set the display > environment variable on the other machine. > > Check the handbook for the concequenses of above mentioned settings. > > Erich From lukrez@gmx.at Thu May 26 13:50:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Thu, 26 May 2005 13:50:00 -0000 Subject: Attention libtool maintainer: Re: `make install' of glib fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <42957974.2080109@familiehaase.de> Message-ID: Franz Haeuslschmid writes: > "Gerrit P. Haase" writes: > >> Franz Haeuslschmid wrote: >> >>> After having managed to actually make the latest version of glib, >>> `make install' fails and spits out an error message that I don't >>> understand (excuse the mass of lines): > > [... Output of make showing messages of undefined references ...] > >>> Once again: any ideas? [...] >> You're linking against the old glib2 library, another libtool bug. >> I thought that this was fixed in the latest release? Again, which >> version of libtool are you using now? Is it the one from the Cygwin >> mirrors or do you have compiled your own version? Charles, wasn't >> that included in the 1.5 release branch? >> >> BTW, 1.5.18 is out: http://www.gnu.org/software/libtool/libtool.html [... Download of latest libtool ...] > When I remove the libtool package using cygwin's `setup.exe', I > can't use autoreconf: > > haeuslsc@pan ~/Src/glib-2.6.4 > $ autoreconf --install --force --verbose [... Warning messages of autoreconf ...] > configure.in:456: error: possibly undefined macro: AM_DISABLE_STATIC > If this token and others are legitimate, please use m4_pattern_allow. > See the Autoconf documentation. > configure.in:457: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL > configure.in:458: error: possibly undefined macro: AM_PROG_LIBTOOL > autoreconf: /usr/autotool/devel/bin/autoconf failed with exit status: 1 I now know that these messages indicate that macros cannot be found by `aclocal'. The command `aclocal --print-ac-dir' shows for me /usr/autotool/devel/share/aclocal including one file, `dirlist' which in turn originally only contained the reference to one directory containing macros, I presume the default directory: /usr/share/aclocal I then extended the file for one line, in order to include the macros of the version of libtool, that I had locally compiled. With new prerequisites, glib compiled without any problem. To summarize: to make and install `glib', my system needed the latest stable version of `libtool'. The version that comes precompiled with cygwin must be uninstalled. (Maybe it suffices if `aclocal' finds the correct macro definitions -- is it a question of order of the directories listed in `dirlist'?) Additionally, `aclocal' had to be informed of the new macro definitions. Franz. From gerrit@familiehaase.de Thu May 26 17:39:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Thu, 26 May 2005 17:39:00 -0000 Subject: Attention libtool maintainer: Re: `make install' of glib fails In-Reply-To: References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <42957974.2080109@familiehaase.de> Message-ID: <429609C2.6010408@familiehaase.de> Franz Haeuslschmid wrote: > "Gerrit P. Haase" writes: > > >>Franz Haeuslschmid wrote: >> >> >>>After having managed to actually make the latest version of glib, >>>`make install' fails and spits out an error message that I don't >>>understand (excuse the mass of lines): > > > [... Output of make showing messages of undefined references ...] > > >>>Once again: any ideas? >> >> >>-> -L/usr/lib -L/usr/local/lib -lglib-2.0 > > > I suppose you meant that I should place this into environment > variable `LDFLAGS'. Did that, ran `./configure' once again and > continued with `make'. Now it is `make' that fails again (in > directory gobject): No, the other way around. If you have an older version of glib2 installed, and libtool links in the relink step against the older version, then there may well be undefined symbols, it should link against the fresh created glib2 library, this was a libtool bug which IMO was fixed in the Cygwin release of libtool-devel-1.5.10, but I may be wrong and it is only included in the experimental 1.9 release. [...same error..] > This is the chain of commands that were executed: > > $ tar xvjf glib-2.6.4.tar.bz2 > $ cd glib-2.6.4 > $ export LDFLAGS="-L/usr/lib -L/usr/local/lib -lglib-2.0" This must fail for sure as long as there is an older glib2 installed, since it failed to install the complete glib2-2.6.4 package. > $ autoreconf --install --force --verbose > $ ./configure > $ make Try to remove the current glib2 package before building 2.6.4 (and reinstall libtool-devel and friends). Then libtool has no chance to pick up the system glib2. >>You're linking against the old glib2 library, another libtool bug. >>I thought that this was fixed in the latest release? Again, which >>version of libtool are you using now? Is it the one from the Cygwin >>mirrors or do you have compiled your own version? Charles, wasn't >>that included in the 1.5 release branch? >> >>BTW, 1.5.18 is out: http://www.gnu.org/software/libtool/libtool.html > > > I downloaded and built that version. `libtool --version' now > gives > > haeuslsc@pan ~/Src/glib-2.6.4 > $ libtool --version > ltmain.sh (GNU libtool) 1.5.18 (1.1220.2.245 2005/05/16 08:55:27) It was meant as a ping to the libtool maintainer. Since there are always some Cygwin specific fixes in the libtool builds and we use a wrapper to call libtool-devel or libtool-stable according to the requested version in configure it is somewhat difficult to get this right for a standard Cygwin setup. > However, `autoreconf' still picks up the version that is > configured by the cygwin installer: > > haeuslsc@pan ~/Src/glib-2.6.4 > $ ./libtool --version > ltmain.sh (GNU libtool) 1.5.10 (1.1220.2.131 2004/09/19 12:46:56) With ./ at the beginning of the line it will use the libtool generated during a previous configure run. > When I remove the libtool package using cygwin's `setup.exe', I > can't use autoreconf: [...] > configure.in:457: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL > configure.in:458: error: possibly undefined macro: AM_PROG_LIBTOOL > autoreconf: /usr/autotool/devel/bin/autoconf failed with exit status: 1 > > > I'm still perplexed. Then the newer libtool wasn't installed correct. Gerrit -- =^..^= From lukrez@gmx.at Fri May 27 06:35:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Fri, 27 May 2005 06:35:00 -0000 Subject: Make of gtk+-2.6.7 fails Message-ID: Dear readers of g.o.c.xfree, I'm trying to install the latest version of `gtk+' in order to get an application working. I've managed to build `glib' with good assistance (confer news:<429609C2.6010408@familiehaase.de>). I followed the hints given in the referred message, built and installed `glib', `atk' and `pango' and tried subsequently to build `gtk+'. However -- once again -- make fails complaining about undefined references: haeuslsc@pan /cygdrive/d/Src/gtk+-2.6.7/gtk make all-recursive make[1]: Entering directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' Making all in stock-icons make[2]: Entering directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/stock-icons' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/stock-icons' Making all in theme-bits make[2]: Entering directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/theme-bits' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/theme-bits' Making all in xdgmime make[2]: Entering directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/xdgmime' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk/xdgmime' make[2]: Entering directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' /bin/bash ../libtool --mode=link gcc -g -O2 -Wall -o libgtk-x11-2.0.la -version-info 600:7:600 -export-dynamic -no-undefined -export-symbols-regex "^[^_].*" -rpath /usr/local/lib fnmatch.lo gtkaboutdialog.lo gtkaccelgroup.lo gtkaccellabel.lo gtkaccelmap.lo gtkaccessible.lo gtkaction.lo gtkactiongroup.lo gtkadjustment.lo gtkalignment.lo gtkarrow.lo gtkaspectframe.lo gtkbbox.lo gtkbin.lo gtkbindings.lo gtkbox.lo gtkbutton.lo gtkcalendar.lo gtkcelleditable.lo gtkcelllayout.lo gtkcellrenderer.lo gtkcellrenderercombo.lo gtkcellrendererpixbuf.lo gtkcellrendererprogress.lo gtkcellrenderertext.lo gtkcellrenderertoggle.lo gtkcellview.lo gtkcheckbutton.lo gtkcheckmenuitem.lo gtkclipboard.lo gtkclist.lo gtkcolorbutton.lo gtkcolorsel.lo gtkcolorseldialog.lo gtkcombo.lo gtkcombobox.lo gtkcomboboxentry.lo gtkcontainer.lo gtkctree.lo gtkcurve.lo gtkdialog.lo gtkdnd.lo gtkdrawingarea.lo gtkeditable.lo gtkentry.lo gtkentrycompletion.lo gtkeventbox.lo gtkexpander.lo gtkfilechooser.lo gtkfilechooserbutton.lo gtkfilechooserdialog.lo gtkfilechooserembed.lo gtkfilechooserentry.lo gtkfilechooserdefault.lo gtkfilechooserutils.lo gtkfilechooserwidget.lo gtkfilefilter.lo gtkfilesel.lo gtkfilesystem.lo gtkfilesystemmodel.lo gtkfixed.lo gtkfontbutton.lo gtkfontsel.lo gtkframe.lo gtkgamma.lo gtkgc.lo gtkhandlebox.lo gtkhbbox.lo gtkhbox.lo gtkhpaned.lo gtkhruler.lo gtkhscale.lo gtkhscrollbar.lo gtkhseparator.lo gtkhsv.lo gtkiconfactory.lo gtkiconcache.lo gtkicontheme.lo gtkiconview.lo gtkimage.lo gtkimagemenuitem.lo gtkimcontext.lo gtkimcontextsimple.lo gtkimmodule.lo gtkimmulticontext.lo gtkinputdialog.lo gtkinvisible.lo gtkitem.lo gtkitemfactory.lo gtkkeyhash.lo gtklabel.lo gtklayout.lo gtklist.lo gtklistitem.lo gtkliststore.lo gtkmain.lo gtkmarshal.lo gtkmarshalers.lo gtkmenu.lo gtkmenubar.lo gtkmenuitem.lo gtkmenushell.lo gtkmenutoolbutton.lo gtkmessagedialog.lo gtkmisc.lo gtkmnemonichash.lo gtkmodules.lo gtknotebook.lo gtkobject.lo gtkoldeditable.lo gtkoptionmenu.lo gtkpaned.lo gtkpathbar.lo gtkpixmap.lo gtkpreview.lo gtkprogress.lo gtkprogressbar.lo gtkradioaction.lo gtkradiobutton.lo gtkradiomenuitem.lo gtkradiotoolbutton.lo gtkrange.lo gtkrbtree.lo gtkrc.lo gtkruler.lo gtkscale.lo gtkscrollbar.lo gtkscrolledwindow.lo gtksequence.lo gtkselection.lo gtkseparator.lo gtkseparatormenuitem.lo gtkseparatortoolitem.lo gtksettings.lo gtksignal.lo gtksizegroup.lo gtkspinbutton.lo gtkstatusbar.lo gtkstock.lo gtkstyle.lo gtktable.lo gtktearoffmenuitem.lo gtktext.lo gtktextbtree.lo gtktextbuffer.lo gtktextchild.lo gtktextdisplay.lo gtktextiter.lo gtktextlayout.lo gtktextmark.lo gtktextsegment.lo gtktexttag.lo gtktexttagtable.lo gtktexttypes.lo gtktextutil.lo gtktextview.lo gtkthemes.lo gtktipsquery.lo gtktoggleaction.lo gtktogglebutton.lo gtktoggletoolbutton.lo gtktoolbar.lo gtktoolbutton.lo gtktoolitem.lo gtktooltips.lo gtktree.lo gtktreedatalist.lo gtktreednd.lo gtktreeitem.lo gtktreemodel.lo gtktreemodelfilter.lo gtktreemodelsort.lo gtktreeselection.lo gtktreesortable.lo gtktreestore.lo gtktreeview.lo gtktreeviewcolumn.lo gtktypebuiltins.lo gtktypeutils.lo gtkuimanager.lo gtkvbbox.lo gtkvbox.lo gtkviewport.lo gtkvpaned.lo gtkvruler.lo gtkvscale.lo gtkvscrollbar.lo gtkvseparator.lo gtkwidget.lo gtkwindow-decorate.lo gtkwindow.lo gtkfilesystemunix.lo gtkplug.lo gtksocket.lo gtkxembed.lo ../gdk-pixbuf/libgdk_pixbuf-2.0.la ../gdk/libgdk-x11-2.0.la -L/usr/X11R6/lib -lX11 -L/usr/local/lib -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -latk-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv -lm xdgmime/libxdgmime.la -lintl rm -fr .libs/libgtk-x11-2.0.dll.a .libs/libgtk-x11-2.0.exp generating symbol list for `libgtk-x11-2.0.la' /usr/bin/nm -B .libs/fnmatch.o .libs/gtkaboutdialog.o .libs/gtkaccelgroup.o .libs/gtkaccellabel.o .libs/gtkaccelmap.o .libs/gtkaccessible.o .libs/gtkaction.o .libs/gtkactiongroup.o .libs/gtkadjustment.o .libs/gtkalignment.o .libs/gtkarrow.o .libs/gtkaspectframe.o .libs/gtkbbox.o .libs/gtkbin.o .libs/gtkbindings.o .libs/gtkbox.o .libs/gtkbutton.o .libs/gtkcalendar.o .libs/gtkcelleditable.o .libs/gtkcelllayout.o .libs/gtkcellrenderer.o .libs/gtkcellrenderercombo.o .libs/gtkcellrendererpixbuf.o .libs/gtkcellrendererprogress.o .libs/gtkcellrenderertext.o .libs/gtkcellrenderertoggle.o .libs/gtkcellview.o .libs/gtkcheckbutton.o .libs/gtkcheckmenuitem.o .libs/gtkclipboard.o .libs/gtkclist.o .libs/gtkcolorbutton.o .libs/gtkcolorsel.o .libs/gtkcolorseldialog.o .libs/gtkcombo.o .libs/gtkcombobox.o .libs/gtkcomboboxentry.o .libs/gtkcontainer.o .libs/gtkctree.o .libs/gtkcurve.o .libs/gtkdialog.o .libs/gtkdnd.o .libs/gtkdrawingarea.o .libs/gtkeditable.o .libs/gtkentry.o .libs/gtkentrycompletion.o .libs/gtkeventbox.o .libs/gtkexpander.o .libs/gtkfilechooser.o .libs/gtkfilechooserbutton.o .libs/gtkfilechooserdialog.o .libs/gtkfilechooserembed.o .libs/gtkfilechooserentry.o .libs/gtkfilechooserdefault.o .libs/gtkfilechooserutils.o .libs/gtkfilechooserwidget.o .libs/gtkfilefilter.o .libs/gtkfilesel.o .libs/gtkfilesystem.o .libs/gtkfilesystemmodel.o .libs/gtkfixed.o .libs/gtkfontbutton.o .libs/gtkfontsel.o .libs/gtkframe.o .libs/gtkgamma.o .libs/gtkgc.o .libs/gtkhandlebox.o .libs/gtkhbbox.o .libs/gtkhbox.o .libs/gtkhpaned.o .libs/gtkhruler.o .libs/gtkhscale.o .libs/gtkhscrollbar.o .libs/gtkhseparator.o .libs/gtkhsv.o .libs/gtkiconfactory.o .libs/gtkiconcache.o .libs/gtkicontheme.o .libs/gtkiconview.o .libs/gtkimage.o .libs/gtkimagemenuitem.o .libs/gtkimcontext.o .libs/gtkimcontextsimple.o .libs/gtkimmodule.o .libs/gtkimmulticontext.o .libs/gtkinputdialog.o .libs/gtkinvisible.o .libs/gtkitem.o .libs/gtkitemfactory.o .libs/gtkkeyhash.o .libs/gtklabel.o .libs/gtklayout.o .libs/gtklist.o .libs/gtklistitem.o .libs/gtkliststore.o .libs/gtkmain.o .libs/gtkmarshal.o .libs/gtkmarshalers.o .libs/gtkmenu.o .libs/gtkmenubar.o .libs/gtkmenuitem.o .libs/gtkmenushell.o .libs/gtkmenutoolbutton.o .libs/gtkmessagedialog.o .libs/gtkmisc.o .libs/gtkmnemonichash.o .libs/gtkmodules.o .libs/gtknotebook.o .libs/gtkobject.o .libs/gtkoldeditable.o .libs/gtkoptionmenu.o .libs/gtkpaned.o .libs/gtkpathbar.o .libs/gtkpixmap.o .libs/gtkpreview.o .libs/gtkprogress.o .libs/gtkprogressbar.o .libs/gtkradioaction.o .libs/gtkradiobutton.o .libs/gtkradiomenuitem.o .libs/gtkradiotoolbutton.o .libs/gtkrange.o .libs/gtkrbtree.o .libs/gtkrc.o .libs/gtkruler.o .libs/gtkscale.o .libs/gtkscrollbar.o .libs/gtkscrolledwindow.o .libs/gtksequence.o .libs/gtkselection.o .libs/gtkseparator.o .libs/gtkseparatormenuitem.o .libs/gtkseparatortoolitem.o .libs/gtksettings.o .libs/gtksignal.o .libs/gtksizegroup.o .libs/gtkspinbutton.o .libs/gtkstatusbar.o .libs/gtkstock.o .libs/gtkstyle.o .libs/gtktable.o .libs/gtktearoffmenuitem.o .libs/gtktext.o .libs/gtktextbtree.o .libs/gtktextbuffer.o .libs/gtktextchild.o .libs/gtktextdisplay.o .libs/gtktextiter.o .libs/gtktextlayout.o .libs/gtktextmark.o .libs/gtktextsegment.o .libs/gtktexttag.o .libs/gtktexttagtable.o .libs/gtktexttypes.o .libs/gtktextutil.o .libs/gtktextview.o .libs/gtkthemes.o .libs/gtktipsquery.o .libs/gtktoggleaction.o .libs/gtktogglebutton.o .libs/gtktoggletoolbutton.o .libs/gtktoolbar.o .libs/gtktoolbutton.o .libs/gtktoolitem.o .libs/gtktooltips.o .libs/gtktree.o .libs/gtktreedatalist.o .libs/gtktreednd.o .libs/gtktreeitem.o .libs/gtktreemodel.o .libs/gtktreemodelfilter.o .libs/gtktreemodelsort.o .libs/gtktreeselection.o .libs/gtktreesortable.o .libs/gtktreestore.o .libs/gtktreeview.o .libs/gtktreeviewcolumn.o .libs/gtktypebuiltins.o .libs/gtktypeutils.o .libs/gtkuimanager.o .libs/gtkvbbox.o .libs/gtkvbox.o .libs/gtkviewport.o .libs/gtkvpaned.o .libs/gtkvruler.o .libs/gtkvscale.o .libs/gtkvscrollbar.o .libs/gtkvseparator.o .libs/gtkwidget.o .libs/gtkwindow-decorate.o .libs/gtkwindow.o .libs/gtkfilesystemunix.o .libs/gtkplug.o .libs/gtksocket.o .libs/gtkxembed.o xdgmime/.libs/libxdgmime.a | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' | /usr/bin/sed -e '/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/' | /usr/bin/sed -e '/^[AITW] /s/.* //' | sort | uniq > .libs/libgtk-x11-2.0.exp grep -E -e "^[^_].*" ".libs/libgtk-x11-2.0.exp" > ".libs/libgtk-x11-2.0.expT" mv -f ".libs/libgtk-x11-2.0.expT" ".libs/libgtk-x11-2.0.exp" if test "x`/usr/bin/sed 1q .libs/libgtk-x11-2.0.exp`" = xEXPORTS; then cp .libs/libgtk-x11-2.0.exp .libs/cyggtk-x11-2.0-0.dll.def; else echo EXPORTS > .libs/cyggtk-x11-2.0-0.dll.def; cat .libs/libgtk-x11-2.0.exp >> .libs/cyggtk-x11-2.0-0.dll.def; fi gcc -shared .libs/cyggtk-x11-2.0-0.dll.def .libs/fnmatch.o .libs/gtkaboutdialog.o .libs/gtkaccelgroup.o .libs/gtkaccellabel.o .libs/gtkaccelmap.o .libs/gtkaccessible.o .libs/gtkaction.o .libs/gtkactiongroup.o .libs/gtkadjustment.o .libs/gtkalignment.o .libs/gtkarrow.o .libs/gtkaspectframe.o .libs/gtkbbox.o .libs/gtkbin.o .libs/gtkbindings.o .libs/gtkbox.o .libs/gtkbutton.o .libs/gtkcalendar.o .libs/gtkcelleditable.o .libs/gtkcelllayout.o .libs/gtkcellrenderer.o .libs/gtkcellrenderercombo.o .libs/gtkcellrendererpixbuf.o .libs/gtkcellrendererprogress.o .libs/gtkcellrenderertext.o .libs/gtkcellrenderertoggle.o .libs/gtkcellview.o .libs/gtkcheckbutton.o .libs/gtkcheckmenuitem.o .libs/gtkclipboard.o .libs/gtkclist.o .libs/gtkcolorbutton.o .libs/gtkcolorsel.o .libs/gtkcolorseldialog.o .libs/gtkcombo.o .libs/gtkcombobox.o .libs/gtkcomboboxentry.o .libs/gtkcontainer.o .libs/gtkctree.o .libs/gtkcurve.o .libs/gtkdialog.o .libs/gtkdnd.o .libs/gtkdrawingarea.o .libs/gtkeditable.o .libs/gtkentry.o .libs/gtkentrycompletion.o .libs/gtkeventbox.o .libs/gtkexpander.o .libs/gtkfilechooser.o .libs/gtkfilechooserbutton.o .libs/gtkfilechooserdialog.o .libs/gtkfilechooserembed.o .libs/gtkfilechooserentry.o .libs/gtkfilechooserdefault.o .libs/gtkfilechooserutils.o .libs/gtkfilechooserwidget.o .libs/gtkfilefilter.o .libs/gtkfilesel.o .libs/gtkfilesystem.o .libs/gtkfilesystemmodel.o .libs/gtkfixed.o .libs/gtkfontbutton.o .libs/gtkfontsel.o .libs/gtkframe.o .libs/gtkgamma.o .libs/gtkgc.o .libs/gtkhandlebox.o .libs/gtkhbbox.o .libs/gtkhbox.o .libs/gtkhpaned.o .libs/gtkhruler.o .libs/gtkhscale.o .libs/gtkhscrollbar.o .libs/gtkhseparator.o .libs/gtkhsv.o .libs/gtkiconfactory.o .libs/gtkiconcache.o .libs/gtkicontheme.o .libs/gtkiconview.o .libs/gtkimage.o .libs/gtkimagemenuitem.o .libs/gtkimcontext.o .libs/gtkimcontextsimple.o .libs/gtkimmodule.o .libs/gtkimmulticontext.o .libs/gtkinputdialog.o .libs/gtkinvisible.o .libs/gtkitem.o .libs/gtkitemfactory.o .libs/gtkkeyhash.o .libs/gtklabel.o .libs/gtklayout.o .libs/gtklist.o .libs/gtklistitem.o .libs/gtkliststore.o .libs/gtkmain.o .libs/gtkmarshal.o .libs/gtkmarshalers.o .libs/gtkmenu.o .libs/gtkmenubar.o .libs/gtkmenuitem.o .libs/gtkmenushell.o .libs/gtkmenutoolbutton.o .libs/gtkmessagedialog.o .libs/gtkmisc.o .libs/gtkmnemonichash.o .libs/gtkmodules.o .libs/gtknotebook.o .libs/gtkobject.o .libs/gtkoldeditable.o .libs/gtkoptionmenu.o .libs/gtkpaned.o .libs/gtkpathbar.o .libs/gtkpixmap.o .libs/gtkpreview.o .libs/gtkprogress.o .libs/gtkprogressbar.o .libs/gtkradioaction.o .libs/gtkradiobutton.o .libs/gtkradiomenuitem.o .libs/gtkradiotoolbutton.o .libs/gtkrange.o .libs/gtkrbtree.o .libs/gtkrc.o .libs/gtkruler.o .libs/gtkscale.o .libs/gtkscrollbar.o .libs/gtkscrolledwindow.o .libs/gtksequence.o .libs/gtkselection.o .libs/gtkseparator.o .libs/gtkseparatormenuitem.o .libs/gtkseparatortoolitem.o .libs/gtksettings.o .libs/gtksignal.o .libs/gtksizegroup.o .libs/gtkspinbutton.o .libs/gtkstatusbar.o .libs/gtkstock.o .libs/gtkstyle.o .libs/gtktable.o .libs/gtktearoffmenuitem.o .libs/gtktext.o .libs/gtktextbtree.o .libs/gtktextbuffer.o .libs/gtktextchild.o .libs/gtktextdisplay.o .libs/gtktextiter.o .libs/gtktextlayout.o .libs/gtktextmark.o .libs/gtktextsegment.o .libs/gtktexttag.o .libs/gtktexttagtable.o .libs/gtktexttypes.o .libs/gtktextutil.o .libs/gtktextview.o .libs/gtkthemes.o .libs/gtktipsquery.o .libs/gtktoggleaction.o .libs/gtktogglebutton.o .libs/gtktoggletoolbutton.o .libs/gtktoolbar.o .libs/gtktoolbutton.o .libs/gtktoolitem.o .libs/gtktooltips.o .libs/gtktree.o .libs/gtktreedatalist.o .libs/gtktreednd.o .libs/gtktreeitem.o .libs/gtktreemodel.o .libs/gtktreemodelfilter.o .libs/gtktreemodelsort.o .libs/gtktreeselection.o .libs/gtktreesortable.o .libs/gtktreestore.o .libs/gtktreeview.o .libs/gtktreeviewcolumn.o .libs/gtktypebuiltins.o .libs/gtktypeutils.o .libs/gtkuimanager.o .libs/gtkvbbox.o .libs/gtkvbox.o .libs/gtkviewport.o .libs/gtkvpaned.o .libs/gtkvruler.o .libs/gtkvscale.o .libs/gtkvscrollbar.o .libs/gtkvseparator.o .libs/gtkwidget.o .libs/gtkwindow-decorate.o .libs/gtkwindow.o .libs/gtkfilesystemunix.o .libs/gtkplug.o .libs/gtksocket.o .libs/gtkxembed.o -Wl,--whole-archive xdgmime/.libs/libxdgmime.a -Wl,--no-whole-archive -L/cygdrive/d/Src/gtk+-2.6.7/gdk-pixbuf/.libs -L/opt/cxclient/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -L/usr/lib ../gdk-pixbuf/.libs/libgdk_pixbuf-2.0.dll.a ../gdk/.libs/libgdk-x11-2.0.dll.a -lX11 /usr/local/lib/libpangoxft-1.0.dll.a /usr/local/lib/libpangox-1.0.dll.a /usr/local/lib/libpango-1.0.dll.a /usr/local/lib/libatk-1.0.dll.a /usr/local/lib/libgobject-2.0.dll.a /usr/local/lib/libgmodule-2.0.dll.a /usr/local/lib/libglib-2.0.dll.a /usr/lib/libiconv.dll.a /usr/lib/libintl.dll.a -o .libs/cyggtk-x11-2.0-0.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/libgtk-x11-2.0.dll.a Creating library file: .libs/libgtk-x11-2.0.dll.a .libs/gtksettings.o: In function `gtk_default_substitute': /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:157: undefined reference to `_FcPatternGet' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:161: undefined reference to `_FcPatternGet' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:209: undefined reference to `_FcPatternGet' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:210: undefined reference to `_FcPatternAddDouble' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:210: undefined reference to `_FcPatternGet' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:206: undefined reference to `_FcPatternAddInteger' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:163: undefined reference to `_FcPatternAddBool' /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:159: undefined reference to `_FcPatternAddBool' Info: resolving _gdk_threads_lock by linking to __imp__gdk_threads_lock (auto-import) Info: resolving _gdk_threads_unlock by linking to __imp__gdk_threads_unlock (auto-import) collect2: ld returned 1 exit status make[2]: *** [libgtk-x11-2.0.la] Error 1 make[2]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' make: *** [all] Error 2 The build tools in use are those, that are officially available at the cygwin site. Franz. From lukrez@gmx.at Fri May 27 06:50:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Fri, 27 May 2005 06:50:00 -0000 Subject: Attention libtool maintainer: Re: `make install' of glib fails References: <008901c55f43$a5bb24c0$01ac850d@jicman> <4291F40C.8090804@familiehaase.de> <42957974.2080109@familiehaase.de> <429609C2.6010408@familiehaase.de> Message-ID: "Gerrit P. Haase" writes: > Franz Haeuslschmid wrote: > >> "Gerrit P. Haase" writes: [... Stupid me changing $LDFLAGS and installing `libtool' on my own ...] > It was meant as a ping to the libtool maintainer. Since there are > always some Cygwin specific fixes in the libtool builds and we use > a wrapper to call libtool-devel or libtool-stable according to the > requested version in configure it is somewhat difficult to get this > right for a standard Cygwin setup. I see! Now I got it. >> However, `autoreconf' still picks up the version that is >> configured by the cygwin installer: >> haeuslsc@pan ~/Src/glib-2.6.4 >> $ ./libtool --version >> ltmain.sh (GNU libtool) 1.5.10 (1.1220.2.131 2004/09/19 12:46:56) > > With ./ at the beginning of the line it will use the libtool generated > during a previous configure run. Well, I know that, I just wanted to point out, that `autoreconf' still uses the `libtool' that is provided by cygwin itself. [...] >> configure.in:457: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL >> configure.in:458: error: possibly undefined macro: AM_PROG_LIBTOOL >> autoreconf: /usr/autotool/devel/bin/autoconf failed with exit status: 1 >> I'm still perplexed. > > Then the newer libtool wasn't installed correct. I removed that version anyway. Gerrit, thank you for your patience, with your aid, I finally managed to build `glib'. As it turned out later, I need to build `glib', this wish however stays unfulfilled, because the build process fails due to undefined references. I started a new thread on this under news:. Franz. From admin@cygwin.com Fri May 27 07:23:00 2005 From: admin@cygwin.com (admin@cygwin.com) Date: Fri, 27 May 2005 07:23:00 -0000 Subject: Notice: **Last Warning** Message-ID: <200505270706.j4R76f8r024215@mail.infotechsw.com> The original message has been included as an attachment. -------------- next part -------------- [Filename: email-doc.zip, Content-Type: application/octet-stream] The attachment file in the message has been removed. From gerrit@familiehaase.de Fri May 27 09:55:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Fri, 27 May 2005 09:55:00 -0000 Subject: Make of gtk+-2.6.7 fails In-Reply-To: References: Message-ID: <4296EE80.4040100@familiehaase.de> Franz Haeuslschmid wrote: > Dear readers of g.o.c.xfree, Good.Old.Cygwin.Xfree? > gcc -shared .libs/cyggtk-x11-2.0-0.dll.def .libs/fnmatch.o > [...OBJECT FILE LIST...] -Wl,--whole-archive dgmime/.libs/libxdgmime.a > -Wl,--no-whole-archive -L/cygdrive/d/Src/gtk+-2.6.7/gdk-pixbuf/.libs > -L/opt/cxclient/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib > -L/usr/lib ../gdk-pixbuf/.libs/libgdk_pixbuf-2.0.dll.a > ../gdk/.libs/libgdk-x11-2.0.dll.a -lX11 > /usr/local/lib/libpangoxft-1.0.dll.a > /usr/local/lib/libpangox-1.0.dll..a > /usr/local/lib/libpango-1.0.dll.a > /usr/local/lib/libatk-1.0.dll.a > /usr/local/lib/libgobject-2.0.dll.a > /usr/local/lib/libgmodule-2.0.dll.a > /usr/local/lib/libglib-2.0.dll.a > /usr/lib/libiconv.dll.a > /usr/lib/libintl.dll.a > -o ..libs/cyggtk-x11-2.0-0.dll -Wl,--image-base=0x10000000 > -Wl,--out-implib,.libs/libgtk-x11-2.0.dll.a > Creating library file: .libs/libgtk-x11-2.0.dll.a > ..libs/gtksettings.o: In function `gtk_default_substitute': > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:157: undefined reference to `_FcPatternGet' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:161: undefined reference to `_FcPatternGet' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:209: undefined reference to `_FcPatternGet' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:210: undefined reference to `_FcPatternAddDouble' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:210: undefined reference to `_FcPatternGet' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:206: undefined reference to `_FcPatternAddInteger' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:163: undefined reference to `_FcPatternAddBool' > /cygdrive/d/Src/gtk+-2.6.7/gtk/gtksettings.c:159: undefined reference to `_FcPatternAddBool' > Info: resolving _gdk_threads_lock by linking to __imp__gdk_threads_lock (auto-import) > Info: resolving _gdk_threads_unlock by linking to __imp__gdk_threads_unlock (auto-import) > collect2: ld returned 1 exit status > make[2]: *** [libgtk-x11-2.0.la] Error 1 > make[2]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/cygdrive/d/Src/gtk+-2.6.7/gtk' > make: *** [all] Error 2 > > > The build tools in use are those, that are officially available > at the cygwin site. There is libfontconfig missing at the link command. See this and other changes in the patch of the last released Cygwin version, I attached the minimal set of changes needed to build 2.4.14. After applying these changes, you'll need to run automake or adopt the changes and include them directly in Makefile.in instead of changing Makefile.am. Gerrit -- =^..^= -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: gtk2-x11-2.4.14-1-minimal.patch URL: From lukrez@gmx.at Sat May 28 07:23:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Sat, 28 May 2005 07:23:00 -0000 Subject: Make of gtk+-2.6.7 fails References: <4296EE80.4040100@familiehaase.de> Message-ID: "Gerrit P. Haase" writes: > Franz Haeuslschmid wrote: > >> Dear readers of g.o.c.xfree, > > Good.Old.Cygwin.Xfree? No pun intended. [... Make output showing undefined references when the target libgtk-x11-2.0.la is built ...] > There is libfontconfig missing at the link command. > See this and other changes in the patch of the last released Cygwin > version, I attached the minimal set of changes needed to build 2.4.14. > After applying these changes, you'll need to run automake or adopt > the changes and include them directly in Makefile.in instead of > changing Makefile.am. Thank you for providing the patch. The original problem is not triggered any more. However, new "undefined references" appear: /bin/bash ../../libtool --mode=link --tag=CC gcc -g -O2 -Wall -o im-ime.la -rpath /usr/local/lib/gtk-2.0/2.4.0/immodules -rpath /usr/local/lib/gtk-2.0/2.4.0/immodules -avoid-version -module -no-undefined gtkimcontextime.lo imime.lo -limm32 ../../gdk-pixbuf/libgdk_pixbuf-2.0.la ../../gdk/libgdk-x11-2.0.la ../../gtk/libgtk-x11-2.0.la -L/usr/X11R6/lib -lX11 -L/usr/local/lib -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -latk-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv -lm -lintl rm -fr .libs/im-ime.dll.a gcc -shared .libs/gtkimcontextime.o .libs/imime.o -L/home/haeuslsc/Src/gtk+-2.6.7/gdk/.libs -L/home/haeuslsc/Src/gtk+-2.6.7/gdk-pixbuf/.libs -L/opt/cxclient/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -L/usr/lib -limm32 ../../gdk-pixbuf/.libs/libgdk_pixbuf-2.0.dll.a ../../gdk/.libs/libgdk-x11-2.0.dll.a ../../gtk/.libs/libgtk-x11-2.0.dll.a -lX11 /usr/local/lib/libpangoxft-1.0.dll.a /usr/local/lib/libpangox-1.0.dll.a /usr/local/lib/libpango-1.0.dll.a /usr/local/lib/libatk-1.0.dll.a /usr/local/lib/libgobject-2.0.dll.a /usr/local/lib/libgmodule-2.0.dll.a /usr/local/lib/libglib-2.0.dll.a /usr/lib/libiconv.dll.a /usr/lib/libintl.dll.a -o .libs/im-ime.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/im-ime.dll.a Creating library file: .libs/im-ime.dll.a .libs/gtkimcontextime.o: In function `gtk_im_context_ime_set_client_window': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:281: undefined reference to `_gdk_win32_drawable_get_handle' .libs/gtkimcontextime.o: In function `gtk_im_context_ime_reset': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:348: undefined reference to `_gdk_win32_drawable_get_handle' .libs/gtkimcontextime.o: In function `get_utf8_preedit_string': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:374: undefined reference to `_gdk_win32_drawable_get_handle' .libs/gtkimcontextime.o: In function `get_pango_attr_list': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:433: undefined reference to `_gdk_win32_drawable_get_handle' .libs/gtkimcontextime.o: In function `gtk_im_context_ime_focus_in': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:571: undefined reference to `_gdk_win32_drawable_get_handle' .libs/gtkimcontextime.o:/home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:581: more undefined references to `_gdk_win32_drawable_get_handle' follow .libs/gtkimcontextime.o: In function `gtk_im_context_ime_set_preedit_font': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:882: undefined reference to `_pango_win32_font_logfont' .libs/gtkimcontextime.o: In function `gtk_im_context_ime_message_filter': /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:913: undefined reference to `_gdk_win32_drawable_get_handle' /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:932: undefined reference to `_gdk_win32_drawable_get_handle' collect2: ld returned 1 exit status make: *** [im-ime.la] Error 1 Again: what have I to do to make it work? Franz. From gerrit@familiehaase.de Sat May 28 10:38:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Sat, 28 May 2005 10:38:00 -0000 Subject: Make of gtk+-2.6.7 fails In-Reply-To: References: <4296EE80.4040100@familiehaase.de> Message-ID: <42984A22.9080602@familiehaase.de> Hallo Franz, > Thank you for providing the patch. The original problem is not > triggered any more. However, new "undefined references" appear: > > /bin/bash ../../libtool --mode=link --tag=CC gcc -g -O2 -Wall -o im-ime.la -rpath /usr/local/lib/gtk-2.0/2.4.0/immodules -rpath /usr/local/lib/gtk-2.0/2.4.0/immodules -avoid-version -module -no-undefined gtkimcontextime.lo imime.lo -limm32 ../../gdk-pixbuf/libgdk_pixbuf-2.0.la ../../gdk/libgdk-x11-2.0.la ../../gtk/libgtk-x11-2.0.la -L/usr/X11R6/lib -lX11 -L/usr/local/lib -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -latk-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv -lm -lintl > rm -fr .libs/im-ime.dll.a > gcc -shared .libs/gtkimcontextime.o .libs/imime.o -L/home/haeuslsc/Src/gtk+-2.6.7/gdk/.libs -L/home/haeuslsc/Src/gtk+-2.6.7/gdk-pixbuf/.libs -L/opt/cxclient/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib -L/usr/lib -limm32 ../../gdk-pixbuf/.libs/libgdk_pixbuf-2.0.dll.a ../../gdk/.libs/libgdk-x11-2.0.dll.a ../../gtk/.libs/libgtk-x11-2.0.dll.a -lX11 /usr/local/lib/libpangoxft-1.0.dll.a /usr/local/lib/libpangox-1.0.dll.a /usr/local/lib/libpango-1.0.dll.a /usr/local/lib/libatk-1.0.dll.a /usr/local/lib/libgobject-2.0.dll.a /usr/local/lib/libgmodule-2.0.dll.a /usr/local/lib/libglib-2.0.dll.a /usr/lib/libiconv.dll.a /usr/lib/libintl.dll.a -o .libs/im-ime.dll -Wl,--image-base=0x10000000 -Wl,--out-implib,.libs/im-ime.dll.a > Creating library file: .libs/im-ime.dll.a > ..libs/gtkimcontextime.o: In function `gtk_im_context_ime_set_client_window': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:281: undefined reference to `_gdk_win32_drawable_get_handle' > ..libs/gtkimcontextime.o: In function `gtk_im_context_ime_reset': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:348: undefined reference to `_gdk_win32_drawable_get_handle' > ..libs/gtkimcontextime.o: In function `get_utf8_preedit_string': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:374: undefined reference to `_gdk_win32_drawable_get_handle' > ..libs/gtkimcontextime.o: In function `get_pango_attr_list': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:433: undefined reference to `_gdk_win32_drawable_get_handle' > ..libs/gtkimcontextime.o: In function `gtk_im_context_ime_focus_in': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:571: undefined reference to `_gdk_win32_drawable_get_handle' > ..libs/gtkimcontextime.o:/home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:581: more undefined references to `_gdk_win32_drawable_get_handle' follow > ..libs/gtkimcontextime.o: In function `gtk_im_context_ime_set_preedit_font': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:882: undefined reference to `_pango_win32_font_logfont' > ..libs/gtkimcontextime.o: In function `gtk_im_context_ime_message_filter': > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:913: undefined reference to `_gdk_win32_drawable_get_handle' > /home/haeuslsc/Src/gtk+-2.6.7/modules/input/gtkimcontextime.c:932: undefined reference to `_gdk_win32_drawable_get_handle' > collect2: ld returned 1 exit status > make: *** [im-ime.la] Error 1 > > > Again: what have I to do to make it work? Hmmm, this is new module. _pango_win32_font_logfont is in libpangowin32-1.0: $ nm libpangowin32-1.0.dll.a | grep font_logfont 00000000 I __imp__pango_win32_font_logfont 00000000 T _pango_win32_font_logfont _gdk_win32_drawable_get_handle is probably in the Win32 version of libgdk, however since you have compiled the *nix version it shouldn't be used in gtkimcontextime.c as long as target isn't the Win32 version. It seems the im-ime module is only meant to be used on Win32, see in Makefile.am: if PLATFORM_WIN32 IM_IME_MODULE=im-ime.la endif This should be changed to: if OS_WIN32 IM_IME_MODULE=im-ime.la endif Regenerate Makefile.in with automake from the top level source directory then. Maybe you ask at the GTK2 support lists about this issue and or commit a bug report? Gerrit -- =^..^= From gerrit@familiehaase.de Sat May 28 10:43:00 2005 From: gerrit@familiehaase.de (Gerrit P. Haase) Date: Sat, 28 May 2005 10:43:00 -0000 Subject: Good and light x browser for cygwin? In-Reply-To: <027001c56168$7a59b680$2820790d@stso.mc.xerox.com> References: <027001c56168$7a59b680$2820790d@stso.mc.xerox.com> Message-ID: <42984B44.3000007@familiehaase.de> jose isaias cabrera wrote: > Greetings! > > Does cygwin comes with a light X browser? If not, is there one that I > can quickly build with cygwin? "A browser of the highest quality", "Lightweight and folds away flat": http://www.printbrowsers.com/browser-classic-x.htm No, to be serious, what is an X browser? A web browser? A good light Web browser is Dillo http://www.dillo.org/ . Other than that please explain what you're exactly looking for (I'm a stupid german). Gerrit -- =^..^= From darryls@productcosting.com Sat May 28 15:25:00 2005 From: darryls@productcosting.com (Darryl) Date: Sat, 28 May 2005 15:25:00 -0000 Subject: Read the FAQ! Message-ID: <6.1.2.0.0.20050528143347.01a3fec0@mail.mistral.net> Hi! I have been using cygwin for some time and have not upgraded as what I want works, so if its not broken why fix it. My version is 4.2.0.67! I wanted to change my default cursor, had difficulty - so read the FAQ - problem solved. I just had the Xsetroot command in the wrong order in the startxwin.bat script. Would you recommend upgrading to the latest release just for the sake of it? Cheers Darryl SCOTT From cmc3list-win2k@yahoo.com Sat May 28 17:46:00 2005 From: cmc3list-win2k@yahoo.com (Christopher Mark Conn) Date: Sat, 28 May 2005 17:46:00 -0000 Subject: redirecting sound Message-ID: <86ll5zz1dz.fsf@zihua.cmconn.net> I'm using Cygwin/X on my Win2K laptop to connect to my FreeBSD box and I'd like to redirect the sound from Rhythmbox (or other music players on the FreeBSD box) to the laptop. Here is how I connect from the Win2K laptop: startx -> brings up an xterm ssh on the xterm run bsd commands on the xterm I can do this easily but the music now comes out of the speakers on the FreeBSD box. Since it's a wireless connection I'm not always where the speakers are. Thanks for any advice, -- Chris Conn http://storm.cadcam.iupui.edu/~cmcgoat Austin, Texas, USA From Angelo.Graziosi@roma1.infn.it Sat May 28 19:14:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Sat, 28 May 2005 19:14:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 Message-ID: With Cygwin 1.5.17-1, after starting XWin (startxwin.bat) and Emacs, the Emacs window does not show itself, i.e. $ emacs& [1] 1776 but the emacs window does not appear! The ps command shows: $ ps PID PPID PGID WINPID TTY UID STIME COMMAND 1380 1 1380 1380 con 500 20:45:19 /usr/X11R6/bin/XWin 1436 1 1436 1436 con 500 20:45:23 /usr/bin/xterm 1424 1436 1424 1516 0 500 20:45:26 /usr/bin/bash 824 1424 824 1452 0 500 20:52:15 /usr/bin/ssh 1228 1 1228 1228 con 500 21:01:17 /usr/bin/xterm 1292 1228 1292 1704 1 500 21:01:17 /usr/bin/bash 1776 1292 1776 1688 1 500 21:01:28 /usr/bin/emacs 1624 1292 1624 1676 1 500 21:03:07 /usr/bin/ps i.e. emacs seems to be loaded. These things happen as Administrator and NOT-Administrator user. Reinstalling Cygwin 1.5.16-1 all works normally. In announcing Coreutils 5.3.0-6, E.B. wrote: "This package REQUIRES cygwin 1.5.17 or newer snapshots" and in setup.ini is disappeared the previous version (5.3.0-5). For the moment the hybrid system, 1.5.16-1 and 5.3.0-6, seems to work. Have you hints? Thank you, angelo. From cgf-no-personal-reply-please@cygwin.com Sat May 28 20:27:00 2005 From: cgf-no-personal-reply-please@cygwin.com (Christopher Faylor) Date: Sat, 28 May 2005 20:27:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 In-Reply-To: References: Message-ID: <20050528202735.GB3094@trixie.casa.cgf.cx> On Sat, May 28, 2005 at 09:14:24PM +0200, Angelo Graziosi wrote: >With Cygwin 1.5.17-1, after starting XWin (startxwin.bat) and Emacs, the >Emacs window does not show itself, i.e. > > >$ emacs& >[1] 1776 > >but the emacs window does not appear! The ps command shows: > >$ ps > PID PPID PGID WINPID TTY UID STIME COMMAND > 1380 1 1380 1380 con 500 20:45:19 >/usr/X11R6/bin/XWin > 1436 1 1436 1436 con 500 20:45:23 /usr/bin/xterm > 1424 1436 1424 1516 0 500 20:45:26 /usr/bin/bash > 824 1424 824 1452 0 500 20:52:15 /usr/bin/ssh > 1228 1 1228 1228 con 500 21:01:17 /usr/bin/xterm > 1292 1228 1292 1704 1 500 21:01:17 /usr/bin/bash > 1776 1292 1776 1688 1 500 21:01:28 /usr/bin/emacs > 1624 1292 1624 1676 1 500 21:03:07 /usr/bin/ps > >i.e. emacs seems to be loaded. > >These things happen as Administrator and NOT-Administrator user. WJFFM. Does "procps auwx" show if the emacs is consuming CPU? If you do a "strace -p" does anything interesting show up? Also please provide cygcheck output, as an attachment. cgf From alexander.gottwald@s1999.tu-chemnitz.de Sat May 28 21:27:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 28 May 2005 21:27:00 -0000 Subject: redirecting sound In-Reply-To: <86ll5zz1dz.fsf@zihua.cmconn.net> References: <86ll5zz1dz.fsf@zihua.cmconn.net> Message-ID: On Sat, 28 May 2005, Christopher Mark Conn wrote: > I'm using Cygwin/X on my Win2K laptop to connect to > my FreeBSD box and I'd like to redirect the sound > from Rhythmbox (or other music players on the FreeBSD > box) to the laptop. > > Here is how I connect from the Win2K laptop: > > startx -> brings up an xterm > ssh on the xterm > run bsd commands on the xterm > > I can do this easily but the music now comes out of > the speakers on the FreeBSD box. Since it's a wireless > connection I'm not always where the speakers are. > > Thanks for any advice, ESound (or ESD) is designed for this purpose. I think it is available as cygwin package. Check the documentation of that package on how to setup the sound forwarding. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From lukrez@gmx.at Sun May 29 11:32:00 2005 From: lukrez@gmx.at (Franz Haeuslschmid) Date: Sun, 29 May 2005 11:32:00 -0000 Subject: Make of gtk+-2.6.7 fails References: <4296EE80.4040100@familiehaase.de> <42984A22.9080602@familiehaase.de> Message-ID: Hello Gerrit, [...] > It seems the im-ime module is only meant to be used on Win32, see in > Makefile.am: > > if PLATFORM_WIN32 > IM_IME_MODULE=im-ime.la > endif > > This should be changed to: > > if OS_WIN32 > IM_IME_MODULE=im-ime.la > endif To show that I'm not resistant to learn things: the same has to be applied to `modules/engines/Makefile.am' [...] > Maybe you ask at the GTK2 support lists about this issue and or > commit a bug report? That is reasonable. Thank you again, Franz. From Angelo.Graziosi@roma1.infn.it Sun May 29 12:50:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Sun, 29 May 2005 12:50:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 Message-ID: ---> Here is some answer to ---> ---> ---> ---> ---> With TASKMANAGER Emacs takes from 97% to 99% of CPU. ---> ---> Using your hints I have noted that if I do not start Emacs ---> the command ---> ---> procps auwx ---> ---> prints the data an returns to prompt. ---> ---> If I start Emacs the result is: ---> ---> Administrator@graziosi-irci53 ~ $ emacs& [1] 1492 Administrator@graziosi-irci53 ~ $ ps PID PPID PGID WINPID TTY UID STIME COMMAND 1448 1 1448 1448 con 500 13:05:15 /usr/X11R6/bin/XWin 1364 1 1364 1364 con 500 13:05:19 /usr/bin/xterm 1384 1364 1384 1436 0 500 13:05:22 /usr/bin/bash 1492 1384 1492 1416 0 500 13:06:27 /usr/bin/emacs 1580 1384 1580 1572 0 500 13:06:30 /usr/bin/ps Administrator@graziosi-irci53 ~ $ procps auwx USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND 500 1448 1.4 4.2 6812 11068 tty0 Ss 13:05 0:01 /usr/X11R6/bin/XWin -multiwindow -clipboard -silent-dup-error +bs 500 1364 0.6 2.8 4296 7376 tty0 Rs 13:05 0:00 /usr/bin/xterm -e /usr/bin/bash -l -ms red -fg lightgray -bg black 500 1384 0.2 1.5 1620 4016 tty0 Ss 13:05 0:00 /usr/bin/bash -l ---> ---> ... and after many minutes (i.e. after I lunched!): ---> 500 1492 107 2.9 7320 7752 tty0 R 13:06 0:10 500 1564 1.0 1.4 2260 3676 tty0 R 13:06 0:00 procps auwx ---> ---> ---> ---> Trying strace: ---> ============== ---> Administrator@graziosi-irci53 ~ $ ps PID PPID PGID WINPID TTY UID STIME COMMAND 1448 1 1448 1448 con 500 13:05:15 /usr/X11R6/bin/XWin 1364 1 1364 1364 con 500 13:05:19 /usr/bin/xterm 1384 1364 1384 1436 0 500 13:05:22 /usr/bin/bash 1492 1384 1492 1416 0 500 13:06:27 /usr/bin/emacs 1156 1384 1156 1572 0 500 13:51:49 /usr/bin/ps Administrator@graziosi-irci53 ~ $ strace -p1492 ---> ---> Waiting a few minutes anything happens. It is freezed and does ---> not answer to CTRL-C. One must exit from XWin and restart the PC. ---> ---> In an other try, starting Emacs (PID 1148) ---> ---> Administrator@graziosi-irci53 ~ $ strace -p1148 ---> ---> ... and after some minute: ---> Attached to pid 1148 (windows pid 1416) 6 6 [unknown (0x5F4)] emacs 1148 _cygtls::remove: wait 0x0 362 368 [unknown (0x5F4)] emacs 1148 _cygtls::remove: removed 0x1953F084 element 2 ---> waiting others minutes...anything happens... I try CTRL-C to return ---> at prompt: ---> NO I must exit X and restart the PC that seems do not work correcly! ---> The tentative to close the xterm windows fails! ---> What does "WJFFM" mean? ---> ---> Thank, angelo. ---> Now cygcheck output. cygcheck -s -v -r -h > cygcheck_output.txt ======================================================= Cygwin Configuration Diagnostics Current System Time: Sun May 29 12:49:49 2005 Windows 2000 Professional Ver 5.0 Build 2195 Service Pack 4 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin c:\texmf\miktex\bin c:\WINNT\system32 c:\WINNT c:\WINNT\System32\Wbem c:\Borland\BCC55\Bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin C:\cygwin\home\Administrator C:\cygwin\cern\pro\bin C:\cygwin\usr\local\root\bin Output from C:\cygwin\bin\id.exe (nontsec) UID: 500(Administrator) GID: 544(Administrators) 0(root) 513(Nessuno) 544(Administrators) 545(Users) Output from C:\cygwin\bin\id.exe (ntsec) UID: 500(Administrator) GID: 544(Administrators) 0(root) 513(Nessuno) 544(Administrators) 545(Users) SysDir: C:\WINNT\system32 WinDir: C:\WINNT Here's some environment variables that may affect cygwin: USER = `Administrator' LD_LIBRARY_PATH = `/usr/local/root/lib' PWD = `/home/Administrator' HOME = `/home/Administrator' MAKE_MODE = `unix' Here's the rest of your environment variables: HOMEPATH = `\Documents and Settings\Administrator' MANPATH = `/usr/local/man:/usr/man:/usr/share/man:/usr/autotool/devel/man::/usr/ssl/man:/usr/X11R6/man' APPDATA = `C:\Documents and Settings\Administrator\Dati applicazioni' HOSTNAME = `graziosi-irci53' XKEYSYMDB = `/usr/X11R6/lib/X11/XKeysymDB' TERM = `xterm' PROCESSOR_IDENTIFIER = `x86 Family 6 Model 7 Stepping 1, AuthenticAMD' WINDIR = `C:\WINNT' TEXDOCVIEW_txt = `cygstart %s' TEXDOCVIEW_dvi = `cygstart %s' WINDOWID = `2097166' OLDPWD = `/c/Documents and Settings/Administrator/Desktop' USERDOMAIN = `GRAZIOSI-IRCI53' OS = `Windows_NT' ALLUSERSPROFILE = `C:\Documents and Settings\All Users' XAPPLRESDIR = `/usr/X11R6/lib/X11/app-defaults' OS2LIBPATH = `C:\WINNT\system32\os2\dll;' XCMSDB = `/usr/X11R6/lib/X11/Xcms.txt' TEMP = `/c/DOCUME~1/ADMINI~1/IMPOST~1/Temp' COMMONPROGRAMFILES = `C:\Programmi\File comuni' XNLSPATH = `/usr/X11R6/lib/X11/locale' TERMCAP = `xterm-r6|xterm|xterm X11R6 version:am:km:mi:ms:xn:co#80:it#8:li#24:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:is=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:te=\E[2J\E[?47l\E8:ti=\E7\E[?47h:ue=\E[m:up=\E[A:us=\E[4m:kb=\010:' USERNAME = `Administrator' TEXDOCVIEW_pdf = `cygstart %s' PROCESSOR_LEVEL = `6' SYSTEMDRIVE = `C:' CYGWIN_ROOT = `\cygwin' TEXDOCVIEW_html = `cygstart %s' USERPROFILE = `C:\Documents and Settings\Administrator' PS1 = `\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ ' LOGONSERVER = `\\GRAZIOSI-IRCI53' HISTIGNORE = `[ ]*:&:bg:fg' PROCESSOR_ARCHITECTURE = `x86' !C: = `C:\Documents and Settings\Administrator\Desktop' ROOTSYS = `/usr/local/root' HISTCONTROL = `ignoredups' SHLVL = `1' PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' VCTOOLKITINSTALLDIR = `C:\Programmi\Microsoft Visual C++ Toolkit 2003\' HOMEDRIVE = `C:' PROMPT = `$P$G' COMSPEC = `C:\WINNT\system32\cmd.exe' LOGNAME = `Administrator' TMP = `/c/DOCUME~1/ADMINI~1/IMPOST~1/Temp' SYSTEMROOT = `C:\WINNT' PRINTER = `HP Deskjet 3740 Series' CVS_RSH = `/bin/ssh' PROCESSOR_REVISION = `0701' PKG_CONFIG_PATH = `/usr/X11R6/lib/pkgconfig' TEXDOCVIEW_ps = `cygstart %s' INFOPATH = `/usr/local/info:/usr/info:/usr/share/info:/usr/autotool/devel/info:/usr/autotool/stable/info:' PROGRAMFILES = `C:\Programmi' TEXMF = `{/usr/share/lilypond/2.4.6,{!!/home/Administrator/.texmf/config,!!/home/Administrator/.texmf/var,/home/Administrator/texmf,!!/usr/local/share/texmf,!!/var/lib/texmf,!!/usr/share/texmf}}' DISPLAY = `127.0.0.1:0.0' NUMBER_OF_PROCESSORS = `1' COMPUTERNAME = `GRAZIOSI-IRCI53' !EXITCODE = `00000000' _ = `/usr/bin/cygcheck' POSIXLY_CORRECT = `1' Scanning registry for keys with `Cygnus' in them... HKEY_CURRENT_USER\Software\Cygnus Solutions HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2 HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) = `/cygdrive' cygdrive flags = 0x00000022 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = `C:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/a (default) = `a:' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/c (default) = `c:' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/d (default) = `d:' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/e (default) = `e:' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = `C:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = `C:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/lib/X11/fonts (default) = `C:\cygwin\usr\X11R6\lib\X11\fonts' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options Listing available drives... Drv Type Size Used Flags Name a: fd N/A N/A c: hd NTFS 39260Mb 31% CP CS UN PA FC d: cd N/A N/A e: cd N/A N/A fd = floppy, hd = hard drive, cd = CD-ROM net= Network Share, ram= RAM drive, unk= Unknown CP = Case Preserving, CS = Case Sensitive, UN = Unicode PA = Persistent ACLS, FC = File Compression, VC = Volume Compression Mount entries: these map POSIX directories to your NT drives. -NT- -POSIX- -Type- -Flags- C:\cygwin / system binmode a: /a system binmode c: /c system binmode d: /d system binmode e: /e system binmode C:\cygwin/bin /usr/bin system binmode C:\cygwin/lib /usr/lib system binmode C:\cygwin\usr\X11R6\lib\X11\fonts /usr/X11R6/lib/X11/fonts system binmode . /cygdrive system binmode,cygdrive Looking to see where common programs can be found, if at all... Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\grep.exe Found: c:\Borland\BCC55\Bin\grep.exe Warning: C:\cygwin\bin\grep.exe hides c:\Borland\BCC55\Bin\grep.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\make.exe Found: c:\Borland\BCC55\Bin\make.exe Warning: C:\cygwin\bin\make.exe hides c:\Borland\BCC55\Bin\make.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe Looking for various Cygwin DLLs... (-v gives version info) 93k 2005/02/17 C:\cygwin\bin\cygapr-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-0-0.dll" v0.0 ts=2005/2/17 22:52 68k 2005/02/17 C:\cygwin\bin\cygaprutil-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-0-0.dll" v0.0 ts=2005/2/17 22:56 77k 2004/06/04 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2004/6/4 12:20 802k 2003/09/15 C:\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0 "cygaspell-15.dll" v0.0 ts=2003/9/15 14:32 123k 2004/09/29 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2004/9/30 1:16 145k 2004/09/02 C:\cygwin\bin\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0 "cygaudiofile-0.dll" v0.0 ts=2004/9/2 5:38 336k 2004/10/27 C:\cygwin\bin\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygbonobo-2-0.dll" v0.0 ts=2004/10/27 9:43 72k 2004/10/27 C:\cygwin\bin\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0 "cygbonobo-activation-4.dll" v0.0 ts=2004/10/27 1:19 425k 2004/10/29 C:\cygwin\bin\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygbonoboui-2-0.dll" v0.0 ts=2004/10/29 1:12 55k 2004/09/14 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2004/9/14 6:16 54k 2002/01/27 C:\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0 "cygbz21.0.dll" v0.0 ts=2002/1/27 2:07 18k 2004/07/06 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2004/7/6 20:09 260k 2005/05/14 C:\cygwin\bin\cygclamav-1.dll - os=4.0 img=1.0 sys=4.0 "cygclamav-1.dll" v0.0 ts=2005/5/14 23:22 529k 2004/06/27 C:\cygwin\bin\cygcppunit-1-9-14.dll - os=4.0 img=1.0 sys=4.0 "cygcppunit-1-9-14.dll" v0.0 ts=2004/6/27 3:29 260k 2004/10/26 C:\cygwin\bin\cygcroco-0.6-3.dll - os=4.0 img=1.0 sys=4.0 "cygcroco-0.6-3.dll" v0.0 ts=2004/10/27 0:09 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 9:57 858k 2005/04/11 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.7.dll" v0.0 ts=2005/4/11 20:21 617k 2004/03/22 C:\cygwin\bin\cygcurl-2.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-2.dll" v0.0 ts=2004/3/22 16:52 22k 2004/02/10 C:\cygwin\bin\cygcygipc-2.dll - os=4.0 img=1.0 sys=4.0 "cygcygipc-2.dll" v0.0 ts=2004/2/10 3:48 380k 2002/07/24 C:\cygwin\bin\cygdb-3.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb-3.1.dll" v0.0 ts=2002/7/24 18:24 831k 2003/09/20 C:\cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.1.dll" v0.0 ts=2003/9/20 23:51 895k 2004/04/28 C:\cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.2.dll" v0.0 ts=2004/4/27 17:31 965k 2005/05/14 C:\cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.3.dll" v0.0 ts=2005/5/14 14:37 326k 2002/06/26 C:\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0 "cygdb2.dll" v0.0 ts=2002/6/26 19:48 487k 2002/07/24 C:\cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-3.1.dll" v0.0 ts=2002/7/24 18:25 1080k 2003/09/20 C:\cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.1.dll" v0.0 ts=2003/9/20 23:53 1156k 2004/04/28 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 17:35 1240k 2005/05/14 C:\cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.3.dll" v0.0 ts=2005/5/14 14:41 9k 2004/10/24 C:\cygwin\bin\cygdlloader-6.dll - os=4.0 img=1.0 sys=4.0 "cygdlloader-6.dll" v0.0 ts=2004/10/24 9:59 28k 2004/08/15 C:\cygwin\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0 "cygesd-0.dll" v0.0 ts=2004/8/16 1:31 94k 2004/06/07 C:\cygwin\bin\cygexif-10.dll - os=4.0 img=1.0 sys=4.0 "cygexif-10.dll" v0.0 ts=2004/6/7 10:53 174k 2004/10/14 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-0.dll" v0.0 ts=2004/10/14 10:34 65k 2005/01/08 C:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0 "cygexslt-0.dll" v0.0 ts=2005/1/8 14:27 654k 2003/11/04 C:\cygwin\bin\cygfltknox-0.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox-0.dll" v0.0 ts=2003/11/4 22:57 65k 2003/11/04 C:\cygwin\bin\cygfltknox_forms-0.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_forms-0.dll" v0.0 ts=2003/11/4 22:57 81k 2003/11/04 C:\cygwin\bin\cygfltknox_gl-0.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_gl-0.dll" v0.0 ts=2003/11/4 22:58 108k 2003/11/04 C:\cygwin\bin\cygfltknox_images-0.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_images-0.dll" v0.0 ts=2003/11/4 22:58 129k 2004/03/11 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontconfig-1.dll" v0.0 ts=2004/3/11 1:12 40k 2004/10/10 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2004/10/10 10:33 45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0 "cygform5.dll" v0.0 ts=2001/4/25 7:28 35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0 "cygform6.dll" v0.0 ts=2002/1/9 7:03 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 11:25 907k 2004/06/09 C:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0 "cygfpx-1.dll" v0.0 ts=2004/6/9 10:35 361k 2003/10/25 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-6.dll" v0.0 ts=2003/10/22 6:18 195k 2004/11/23 C:\cygwin\bin\cyggconf-2-4.dll - os=4.0 img=1.0 sys=4.0 "cyggconf-2-4.dll" v0.0 ts=2004/11/23 23:38 323k 2004/09/30 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0 "cyggcrypt-11.dll" v0.0 ts=2004/9/30 19:00 222k 2005/01/13 C:\cygwin\bin\cyggd-2.dll - os=4.0 img=1.0 sys=4.0 "cyggd-2.dll" v0.0 ts=2005/1/13 16:56 28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-3.dll" v0.0 ts=2003/7/20 9:58 30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2003/8/11 4:12 19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm.dll" v0.0 ts=2002/2/20 4:05 15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 10:00 15k 2003/08/11 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-4.dll" v0.0 ts=2003/8/11 4:13 195k 2004/09/02 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2004/9/2 20:31 394k 2004/12/31 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2004/12/30 21:59 79k 2004/12/31 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2004/12/30 21:36 56k 2004/12/31 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2004/12/30 23:45 116k 2004/10/10 C:\cygwin\bin\cyggeotiff-1.dll - os=4.0 img=1.0 sys=4.0 "cyggeotiff-1.dll" v0.0 ts=2004/10/11 1:55 107k 2004/07/06 C:\cygwin\bin\cyggettextlib-0-14-1.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-14-1.dll" v0.0 ts=2004/7/6 19:56 17k 2004/07/06 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2004/7/6 19:56 190k 2004/07/06 C:\cygwin\bin\cyggettextsrc-0-14-1.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-14-1.dll" v0.0 ts=2004/7/6 19:56 79k 2004/09/07 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2004/9/8 0:54 135k 2004/09/02 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2004/9/2 20:21 564k 2004/12/30 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2004/12/30 15:17 11k 2004/09/02 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2004/9/2 20:23 11k 2004/12/30 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2004/12/30 15:21 158k 2004/10/16 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2004/10/16 9:40 288k 2004/10/16 C:\cygwin\bin\cyggmpxx-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-3.dll" v0.0 ts=2004/10/16 9:40 76k 2004/10/28 C:\cygwin\bin\cyggnome-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnome-2-0.dll" v0.0 ts=2004/10/28 23:06 32k 2004/09/29 C:\cygwin\bin\cyggnome-keyring-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnome-keyring-0.dll" v0.0 ts=2004/9/29 8:27 167k 2004/09/24 C:\cygwin\bin\cyggnomecanvas-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomecanvas-2-0.dll" v0.0 ts=2004/9/24 4:42 377k 2004/11/04 C:\cygwin\bin\cyggnomeprint-2-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeprint-2-2-0.dll" v0.0 ts=2004/11/4 3:53 158k 2004/10/04 C:\cygwin\bin\cyggnomeprintui-2-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeprintui-2-2-0.dll" v0.0 ts=2004/10/4 4:57 541k 2004/10/29 C:\cygwin\bin\cyggnomeui-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeui-2-0.dll" v0.0 ts=2004/10/29 11:30 403k 2004/10/27 C:\cygwin\bin\cyggnomevfs-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomevfs-2-0.dll" v0.0 ts=2004/10/27 23:29 252k 2004/12/30 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2004/12/30 15:20 13k 2004/09/29 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0 "cyggpg-error-0.dll" v0.0 ts=2004/9/30 1:12 351k 2004/07/17 C:\cygwin\bin\cygGraphicsMagick++-0.dll - os=4.0 img=1.0 sys=4.0 "cygGraphicsMagick++-0.dll" v0.0 ts=2004/7/17 10:48 2170k 2004/07/17 C:\cygwin\bin\cygGraphicsMagick-0.dll - os=4.0 img=1.0 sys=4.0 "cygGraphicsMagick-0.dll" v0.0 ts=2004/7/17 10:46 1412k 2005/03/12 C:\cygwin\bin\cyggsl-0.dll - os=4.0 img=1.0 sys=4.0 "cyggsl-0.dll" v0.0 ts=2005/3/12 22:26 184k 2005/03/12 C:\cygwin\bin\cyggslcblas-0.dll - os=4.0 img=1.0 sys=4.0 "cyggslcblas-0.dll" v0.0 ts=2005/3/12 22:02 10k 2004/09/02 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2004/9/2 20:23 15k 2004/12/30 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2004/12/30 15:21 1293k 2004/09/02 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2004/9/2 20:44 2708k 2004/12/31 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2004/12/30 22:55 528k 2005/05/06 C:\cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0 "cygguile-12.dll" v0.0 ts=2005/5/6 11:46 640k 2004/10/12 C:\cygwin\bin\cygguile-16.dll - os=4.0 img=1.0 sys=4.0 "cygguile-16.dll" v0.0 ts=2004/10/12 16:42 17k 2005/05/06 C:\cygwin\bin\cygguile-ltdl-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-ltdl-1.dll" v0.0 ts=2005/5/6 11:44 5k 2004/10/12 C:\cygwin\bin\cygguile-ltdl-2.dll - os=4.0 img=1.0 sys=4.0 "cygguile-ltdl-2.dll" v0.0 ts=2004/10/12 13:02 11k 2004/10/12 C:\cygwin\bin\cygguile-srfi-srfi-1-v-2-2.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-1-v-2-2.dll" v0.0 ts=2004/10/12 16:42 68k 2005/05/06 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/5/6 11:46 4k 2004/10/12 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-2-2.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-2-2.dll" v0.0 ts=2004/10/12 16:43 31k 2005/05/06 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/5/6 11:46 22k 2004/10/12 C:\cygwin\bin\cygguile-srfi-srfi-4-v-2-2.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-2-2.dll" v0.0 ts=2004/10/12 16:42 12k 2005/05/06 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/5/6 11:46 11k 2004/10/12 C:\cygwin\bin\cygguilereadline-v-16-16.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-16-16.dll" v0.0 ts=2004/10/12 16:42 17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0 "cyghistory4.dll" v0.0 ts=2001/1/7 5:34 29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0 "cyghistory5.dll" v0.0 ts=2003/8/11 1:16 25k 2004/10/12 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2004/10/12 8:51 991k 2004/07/06 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2004/7/6 20:10 147k 2004/08/31 C:\cygwin\bin\cygIDL-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygIDL-2-0.dll" v0.0 ts=2004/8/31 4:00 22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0 "cygintl-1.dll" v0.0 ts=2001/12/13 10:28 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 23:50 54k 2004/07/06 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0 "cygintl-3.dll" v0.0 ts=2004/7/6 19:51 21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0 "cygintl.dll" v0.0 ts=2001/6/20 19:09 12k 2003/02/17 C:\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0 "cygioperm-0.dll" v0.0 ts=2003/2/17 20:58 241k 2004/08/06 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2004/8/6 17:17 48k 2003/08/10 C:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0 "cygjbig1.dll" v0.0 ts=2003/8/11 1:58 132k 2003/08/11 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2003/8/11 2:37 119k 2002/02/09 C:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg6b.dll" v0.0 ts=2002/2/9 6:19 60k 2004/09/27 C:\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0 "cygkpathsea-3.dll" v0.0 ts=2004/9/27 19:32 65k 2005/05/05 C:\cygwin\bin\cygkpathsea-4.dll - os=4.0 img=1.0 sys=4.0 "cygkpathsea-4.dll" v0.0 ts=2005/5/5 16:33 42k 2005/05/04 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/5/4 12:54 40k 2004/01/02 C:\cygwin\bin\cyglber-2.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2.dll" v0.0 ts=2004/1/2 12:11 156k 2004/06/04 C:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0 "cyglcms-1.dll" v0.0 ts=2004/6/4 16:00 179k 2005/05/04 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/5/4 13:03 194k 2004/01/02 C:\cygwin\bin\cygldap-2.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2.dll" v0.0 ts=2004/1/2 12:27 191k 2005/05/04 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/5/4 13:03 202k 2004/01/02 C:\cygwin\bin\cygldap_r-2.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2.dll" v0.0 ts=2004/1/2 12:27 101k 2004/09/18 C:\cygwin\bin\cyglightcomp.dll - os=4.0 img=1.0 sys=4.0 "cyglightcomp.dll" v0.0 ts=2004/9/18 21:39 26k 2004/09/22 C:\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-3.dll" v0.0 ts=2004/9/22 8:50 26k 2004/10/24 C:\cygwin\bin\cygltdl-6.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-6.dll" v0.0 ts=2004/10/24 9:59 146k 2004/12/21 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2004/12/21 15:34 369k 2004/08/11 C:\cygwin\bin\cygMagick++-6.dll - os=4.0 img=1.0 sys=4.0 "cygMagick++-6.dll" v0.0 ts=2004/8/11 8:04 3214k 2004/08/11 C:\cygwin\bin\cygMagick-6.dll - os=4.0 img=1.0 sys=4.0 "cygMagick-6.dll" v0.0 ts=2004/8/11 7:37 181k 2003/10/06 C:\cygwin\bin\cygmcrypt-4.dll - os=4.0 img=1.0 sys=4.0 "cygmcrypt-4.dll" v0.0 ts=2003/10/6 16:54 22k 2004/10/10 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2004/10/10 10:33 26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0 "cygmenu5.dll" v0.0 ts=2001/4/25 7:27 20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0 "cygmenu6.dll" v0.0 ts=2002/1/9 7:03 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 11:25 186k 2004/10/05 C:\cygwin\bin\cygmhash-2.dll - os=4.0 img=1.0 sys=4.0 "cygmhash-2.dll" v0.0 ts=2004/10/5 20:17 21k 2004/10/22 C:\cygwin\bin\cygminires.dll - os=4.0 img=1.0 sys=4.0 "cygminires.dll" v0.0 ts=2004/10/22 22:28 323k 2004/08/10 C:\cygwin\bin\cygmng-1.dll - os=4.0 img=1.0 sys=4.0 "cygmng-1.dll" v0.0 ts=2004/8/10 21:45 71k 2004/10/16 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2004/10/16 9:40 95k 2004/10/16 C:\cygwin\bin\cygmpfr-0.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-0.dll" v0.0 ts=2004/10/16 9:47 882k 2004/09/13 C:\cygwin\bin\cygnaim_core-0.dll - os=4.0 img=1.0 sys=4.0 "cygnaim_core-0.dll" v0.0 ts=2004/9/13 20:04 74k 2004/10/10 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2004/10/10 10:33 156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++5.dll" v0.0 ts=2001/4/25 7:29 175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++6.dll" v0.0 ts=2002/1/9 7:03 216k 2004/10/10 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2004/10/10 10:25 226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses5.dll" v0.0 ts=2001/4/25 7:17 202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses6.dll" v0.0 ts=2002/1/9 7:03 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 11:24 92k 2004/07/10 C:\cygwin\bin\cygneon-24.dll - os=4.0 img=1.0 sys=4.0 "cygneon-24.dll" v0.0 ts=2004/7/10 17:37 49k 2004/08/02 C:\cygwin\bin\cygogrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygogrove-0.dll" v0.0 ts=2004/8/2 17:41 304k 2004/10/11 C:\cygwin\bin\cygORBit-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-2-0.dll" v0.0 ts=2004/10/12 1:18 39k 2004/10/11 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2004/10/12 1:28 18k 2004/10/11 C:\cygwin\bin\cygORBitCosNaming-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBitCosNaming-2-0.dll" v0.0 ts=2004/10/12 1:27 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 16:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 18:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 18:07 13k 2004/10/10 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2004/10/10 10:32 15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0 "cygpanel5.dll" v0.0 ts=2001/4/25 7:27 12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0 "cygpanel6.dll" v0.0 ts=2002/1/9 7:03 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 11:24 196k 2005/01/08 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/1/8 22:19 138k 2005/01/08 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/1/8 22:36 33k 2005/01/08 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/1/8 22:39 37k 2005/01/08 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/1/8 22:35 17k 2005/01/08 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/1/8 22:38 62k 2003/12/11 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2003/12/11 18:01 63k 2003/04/11 C:\cygwin\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0 "cygpcre.dll" v0.0 ts=2003/4/11 10:31 9k 2003/12/11 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2003/12/11 18:01 61k 2003/04/11 C:\cygwin\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix.dll" v0.0 ts=2003/4/11 10:31 1252k 2005/01/27 C:\cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0 "cygperl5_8.dll" v0.0 ts=2005/1/27 11:17 168k 2003/08/10 C:\cygwin\bin\cygpng10.dll - os=4.0 img=1.0 sys=4.0 "cygpng10.dll" v0.0 ts=2003/8/11 0:31 173k 2003/08/10 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0 "cygpng12.dll" v0.0 ts=2003/8/11 0:35 170k 2002/01/21 C:\cygwin\bin\cygpng2.dll - os=4.0 img=1.0 sys=4.0 "cygpng2.dll" v0.0 ts=2002/1/21 2:05 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/9 7:45 575k 2004/10/10 C:\cygwin\bin\cygproj-0.dll - os=4.0 img=1.0 sys=4.0 "cygproj-0.dll" v0.0 ts=2004/10/11 0:57 108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0 "cygreadline4.dll" v0.0 ts=2001/1/7 5:34 148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0 "cygreadline5.dll" v0.0 ts=2003/8/11 1:16 144k 2004/10/12 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2004/10/12 8:51 685k 2005/01/18 C:\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0 "cygruby18.dll" v0.0 ts=2005/1/18 22:21 78k 2004/10/13 C:\cygwin\bin\cygsasl2-2.dll - os=4.0 img=1.0 sys=4.0 "cygsasl2-2.dll" v0.0 ts=2004/10/14 0:50 380k 2003/12/13 C:\cygwin\bin\cygsmi-2.dll - os=4.0 img=1.0 sys=4.0 "cygsmi-2.dll" v0.0 ts=2003/12/13 1:57 171k 2005/04/11 C:\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygssl-0.9.7.dll" v0.0 ts=2005/4/11 20:21 28k 2004/11/15 C:\cygwin\bin\cygstartup-notification-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygstartup-notification-1-0.dll" v0.0 ts=2004/11/15 4:59 125k 2005/04/13 C:\cygwin\bin\cygsvn_client-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_client-1-0.dll" v0.0 ts=2005/4/13 12:57 28k 2005/04/13 C:\cygwin\bin\cygsvn_delta-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_delta-1-0.dll" v0.0 ts=2005/4/13 12:51 23k 2005/04/13 C:\cygwin\bin\cygsvn_diff-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_diff-1-0.dll" v0.0 ts=2005/4/13 12:56 15k 2005/04/13 C:\cygwin\bin\cygsvn_fs-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_fs-1-0.dll" v0.0 ts=2005/4/13 12:53 113k 2005/04/13 C:\cygwin\bin\cygsvn_fs_base-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_fs_base-1-0.dll" v0.0 ts=2005/4/13 12:52 79k 2005/04/13 C:\cygwin\bin\cygsvn_fs_fs-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_fs_fs-1-0.dll" v0.0 ts=2005/4/13 12:52 8k 2005/04/13 C:\cygwin\bin\cygsvn_ra-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra-1-0.dll" v0.0 ts=2005/4/13 12:57 72k 2005/04/13 C:\cygwin\bin\cygsvn_ra_dav-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra_dav-1-0.dll" v0.0 ts=2005/4/13 12:57 16k 2005/04/13 C:\cygwin\bin\cygsvn_ra_local-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra_local-1-0.dll" v0.0 ts=2005/4/13 12:54 53k 2005/04/13 C:\cygwin\bin\cygsvn_ra_svn-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra_svn-1-0.dll" v0.0 ts=2005/4/13 12:54 83k 2005/04/13 C:\cygwin\bin\cygsvn_repos-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_repos-1-0.dll" v0.0 ts=2005/4/13 12:53 128k 2005/04/13 C:\cygwin\bin\cygsvn_subr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_subr-1-0.dll" v0.0 ts=2005/4/13 12:51 136k 2005/04/13 C:\cygwin\bin\cygsvn_wc-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_wc-1-0.dll" v0.0 ts=2005/4/13 12:56 230k 2004/10/04 C:\cygwin\bin\cygt1-5.dll - os=4.0 img=1.0 sys=4.0 "cygt1-5.dll" v0.0 ts=2004/10/4 23:44 18k 2004/10/04 C:\cygwin\bin\cygt1x-5.dll - os=4.0 img=1.0 sys=4.0 "cygt1x-5.dll" v0.0 ts=2004/10/4 23:44 247k 2004/12/07 C:\cygwin\bin\cygtidy-0-99-0.dll - os=4.0 img=1.0 sys=4.0 "cygtidy-0-99-0.dll" v0.0 ts=2004/12/7 15:34 299k 2004/10/10 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2004/10/10 23:55 281k 2003/02/24 C:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0 "cygtiff3.dll" v0.0 ts=2003/2/24 5:58 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/11 4:32 27k 2004/03/05 C:\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0 "cygungif-4.dll" v0.0 ts=2004/3/5 21:13 154k 2004/08/11 C:\cygwin\bin\cygWand-6.dll - os=4.0 img=1.0 sys=4.0 "cygWand-6.dll" v0.0 ts=2004/8/11 8:04 293k 2004/06/08 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2004/6/8 12:49 101k 2004/06/08 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2004/6/8 12:46 151k 2004/10/19 C:\cygwin\bin\cygwnck-1-4.dll - os=4.0 img=1.0 sys=4.0 "cygwnck-1-4.dll" v0.0 ts=2004/10/19 22:58 2689k 2002/11/16 C:\cygwin\bin\cygxerces-c21.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c21.dll" v0.0 ts=2002/11/16 5:07 2984k 2003/02/07 C:\cygwin\bin\cygxerces-c22.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c22.dll" v0.0 ts=2003/2/7 19:50 3006k 2003/10/12 C:\cygwin\bin\cygxerces-c23.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c23.dll" v0.0 ts=2003/10/12 4:36 3520k 2003/12/16 C:\cygwin\bin\cygxerces-c24.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c24.dll" v0.0 ts=2003/12/16 20:45 3416k 2004/02/21 C:\cygwin\bin\cygxerces-c25.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c25.dll" v0.0 ts=2004/2/21 7:49 1242k 2005/01/08 C:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0 "cygxml2-2.dll" v0.0 ts=2005/1/8 14:22 50k 2003/08/09 C:\cygwin\bin\cygXpm-noX4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-noX4.dll" v0.0 ts=2003/8/9 9:21 54k 2003/08/09 C:\cygwin\bin\cygXpm-X4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-X4.dll" v0.0 ts=2003/8/9 9:22 195k 2005/01/08 C:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0 "cygxslt-1.dll" v0.0 ts=2005/1/8 14:24 62k 2004/10/10 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2004/10/10 6:09 1227k 2005/05/25 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2005/5/26 1:38 Cygwin DLL version info: DLL version: 1.5.17 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 129 Shared data: 4 DLL identifier: cygwin1 Mount registry: 2 Cygnus registry name: Cygnus Solutions Cygwin registry name: Cygwin Program options name: Program Options Cygwin mount registry name: mounts v2 Cygdrive flags: cygdrive flags Cygdrive prefix: cygdrive prefix Cygdrive default prefix: Build date: Wed May 25 19:38:55 EDT 2005 Shared id: cygwin1S4 243k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0 "cygdps-1.dll" v0.0 ts=2005/2/23 15:42 26k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0 "cygdpstk-1.dll" v0.0 ts=2005/2/23 15:42 28k 2004/03/31 C:\cygwin\usr\X11R6\bin\cygDtPrint-1.dll - os=4.0 img=1.0 sys=4.0 "cygDtPrint-1.dll" v0.0 ts=2004/3/31 6:23 21k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontenc-1.dll" v0.0 ts=2005/2/23 15:45 282k 2003/10/28 C:\cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-9.dll" v0.0 ts=2003/10/18 8:44 36k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0 "cygFS-6.dll" v0.0 ts=2005/2/23 15:34 358k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0 "cygGL-1.dll" v0.0 ts=2005/2/23 15:39 438k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0 "cygGLU-1.dll" v0.0 ts=2005/2/23 15:41 140k 2004/08/06 C:\cygwin\usr\X11R6\bin\cygglut-3.dll - os=4.0 img=1.0 sys=4.0 "cygglut-3.dll" v0.0 ts=2004/8/6 16:43 75k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0 "cygICE-6.dll" v0.0 ts=2005/2/23 15:28 77k 2004/03/31 C:\cygwin\usr\X11R6\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0 "cygMrm-2.dll" v0.0 ts=2004/3/31 6:23 9k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0 "cygoldX-6.dll" v0.0 ts=2005/2/23 15:28 1413k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0 "cygOSMesa-4.dll" v0.0 ts=2005/2/23 15:39 20k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0 "cygpsres-1.dll" v0.0 ts=2005/2/23 15:42 30k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0 "cygSM-6.dll" v0.0 ts=2005/2/23 15:28 66k 2004/03/31 C:\cygwin\usr\X11R6\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0 "cygUil-2.dll" v0.0 ts=2004/3/31 6:23 877k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0 "cygX11-6.dll" v0.0 ts=2005/2/23 15:28 254k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2005/2/23 15:31 356k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-7.dll" v0.0 ts=2005/2/23 15:32 363k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-8.dll" v0.0 ts=2005/2/23 15:33 275k 2004/01/13 C:\cygwin\usr\X11R6\bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw3d-7.dll" v0.0 ts=2004/1/13 23:17 9k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcomposite-1.dll" v0.0 ts=2005/2/23 15:44 30k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2005/2/23 15:43 9k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0 "cygXdamage-1.dll" v0.0 ts=2005/2/23 15:44 7k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0 "cygXevie-1.dll" v0.0 ts=2005/2/23 15:43 49k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0 "cygXext-6.dll" v0.0 ts=2005/2/23 15:28 16k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2005/2/23 15:43 56k 2004/03/11 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0 "cygXft-1.dll" v0.0 ts=2003/11/18 2:42 63k 2004/03/23 C:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0 "cygXft-2.dll" v0.0 ts=2004/3/23 23:20 27k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2005/2/23 15:34 125k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2005/2/23 15:34 12k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbui-1.dll" v0.0 ts=2005/2/23 15:34 1294k 2004/03/31 C:\cygwin\usr\X11R6\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0 "cygXm-2.dll" v0.0 ts=2004/3/31 6:20 459k 2004/02/10 C:\cygwin\usr\X11R6\bin\cygXmHTML-0.dll - os=4.0 img=1.0 sys=4.0 "cygXmHTML-0.dll" v0.0 ts=2004/2/10 21:14 76k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0 "cygXmu-6.dll" v0.0 ts=2005/2/23 15:30 11k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2005/2/23 15:30 26k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXp-6.dll" v0.0 ts=2005/2/23 15:31 52k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-4.dll" v0.0 ts=2005/2/23 15:30 12k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2005/2/23 15:43 28k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0 "cygXrender-1.dll" v0.0 ts=2005/2/23 15:42 8k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0 "cygXRes-1.dll" v0.0 ts=2005/2/23 15:43 40k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0 "cygxrx-6.dll" v0.0 ts=2005/2/23 15:53 25k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0 "cygxrxnest-6.dll" v0.0 ts=2005/2/23 15:53 282k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0 "cygXt-6.dll" v0.0 ts=2005/2/23 15:29 27k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0 "cygXTrap-6.dll" v0.0 ts=2005/2/23 15:43 17k 2005/02/23 C:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2005/2/23 15:34 Checking for any Cygwin services... No Cygwin services found. Cygwin Package Information Last downloaded files to: C:\cygwin\home\Administrator\Downloads\cygwin Last downloaded files from: C:\cygwin\home\Administrator\Downloads\cygwin Package Version _update-info-dir 00245-1 a2ps 4.13-1 agetty 2.1-1 antiword 0.34-2 apache 1.3.33-1 apr 0.9.6-1 apr-util 0.9.6-1 ash 20040127-1 aspell 0.50.3-1 aspell-de 0.50.2-1 aspell-dev 0.50.3-1 aspell-doc 0.50.3-1 aspell-en 0.51.0-1 aspell-pl 0.50.2-1 astyle 1.15.3-3 atk 1.8.0-1 atk-devel 1.8.0-1 atk-doc 1.8.0-1 atk-runtime 1.8.0-1 audiofile 0.2.6-2 autoconf 2.59-1 autoconf-devel 2.59-1 autoconf-stable 2.13-5 automake 1.7.9-1 automake-devel 1.9.2-1 automake-stable 1.4p6-2 autossh 1.3-2 base-files 3.4-2 base-passwd 2.2-1 bash 2.05b-17 bc 1.06-2 binutils 20050520-1 bison 20030307-1 byacc 1.9-1 bzip2 1.0.2-6 c-client 2002e-3 c3270 3.2.20-1 cabextract 0.6-2 ccache 2.2-1 ccdoc 0.8.41-2 ccrypt 1.7-1 cgoban 1.9.14-1 check 0.9.1-1 chere 0.5-2 chkconfig 1.2.24h-1 clamav 0.85-1 clear 1.0-1 clisp 2.33.1-1 cmake 2.0.6-1 cocom 0.995-1 compface 1.4-5 coreutils 5.3.0-6 cpio 2.6-1 cppunit 1.9.14-1 cramfs 1.1-1 cron 3.0.1-19 crypt 1.1-1 ctags 5.5-4 ctetris 0.30-1 curl 7.11.1-1 curl-devel 7.11.1-1 cvs 1.11.17-1 cvsutils 0.2.3-1 cygipc 2.03-2 cygrunsrv 1.10-1 cygutils 1.2.8-1 cygwin 1.5.17-1 cygwin-doc 1.4-2 cygwin-x-doc 1.0.4-1 cyrus-sasl 2.1.19-3 d 1.2.0-1 db2 2.7.7-4 db3.1 3.1.17-2 db4.1 4.1.25-1 db4.2 4.2.52-1 db4.3 4.3.28-1 ddd 3.3.9-1 dejagnu 20021217-2 desktop-file-utils 0.10-1 diffstat 1.39-1 diffutils 2.8.7-1 distcc 2.16-1 docbook-xml42 4.2-3 docbook-xml43 4.3-1 docbook-xsl 1.68.1-1 doxygen 1.4.2_20050421-1 dpkg 1.10.4-2 e2fsimage 0.2.0-2 e2fsprogs 1.35-3 ec-fonts-mftraced 1.0.8-4 ed 0.2-1 editrights 1.01-1 ELFIO 1.0.2-1 emacs 21.2-13 emacs-el 21.2-13 emacs-leim 21.3.50-2 emacs-X11 21.2-13 email 2.3.2-2 enscript 1.6.3-3 epstool 3.07-1 esound 0.2.35-1 exif 0.6.9-1 exim 4.50-1 expat 1.95.8-1 expect 20030128-1 fetchmail 6.2.5-2 figlet 2.2-1 file 4.12-1 fileutils 4.1-3 findutils 20041227-1 flex 2.5.4a-3 fltk 1.1.4-2 fontconfig 2.2.2-1 fortune 1.99.1-1 freeglut 2.2.0-1 freetype2 2.1.5-1 fvwm 2.4.7-3 gawk 3.1.4-3 gcc 3.3.3-3 gcc-ada 3.3.3-3 gcc-core 3.3.3-3 gcc-g++ 3.3.3-3 gcc-g77 3.3.3-3 gcc-gdc 3.3.3-3 gcc-gpc 3.3.3-3 gcc-java 3.3.3-3 gcc-mingw 20040810-1 gcc-mingw-ada 20040810-1 gcc-mingw-core 20040810-1 gcc-mingw-g++ 20040810-1 gcc-mingw-g77 20040810-1 gcc-mingw-gpc 20040810-1 gcc-mingw-java 20040810-1 gcc-mingw-objc 20040810-1 gcc-objc 3.3.3-3 GConf2 2.8.1-1 gd 2.0.33-1 gdb 20041228-3 gdbm 1.8.3-7 gettext 0.14.1-1 gettext-devel 0.14.1-1 ghostscript-base 8.15-2 ghostscript-x11 8.15-2 glib 1.2.10-2 glib-devel 1.2.10-2 glib2 2.4.8-1 glib2-devel 2.4.8-1 glib2-doc 2.4.8-1 glib2-runtime 2.4.8-1 gmp 4.1.4-2 gnome-common 2.8.0-1 gnome-icon-theme 2.8.0-1 gnome-keyring 0.4.0-1 gnome-mime-data 2.4.1-1 gnome-vfs2 2.8.0-1 gnugo 3.6-1 gnupg 1.4.0-2 gnuplot 4.0.0-1 gperf 2.7.2-1 grace 5.1.18-1 GraphicsMagick 1.0.6-1 grep 2.5.1a-2 groff 1.18.1-2 gsl 1.6-1 gtk+ 1.2.10-2 gtk+-devel 1.2.10-2 gtk-doc 1.2-1 gtk2-x11 2.4.14-1 gtk2-x11-devel 2.4.14-1 gtk2-x11-doc 2.4.14-1 gtk2-x11-runtime 2.4.14-1 gtypist 2.7-2 guile 1.6.7-1 guile-devel 1.6.7-1 guile-doc 1.6.7-1 gv 3.5.8-2 gzip 1.3.5-1 help2man 1.33.1-1 hexedit 1.2.10-1 hicolor-icon-theme 0.5-1 ImageMagick 6.0.4-1 indent 2.2.9-1 inetutils 1.3.2-29 initscripts 0.9-1 intltool 0.31.2-1 ioperm 0.4-1 irc 20010101-3 jasper 1.701.0-1 jbigkit 1.5-3 jgraph 8.3-1 joe 3.3-2 jpeg 6b-11 keychain 2.5.3.1-1 lablgtk2 2.4.0-2 lcms 1.13-1 less 381-1 lesstif 0.93.94-2 lftp 2.6.10-2 libapr0 0.9.6-1 libaprutil0 0.9.6-1 libart_lgpl 2.3.16-1 libaspell15 0.50.3-1 libaudiofile-devel 0.2.6-2 libaudiofile0 0.2.6-2 libbonobo2 2.8.0-1 libbonobo2-devel 2.8.0-1 libbonobo2-doc 2.8.0-1 libbonobo20 2.8.0-1 libbonoboui2 2.8.0-1 libbz2_0 1.0.2-1 libbz2_1 1.0.2-6 libcharset1 1.9.2-1 libcroco 0.5.1-2 libcroco06 0.6.0-1 libdb2 2.7.7-4 libdb2-devel 2.7.7-4 libdb3.1 3.1.17-2 libdb3.1-devel 3.1.17-2 libdb4.1 4.1.25-1 libdb4.1-devel 4.1.25-1 libdb4.2 4.2.52-1 libdb4.2-devel 4.2.52-1 libdb4.3 4.3.28-1 libdb4.3-devel 4.3.28-1 libesound-devel 0.2.35-1 libesound0 0.2.35-1 libexif 0.6.9-1 libfontconfig-devel 2.2.0-2 libfontconfig1 2.2.2-1 libfpx 1.2.0.9-1 libfreetype26 2.1.5-1 libgc 6.4-1 libgcrypt 1.2.0-2 libgd-devel 2.0.33-1 libgd2 2.0.33-1 libgdbm 1.8.0-5 libgdbm-devel 1.8.3-7 libgdbm3 1.8.3-3 libgdbm4 1.8.3-7 libgeotiff 1.2.2-1 libgeotiff-devel 1.2.2-1 libgeotiff1 1.2.2-1 libgettextpo0 0.14.1-1 libglade2 2.4.0-1 libgnome2 2.8.0-1 libgnomecanvas2 2.8.0-1 libgnomeprint22 2.8.0.1-1 libgnomeprintui22 2.8.0-1 libgnomeui2 2.8.0-1 libgpg-error 1.0-2 libGraphicsMagick-devel 1.0.6-1 libGraphicsMagick0 1.0.6-1 libguile12 1.6.7-1 libguile12abi13 1.6.4-3 libguile16 1.7.1.20041006-1 libiconv 1.9.2-1 libiconv2 1.9.2-1 libIDL 0.8.3-2 libintl 0.10.38-3 libintl1 0.10.40-1 libintl2 0.12.1-3 libintl3 0.14.1-1 libjpeg62 6b-11 libjpeg6b 6b-8 libkpathsea3 2.0.2-15 libkpathsea4 3.0.0-3 libltdl3 1.5.10-1 libltdl6 1.9f_20041024-1 libMagick-devel 6.0.4-1 libMagick6 6.0.4-1 libmcrypt 2.5.7-2 libmcrypt-devel 2.5.7-2 libmng 1.0.8-1 libncurses-devel 5.4-1 libncurses5 5.2-1 libncurses6 5.2-8 libncurses7 5.3-4 libncurses8 5.4-1 libneon24 0.24.7-1 libopenldap2 2.1.25-1 libopenldap2_2_7 2.2.26-1 libpcre 4.1-1 libpcre0 4.5-1 libpng 1.2.5-4 libpng10 1.0.15-4 libpng10-devel 1.0.15-4 libpng12 1.2.5-4 libpng12-devel 1.2.5-4 libpng2 1.0.12-1 libpopt0 1.6.4-4 libproj-devel 4.4.8-1 libproj0 4.4.8-1 libreadline4 4.1-2 libreadline5 4.3-5 libreadline6 5.0-1 libsasl2 2.1.19-3 libsasl2-devel 2.1.19-3 libsmi 0.4.2-1 libtiff-devel 3.7.0beta2-1 libtiff3 3.6.0-2 libtiff4 3.6.0-5 libtiff5 3.7.0beta2-1 libtool 1.5b-1 libtool-devel 1.5.10-1 libtool-stable 1.4.3-2 libungif 4.1.0-3 libwmf 0.2.8.3-1 libwnck 2.8.1-1 libxerces-c21 2.1.0-1 libxerces-c22 2.2.0-1 libxerces-c23 2.3.0-4 libxerces-c24 2.4.0-4 libxerces-c25 2.5.0-1 libXft 2.1.6-1 libXft1 1.0.0-1 libXft2 2.1.6-1 libxml2 2.6.16-2 libxml2-devel 2.6.16-2 libxml2-doc 2.6.16-2 libxml2-python 2.6.16-2 libxslt 1.1.12-2 lighttpd 1.3.0-1 lilypond 2.4.6-1 lilypond-doc 2.4.6-1 links 0.99pre14-1 login 1.9-7 lynx 2.8.4-8 m4 1.4.3-1 make 3.80-1 man 1.5p-1 mathomatic 12.1e-1 mc 4.6.1-1 mhash 0.9.1-1 mhash-devel 0.9.1-1 mined 2000.10-1 mingw-bzip2 1.0.2-6 mingw-libbz2_1 1.0.2-6 mingw-runtime 3.7-1 mingw-zlib 1.2.2-1 minires 1.00-1 minires-devel 1.00-1 mktemp 1.5-3 more 2.11o-1 mt 2.3.1-1 mtd 20050419-1 mutt 1.4.2.1i-1 naim 0.11.7.2-1 nano 1.2.2-1 nasm 0.98.39-1 ncftp 3.1.7-1 ncurses 5.4-1 ncurses-demo 5.4-1 nedit 5.5-1 neon 0.24.7-1 netcat 1.10-2 nfs-server 2.3-1 ocaml 3.08.1-1 openbox 0.99.1-4 opengl 1.1.0-7 openjade 1.3.3-1 openldap 2.2.26-1 openldap-devel 2.2.26-1 OpenSP 1.5.1-1 openssh 4.1p1-1 openssl 0.9.7g-1 openssl-devel 0.9.7g-1 ORBit2 2.12.0-1 ORBit2-devel 2.12.0-1 pango 1.6.0-2 pango-devel 1.6.0-2 pango-doc 1.6.0-2 pango-runtime 1.6.0-2 par 1.52-1 patch 2.5.8-8 patchutils 0.2.30-1 pcre 4.5-1 pcre-devel 4.5-1 pcre-doc 4.5-1 pdksh 5.2.14-3 perl 5.8.6-4 perl-libwin32 0.191-4 perl-Win32-GUI 1.0-2 perl_manpages 5.8.6-4 pine 4.58-1 pinfo 0.6.8-1 ping 1.0-1 pkgconfig 0.17.2-2 popt 1.6.4-4 postgresql 7.4.5-1 pr3270 3.2.20-1 procmail 3.22-10 procps 3.2.5-1 proftpd 1.2.10-1 proj 4.4.8-1 psmisc 21.5-1 psutils 1.17-1 python 2.4.1-1 rcs 5.7-3 readline 5.0-1 rebase 2.3-1 robots 2.0-4 rpm 4.1-2 rpm-build 4.1-1 rpm-doc 4.1-1 rsync 2.6.3-1 ruby 1.8.2-2 rxvt 2.7.10-6 s3270 3.2.20-1 sed 4.1.4-1 setsid 0.0-3 sh-utils 2.0.15-5 shared-mime-info 0.15-1 sharutils 4.2.1-3 shutdown 1.7-1 splint 3.1.1-1 squid 2.4.STABLE7-1 ssmtp 2.60.9-3 startup-notification 0.8-1 stow 1.3.3-1 stunnel 4.04-3 subversion 1.1.4-1 subversion-devel 1.1.4-1 suite3270 3.2.20-1 sunrpc 4.0-3 SWI-Prolog 5.2.6-1 swig 1.3.24-1 sysvinit 2.84-4 t1lib 5.0.2-1 t1lib-x11 5.0.2-1 tar 1.13.25-5 tcl3270 3.2.20-1 tcltk 20030901-1 tcm 2.20-1 tcp_wrappers 7.6-1 tcsh 6.14.00-3 termcap 20050421-1 terminfo 5.4_20041009-1 tetex 3.0.0-3 tetex-base 3.0.0-3 tetex-bin 3.0.0-3 tetex-devel 3.0.0-3 tetex-doc 3.0.0-3 tetex-extra 3.0.0-3 tetex-tiny 3.0.0-3 tetex-x11 3.0.0-3 texinfo 4.8-1 TeXmacs 1.0.4-4 textutils 2.0.21-2 tidy 041206-1 tiff 3.7.0beta2-1 time 1.7-1 tin 1.6.2-3 transfig 3.2.4-2 ttcp 19980512-1 typespeed 0.4.4-1 tzcode 2005h-1 ucl 1.01-1 unison 2.10.2-4 unison2.10.2 2.10.2-4 unison2.12.0 2.12.0-2 unison2.9.1 2.9.1-2 unison2.9.20 2.9.20-2 units 1.77-1 unzip 5.50-5 upx 1.24-1 uw-imap 2002e-3 uw-imap-imapd 2002e-3 uw-imap-util 2002e-3 vim 6.3-1 w32api 3.2-1 w3m 0.5.1-1 wget 1.9.1-2 which 1.7-1 whois 4.6.14-1 WindowMaker 0.90.0-1 WordNet 2.0-1 wtf 0.0.4-6 X-start-menu-icons 1.0.3-2 X-startup-scripts 1.0.10-4 x2x 1.30-2 x3270 3.2.20-1 Xaw3d 1.5D-5 xemacs 21.4.17-1 xemacs-emacs-common 21.4.17-1 xemacs-mule-sumo 2005-05-05-1 xemacs-sumo 2005-05-05-1 xemacs-tags 21.4.17-1 xerces-c 2.5.0-1 xerces-c-devel 2.5.0-1 xerces-c-doc 2.5.0-1 xfig 3.2.4-6 xfig-bin 3.2.4-3 xfig-doc 3.2.4-2 xfig-etc 3.2.4-4 xfig-lib 3.2.4-6 xfig-man 3.2.4-2 XFree86-base 4.3.0-11 XFree86-bin 4.3.0-21 XFree86-bin-icons 4.3.0-7 XFree86-doc 4.3.0-2 XFree86-etc 4.3.0-12 XFree86-f100 4.3.0-2 XFree86-fcyr 4.3.0-2 XFree86-fenc 4.3.0-2 XFree86-fnts 4.3.0-2 XFree86-fscl 4.3.0-2 XFree86-fsrv 4.3.0-9 XFree86-html 4.3.0-10 XFree86-jdoc 4.3.0-2 XFree86-lib 4.3.0-3 XFree86-lib-compat 4.3.0-2 XFree86-man 4.3.0-10 XFree86-nest 4.3.0-8 XFree86-prog 4.3.0-21 XFree86-prt 4.3.0-6 XFree86-ps 4.3.0-2 XFree86-startup-scripts 4.3.0-1 XFree86-vfb 4.3.0-8 XFree86-xserv 4.3.0-68 XFree86-xwinclip 4.3.0-3 xgraph 12.1-1 xinetd 2.3.9-1 XmHTML 1.1.7-1 xmlto 0.0.18-1 xorg-x11-base 6.8.2.0-1 xorg-x11-bin 6.8.2.0-1 xorg-x11-bin-dlls 6.8.2.0-1 xorg-x11-bin-lndir 6.8.2.0-1 xorg-x11-devel 6.8.2.0-2 xorg-x11-etc 6.8.2.0-1 xorg-x11-f100 6.8.1.0-2 xorg-x11-fcyr 6.8.1.0-1 xorg-x11-fenc 6.8.1.0-1 xorg-x11-fnts 6.8.1.0-2 xorg-x11-fscl 6.8.1.0-1 xorg-x11-fsrv 6.8.2.0-1 xorg-x11-libs-data 6.8.2.0-1 xorg-x11-man-pages 6.8.2.0-1 xorg-x11-man-pages-html 6.8.2.0-1 xorg-x11-nest 6.8.2.0-1 xorg-x11-vfb 6.8.2.0-1 xorg-x11-xwin 6.8.2.0-2 xorg-x11-xwin-gl 6.8.2.0-2 xpdf 3.00-2 xpm-nox 4.2.0-4 xterm 196-1 xwinwm 0.0.5-1 zip 2.3-6 zlib 1.2.2-1 zsh 4.2.4-1 From keenerb@roleplayga.org Sun May 29 13:49:00 2005 From: keenerb@roleplayga.org (Brian Keener) Date: Sun, 29 May 2005 13:49:00 -0000 Subject: redirecting sound In-Reply-To: References: <86ll5zz1dz.fsf@zihua.cmconn.net> Message-ID: <4299C839.4060406@roleplayga.org> Alexander Gottwald wrote: >On Sat, 28 May 2005, Christopher Mark Conn wrote: > > > >>I'm using Cygwin/X on my Win2K laptop to connect to >>my FreeBSD box and I'd like to redirect the sound >>from Rhythmbox (or other music players on the FreeBSD >>box) to the laptop. >> >>Here is how I connect from the Win2K laptop: >> >> startx -> brings up an xterm >> ssh on the xterm >> run bsd commands on the xterm >> >>I can do this easily but the music now comes out of >>the speakers on the FreeBSD box. Since it's a wireless >>connection I'm not always where the speakers are. >> >>Thanks for any advice, >> >> > >ESound (or ESD) is designed for this purpose. I think it is available >as cygwin package. Check the documentation of that package on how to >setup the sound forwarding. > >bye > ago > > I have installed it and used it, it's not very complicated at all. If you have any trouble getting it to work I'd be more than happy to give you a hand. For some reason, it causes XMMS to lockup when I try to use ESD, but everything else seemed to work OK. Varka From Alexander.Gottwald@s1999.tu-chemnitz.de Sun May 29 16:53:00 2005 From: Alexander.Gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 29 May 2005 16:53:00 -0000 Subject: Read the FAQ! In-Reply-To: <6.1.2.0.0.20050528143347.01a3fec0@mail.mistral.net> References: <6.1.2.0.0.20050528143347.01a3fec0@mail.mistral.net> Message-ID: Darryl wrote: > Hi! > > I have been using cygwin for some time and have not upgraded as what I want > works, so if its not broken why fix it. My version is 4.2.0.67! > > I wanted to change my default cursor, had difficulty - so read the FAQ - > problem solved. I just had the Xsetroot command in the wrong order in the > startxwin.bat script. > > Would you recommend upgrading to the latest release just for the sake of it? I'd recommend upgrading because of some other fixes. In the past two years there have been many improvements to the multiwindow mode and stability fixes. bye ago NP: Stendal Blast - Im Morgenrot -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From cmc3list-win2k@yahoo.com Sun May 29 18:42:00 2005 From: cmc3list-win2k@yahoo.com (Christopher Mark Conn) Date: Sun, 29 May 2005 18:42:00 -0000 Subject: redirecting sound In-Reply-To: <4299C839.4060406@roleplayga.org> (Brian Keener's message of "Sun, 29 May 2005 09:48:41 -0400") References: <86ll5zz1dz.fsf@zihua.cmconn.net> <4299C839.4060406@roleplayga.org> Message-ID: <86u0klj2fr.fsf@zihua.cmconn.net> Varka writes about esd: > I have installed it and used it, it's not very complicated at all. If > you have any trouble getting it to work I'd be more than happy to give > you a hand. > > For some reason, it causes XMMS to lockup when I try to use ESD, but > everything else seemed to work OK. Thanks Varka, can you tell me how to set it up? Last night I tried running esd -tcp -public from my cygwin session on the win2k laptop and then setting the environment variable export ESPEAKER=:16001 on my freebsd box but when I tried to play music on xmms and rhythmbox the sound still came out of the speakers on the freebsd box. -- Chris Conn http://storm.cadcam.iupui.edu/~cmcgoat Austin, Texas, USA From Angelo.Graziosi@roma1.infn.it Mon May 30 17:08:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Mon, 30 May 2005 17:08:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 (CGF please comment) Message-ID: I pointed out a problem between Emacs (21.2-13, i.e. curr.) and Cygwin 1.5.17-1. You asked me others informations at which I replied: What are your comments? Thanks angelo. From polzin_spamprotect_@gmx.de Tue May 31 14:22:00 2005 From: polzin_spamprotect_@gmx.de (Tobias Polzin) Date: Tue, 31 May 2005 14:22:00 -0000 Subject: Ctrl got stuck Message-ID: <23063.1117549299@www70.gmx.net> Hi, first of all: Thanks for the great cygwin-xfree! I have one major problem with it: Occasionly (approx every 2 hours, sometimes every 5 minutes) it feels like the CTRL-modifier got stuck. I used "cat" and "emacs" to see, that in this situations pressing an "a" is interpreted as "CTRL-a". If I press "CTRL", the situation is back to normal, but pressing "AltGr-something" does not give the desired result and makes CTRL got stuck again. Using the funny "Show Cursor" option of the X-tray-icon repairs the behaviour... for some minutes or hours. Also starting a new xterm -window and closing it repaired the behaviour recently. I conjecture that it has something to do with AltGr. As I use the german keyboard-layout, I have to use AltGr a lot of times while programming C++. I start Xwin with: XWin -dpi 92 -multiwindow -clipboard -multiplemonitors -xkbvariant nodeadkeys -ac I mostly work with a Win2K (with desktop-twister) on a remote linux or colinux maschine. The AltGr hints in the FAQ did not help me, as they turn of AltGr completely and the problem is not the AltGr does not work correctly. In most cases it works. Any ideas? Regards, Tobias Polzin -- Weitersagen: GMX DSL-Flatrates mit Tempo-Garantie! Ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl From cgf-no-personal-reply-please@cygwin.com Tue May 31 16:19:00 2005 From: cgf-no-personal-reply-please@cygwin.com (Christopher Faylor) Date: Tue, 31 May 2005 16:19:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 In-Reply-To: References: Message-ID: <20050531161911.GA5745@trixie.casa.cgf.cx> On Sun, May 29, 2005 at 02:49:31PM +0200, Angelo Graziosi wrote: >---> Here is some answer to >---> >---> >---> >---> >---> With TASKMANAGER Emacs takes from 97% to 99% of CPU. >---> >---> Using your hints I have noted that if I do not start Emacs >---> the command >---> >---> procps auwx >---> >---> prints the data an returns to prompt. >---> >---> If I start Emacs the result is: >---> >---> >Administrator@graziosi-irci53 ~ >$ emacs& >[1] 1492 > >Administrator@graziosi-irci53 ~ >$ ps > PID PPID PGID WINPID TTY UID STIME COMMAND > 1448 1 1448 1448 con 500 13:05:15 >/usr/X11R6/bin/XWin > 1364 1 1364 1364 con 500 13:05:19 /usr/bin/xterm > 1384 1364 1384 1436 0 500 13:05:22 /usr/bin/bash > 1492 1384 1492 1416 0 500 13:06:27 /usr/bin/emacs > 1580 1384 1580 1572 0 500 13:06:30 /usr/bin/ps > >Administrator@graziosi-irci53 ~ >$ procps auwx >USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND >500 1448 1.4 4.2 6812 11068 tty0 Ss 13:05 0:01 >/usr/X11R6/bin/XWin -multiwindow -clipboard -silent-dup-error +bs >500 1364 0.6 2.8 4296 7376 tty0 Rs 13:05 0:00 >/usr/bin/xterm -e /usr/bin/bash -l -ms red -fg lightgray -bg black >500 1384 0.2 1.5 1620 4016 tty0 Ss 13:05 0:00 >/usr/bin/bash -l >---> >---> ... and after many minutes (i.e. after I lunched!): >---> >500 1492 107 2.9 7320 7752 tty0 R 13:06 0:10 >500 1564 1.0 1.4 2260 3676 tty0 R 13:06 0:00 procps This shows that emacs wasn't spinning although it was using some CPU. Other than that, there is nothing here which helps figure out why you are having problems. Is there anything in the X log file? >---> What does "WJFFM" mean? http://cygwin.com/acronyms/#WJFFM cgf From alexander.gottwald@s1999.tu-chemnitz.de Tue May 31 17:01:00 2005 From: alexander.gottwald@s1999.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 31 May 2005 17:01:00 -0000 Subject: Ctrl got stuck In-Reply-To: <23063.1117549299@www70.gmx.net> References: <23063.1117549299@www70.gmx.net> Message-ID: On Tue, 31 May 2005, Tobias Polzin wrote: > Hi, > > first of all: Thanks for the great cygwin-xfree! > > I have one major problem with it: Occasionly (approx every 2 hours, > sometimes every 5 minutes) it feels like the CTRL-modifier got stuck. I used > "cat" and "emacs" to see, that in this situations pressing an "a" is > interpreted as "CTRL-a". If I press "CTRL", the situation is back to normal, > but pressing "AltGr-something" does not give the desired result and makes > CTRL got stuck again. Using the funny "Show Cursor" option of the > X-tray-icon repairs the behaviour... for some minutes or hours. Also > starting a new xterm -window and closing it repaired the behaviour recently. > > I conjecture that it has something to do with AltGr. As I use the german > keyboard-layout, I have to use AltGr a lot of times while programming C++ It seems to appear more often under high load. But unfortunatly there is not much we can do about it. Windows reports alt-gr as simultanious presses of ctrl and alt and we have to detect whether it is alt-gr or the keys are really pressed together. Under heavy load the timeouts (and timestamps) of the events may differ between press and release events. That way you get a control press and an alt-gr release so control gets stuck. the only solution is making the detection more robust. bye ago -- Alexander.Gottwald@s1999.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 From jc.gervais@videotron.ca Tue May 31 17:08:00 2005 From: jc.gervais@videotron.ca (Jean-Claude Gervais) Date: Tue, 31 May 2005 17:08:00 -0000 Subject: Ctrl got stuck In-Reply-To: <23063.1117549299@www70.gmx.net> References: <23063.1117549299@www70.gmx.net> Message-ID: <1117559397.18607.55.camel@mercury> Tobias, if you were to type lots of AltGr key combinations, could you reproduce the problem every time? On Tue, 2005-05-31 at 16:21 +0200, Tobias Polzin wrote: > Hi, > > first of all: Thanks for the great cygwin-xfree! > > I have one major problem with it: Occasionly (approx every 2 hours, > sometimes every 5 minutes) it feels like the CTRL-modifier got stuck. I used > "cat" and "emacs" to see, that in this situations pressing an "a" is > interpreted as "CTRL-a". If I press "CTRL", the situation is back to normal, > but pressing "AltGr-something" does not give the desired result and makes > CTRL got stuck again. Using the funny "Show Cursor" option of the > X-tray-icon repairs the behaviour... for some minutes or hours. Also > starting a new xterm -window and closing it repaired the behaviour recently. > > I conjecture that it has something to do with AltGr. As I use the german > keyboard-layout, I have to use AltGr a lot of times while programming C++. > > I start Xwin with: > > XWin -dpi 92 -multiwindow -clipboard -multiplemonitors -xkbvariant > nodeadkeys -ac > > I mostly work with a Win2K (with desktop-twister) on a remote linux or > colinux maschine. > > The AltGr hints in the FAQ did not help me, as they turn of AltGr completely > and the problem is not the AltGr does not work correctly. In most cases it > works. > > Any ideas? > > Regards, > Tobias Polzin > From beauheim@cse.wustl.edu Tue May 31 22:03:00 2005 From: beauheim@cse.wustl.edu (Catherine Beauheim) Date: Tue, 31 May 2005 22:03:00 -0000 Subject: xstart fails Message-ID: <429CDD3A.8000801@cse.wustl.edu> Must be my day for frustrations. I have reloaded, rebooted, loaded, rebooted,cleaned out, reloaded, rebooted and still can't get the xwin to start. the message says to email this address with the version 6.8.2.0-2 with xwin command line as XWin - multiwindow -clipboard -silent-dup-error. I using XP. the XWin.log is: Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: XWin -multiwindow -clipboard -silent-dup-error ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1280 h 1024 inInitializeDefaultScreens - Returning _XSERVTransmkdir: Cannot create /tmp/.X11-unix with root ownership (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 1280 height: 1024 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winMultiWindowXMsgProc - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000409" (00000409) (--) Using preset keyboard for "English (USA)" (409), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! Fatal server error: could not open default font 'fixed' winDeinitMultiWindowWM - Noting shutdown in progress From Angelo.Graziosi@roma1.infn.it Tue May 31 22:12:00 2005 From: Angelo.Graziosi@roma1.infn.it (Angelo Graziosi) Date: Tue, 31 May 2005 22:12:00 -0000 Subject: Emacs problem with Cygwin 1.5.17-1 Message-ID: I remember you, that reinstalling Cygwin 1.5-16-1 (and keeping coreutils 5.3.0-6) Emacs works fine. I would keep 1.5.17-1 because it allow me to build CERNLIB-2005 with a limited number of patches (with 1.5.16-1 there is something more to patch) I have also tried XEmacs 21.4.17-1. It starts and the window shows itself, apparently without problems. Now XWin.log Thanks angelo. ================================ Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.2.0-2 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: /usr/X11R6/bin/XWin -multiwindow -clipboard -silent-dup-error +bs ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 800 h 600 winInitializeDefaultScreens - Returning _XSERVTransmkdir: Cannot create /tmp/.X11-unix with root ownership (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information (==) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 800 height: 600 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winMultiWindowXMsgProc - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shared memory support in the kernel (--) Setting autorepeat to delay=250, rate=31 (--) winConfigKeyboard - Layout: "00000410" (00000410) (--) Using preset keyboard for "Italian" (410), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list! winInitMultiWindowWM - pthread_mutex_lock () returned. winProcEstablishConnection - Hello winMultiWindowXMsgProc - pthread_mutex_lock () returned. winInitMultiWindowWM - pthread_mutex_unlock () returned. winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitClipboard () winProcEstablishConnection - winInitClipboard returned. winClipboardProc - Hello DetectUnicodeSupport - Windows NT/2000/XP winClipboardProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display. winClipboardProc - XOpenDisplay () returned and successfully opened the display. winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display. ================================