From Phil.Betts@ascribe.com Tue Sep 1 11:59:00 2009 From: Phil.Betts@ascribe.com (Phil Betts) Date: Tue, 01 Sep 2009 11:59:00 -0000 Subject: Problems starting "rxvt" from startxwin.bat In-Reply-To: <25185816.post@talk.nabble.com> References: <25185816.post@talk.nabble.com> Message-ID: <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> Jose Luis wrote: > I can start "xterm" from startxwin.bat: > > %RUN% xterm -e /usr/bin/bash -l > > but no "rxvt": > > %RUN% rxvt -bg white -fg black -e /bin/bash > > although it can be started from command line: > > jlfdiaz@JLFDIAZWXP ~ > $ rxvt -bg white -fg black -e /bin/bash & > > > Why does rvxt starting from startxwin.bat fail? This is almost certainly a timing issue. The line in the batch file that starts the server uses %RUN% to start it in the background. This means that the following commands in the batch file may execute before the X server has completed (or even started) its initialisation. I suspect that the reason the two terminals behave differently is that, xterm tries to connect to the server a number of times before giving up, whereas rxvt gives up at the first failure. Because the time taken to initialise the X server can vary, rather than using just sleep, I have added the following: REM wait up to 30 seconds for the X server set /a COUNT=0 :WAITFORX checkx -d %DISPLAY% if not errorlevel 1 goto FINISHOFF set /a COUNT+=1 if %COUNT% GEQ 30 goto NOX echo Waiting for X on display %DISPLAY% ... sleep 1 goto WAITFORX :NOX echo WARNING: X doesn't appear to have started exit /B 1 :FINISHOFF Jon/Yaakov, could this be added to the distributed startxwin.bat? Perhaps the warning could be extended to include instructions to check the log. Phil -- This email has been scanned by Ascribe Ltd using Microsoft Antigen for Exchange. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mike_ayers@tvworks.com Tue Sep 1 22:42:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Tue, 01 Sep 2009 22:42:00 -0000 Subject: Problems starting "rxvt" from startxwin.bat In-Reply-To: <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> References: <25185816.post@talk.nabble.com> <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0CF208B4@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of Phil Betts > Jose Luis wrote: > > I can start "xterm" from startxwin.bat: > > > > %RUN% xterm -e /usr/bin/bash -l > > > > but no "rxvt": > > > > %RUN% rxvt -bg white -fg black -e /bin/bash > > > > although it can be started from command line: > > > > jlfdiaz@JLFDIAZWXP ~ > > $ rxvt -bg white -fg black -e /bin/bash & Brutality is fun! %RUN% xterm -e "sh -c '(nohup rxvt -bg white -fg black -e /bin/bash &) && sleep 1'" HTH, Mike From forbesj@mail.nih.gov Thu Sep 3 13:52:00 2009 From: forbesj@mail.nih.gov (Jeff Forbes) Date: Thu, 03 Sep 2009 13:52:00 -0000 Subject: composite extension Message-ID: <7.0.1.0.2.20090903095025.054042d0@mail.nih.gov> Hi, I have been unable to find how to disable the composite extension. Can anyone tell me how this can be done. Jeff -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Thu Sep 3 15:13:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 03 Sep 2009 15:13:00 -0000 Subject: composite extension In-Reply-To: <7.0.1.0.2.20090903095025.054042d0@mail.nih.gov> References: <7.0.1.0.2.20090903095025.054042d0@mail.nih.gov> Message-ID: <4A9FDD24.9030907@dronecode.org.uk> On 03/09/2009 14:51, Jeff Forbes wrote: > Hi, > > I have been unable to find how to disable > the composite extension. > Can anyone tell me how this can be done. from 'man Xserver' > > ???extension extensionName > disables named extension. If an unknown extension name is specified, a list of > accepted extension names is printed. > > +extension extensionName > enables named extension. If an unknown extension name is specified, a list of > accepted extension names is printed. So adding '-extension Composite' to the command line used to start the X server should do what you want. Just out of curiosity: why do you want to disable the composite extension? -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Thu Sep 3 16:10:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 03 Sep 2009 16:10:00 -0000 Subject: Problems starting "rxvt" from startxwin.bat In-Reply-To: <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> References: <25185816.post@talk.nabble.com> <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> Message-ID: <4A9FEA96.7010505@dronecode.org.uk> On 01/09/2009 12:58, Phil Betts wrote: > Jose Luis wrote: >> I can start "xterm" from startxwin.bat: >> >> %RUN% xterm -e /usr/bin/bash -l >> >> but no "rxvt": >> >> %RUN% rxvt -bg white -fg black -e /bin/bash >> >> although it can be started from command line: >> >> jlfdiaz@JLFDIAZWXP ~ >> $ rxvt -bg white -fg black -e /bin/bash& >> >> >> Why does rvxt starting from startxwin.bat fail? > > This is almost certainly a timing issue. The line in the batch file > that starts the server uses %RUN% to start it in the background. This > means that the following commands in the batch file may execute before > the X server has completed (or even started) its initialisation. Argh, yes. > I suspect that the reason the two terminals behave differently is > that, xterm tries to connect to the server a number of times before > giving up, whereas rxvt gives up at the first failure. > > Because the time taken to initialise the X server can vary, rather > than using just sleep, I have added the following: > > REM wait up to 30 seconds for the X server > set /a COUNT=0 > :WAITFORX > checkx -d %DISPLAY% > if not errorlevel 1 goto FINISHOFF > set /a COUNT+=1 > if %COUNT% GEQ 30 goto NOX > echo Waiting for X on display %DISPLAY% ... > sleep 1 > goto WAITFORX > > :NOX > echo WARNING: X doesn't appear to have started > exit /B 1 > > :FINISHOFF > > > Jon/Yaakov, could this be added to the distributed startxwin.bat? > Perhaps the warning could be extended to include instructions to > check the log. Yes, this needs fixing. But DOS batch scripts make me sad, so I was thinking that I could just replace the contents of startxwin.bat with something like "%RUN% startxwin.sh" Is there a reason why we can't do 'checkx -d %DISPLAY% -t 30' rather than counting up to 30 ourselves? This also adds run2 as a dependency of the xinit package which owns these scripts. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cygwin@cwilson.fastmail.fm Thu Sep 3 17:16:00 2009 From: cygwin@cwilson.fastmail.fm (Charles Wilson) Date: Thu, 03 Sep 2009 17:16:00 -0000 Subject: Problems starting "rxvt" from startxwin.bat In-Reply-To: <4A9FEA96.7010505@dronecode.org.uk> References: <25185816.post@talk.nabble.com> <5E25AF06EFB9EA4A87C19BC98F5C8753044413E7@core-email.int.ascribe.com> <4A9FEA96.7010505@dronecode.org.uk> Message-ID: <4A9FF9B5.8020100@cwilson.fastmail.fm> Jon TURNEY wrote: > Is there a reason why we can't do 'checkx -d %DISPLAY% -t 30' rather > than counting up to 30 ourselves? Well, -t with a number larger than 12 is not useful. Xlib itself will timeout after 12 seconds if it can't contact the xserver. The -t option for checkx (and run2) simply says how long checkx will wait for the worker thread that's actually trying to contact the Xserver, before giving up and detaching the thread. -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From noreply@tasweak.9966.org Fri Sep 4 09:36:00 2009 From: noreply@tasweak.9966.org (Mohammad) Date: Fri, 04 Sep 2009 09:36:00 -0000 Subject: =?UTF-8?B?2KfYs9mE2KfZhdmK2KfYqiA=?= Message-ID: <27bac8ea5e07cd54b9edecaaedbf432d@www.tasweak.9966.org> ???????? " ????????? ?????? " ??????????? ?????????? ?????? ??? ?????? ????? ???????? ???????? ???????? ??????? ??? ????????? ??? ???????????????? ?????????? ????????? ?????? ???????? ????? 8 ???????????? ?????????? ?????? ???????? 89420 ?????????????????? ???????????????? ???????????????? ??? ?????????? - ?????????? ???????????? - ?????????? ?????????????? ? ?? ?????????? ???????? ? ??????? ?? -- To unsubscribe from this list visit http://tasweak.9966.org/lists/?p=unsubscribe&uid=80501571225223555cb12dd2ee43cde2 To update your preferences visit http://tasweak.9966.org/lists/?p=preferences&uid=80501571225223555cb12dd2ee43cde2 -- Powered by PHPlist, www.phplist.com -- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cygwin@cwilson.fastmail.fm Fri Sep 4 21:11:00 2009 From: cygwin@cwilson.fastmail.fm (Charles Wilson) Date: Fri, 04 Sep 2009 21:11:00 -0000 Subject: [1.7] On checkX In-Reply-To: <4A98F026.7070002@alice.it> References: <4A98F026.7070002@alice.it> Message-ID: <4AA18269.3070607@cwilson.fastmail.fm> Angelo Graziosi wrote: > Charles Wilson wrote: >> Unfortunately, I can't reproduce. > > Ugh! I forgot to say that I start those scripts with links on desktop... > > For example: > > mkshortcut -AD \ > -n "${urxvt}" \ > -a "bash -l start_urxvt.sh" \ > -i /usr/bin/XWin.exe \ > -d "Console unicode" \ > /usr/bin/run.exe Using a short cut to my script, just like your shortcut (except mine is on my own desktop, not all-users'), I...can't reproduce your problem. WJJFM. > Indeed, if I start the script from Cygwin.bat, there is not > checkX.exe.stackdump in the HOME! It is created ONLY starting the script > with the link... > > ...and, in that case, the lines: > > [...] > while ! /usr/bin/checkX > do > printf "waiting for xserver to start\n" > sleep 1 > done > [...] > > cause a NON-empty checkX.exe.stackdump: > > $ cat checkX.exe.stackdump > Exception: STATUS_ACCESS_VIOLATION at eip=6E7C3CD0 I don't know what to tell you. Please try to use the -debug options, as I recommended before. > Not only, also a bad interference between XWin and clipboard: trying to > copy/paste (double click in urxvt shell), they hang and when I try to > 'Restart Now' the PC, Windows says 'xwinclip has not finished yet...' Also can't reproduce. WJFFM. > Now, If I want start your script from the link, How can I capture the > output? > > For example, I have tried modifying it with: Try this: ==================================================== #!/bin/sh export DISPLAY=127.0.0.1:0.0 let -a n=0 DBGLVL=1 start_XWin() { # Cleanup from last run. rm -rf /tmp/.X11-unix printf "starting xserver\n" >>~/checkX_${n}.log XWin -multiwindow -clipboard -silent-dup-error 2>/dev/null & } /usr/bin/checkX --debug=$DBGLVL >~/checkX_${n}.log 2>&1 || start_XWin n=`expr $n + 1` while ! /usr/bin/checkX --debug=$DBGLVL >~/checkX_${n}.log 2>&1 do printf "waiting for xserver to start [$n]\n" >>~/checkX_${n}.log sleep 1 n=`expr $n + 1` done sleep 1 /usr/bin/urxvt-X & ==================================================== -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cygwin@cwilson.fastmail.fm Fri Sep 4 21:27:00 2009 From: cygwin@cwilson.fastmail.fm (Charles Wilson) Date: Fri, 04 Sep 2009 21:27:00 -0000 Subject: [1.7] On checkX In-Reply-To: <4AA18269.3070607@cwilson.fastmail.fm> References: <4A98F026.7070002@alice.it> <4AA18269.3070607@cwilson.fastmail.fm> Message-ID: <4AA18641.3020400@cwilson.fastmail.fm> Charles Wilson wrote: > Angelo Graziosi wrote: >> Charles Wilson wrote: >>> Unfortunately, I can't reproduce. >> Ugh! I forgot to say that I start those scripts with links on desktop... >> >> For example: >> >> mkshortcut -AD \ >> -n "${urxvt}" \ >> -a "bash -l start_urxvt.sh" \ >> -i /usr/bin/XWin.exe \ >> -d "Console unicode" \ >> /usr/bin/run.exe > > Using a short cut to my script, just like your shortcut (except mine is > on my own desktop, not all-users'), I...can't reproduce your problem. WJJFM. Hmm. Spoke too soon. It appears, that if I turn on --debug, then I get the 5 [main] checkX 5048 fhandler_console::fixup_after_fork_exec: error opening input console handle for /dev/console after fork/exec, errno 13, Win32 error 5 2342 [main] checkX 5048 fhandler_console::fixup_after_fork_exec: error opening output console handle for /dev/console after fork/exec, errno 13, Win32 error errors in my log, but only when launching from a shortcut. However, I think that's expected...since checkX deliberately does not allocate a console, and is *supposed* to use the presence/absence of a console to determine whether to create MessageBoxes for log entries, or send them to the (redirected?) stdout. Try adding --notty to each invocation of checkX...that works for me. It's annoying, but it works and allows you to see the debug messages. Interestingly, the log files are now much smaller as expected -- what isn't expected is they STILL get the fhandler_console error messages. I wonder if /that/ is just a cygwin bug, in that it tries to open the consoles of an exec'ed program, even if that program is not a console program...I'll look in to that, later. -- Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From angelo.graziosi@alice.it Sat Sep 5 08:30:00 2009 From: angelo.graziosi@alice.it (Angelo Graziosi) Date: Sat, 05 Sep 2009 08:30:00 -0000 Subject: [1.7] On checkX Message-ID: <4AA2218A.8090104@alice.it> Charles Wilson wrote: > Try this: I have tried your script. It creates 6 logs (attached) and NO stackdump!!. But if one tries to copy/paste something, the 'clipboard'/system hangs... > Try adding --notty to each invocation of checkX...that works for me. It seems that it works also for me! It creates only 2 logs (without stackdump and clipboard problems): $ cat checkX_0.log checkX_1.log 5 [main] checkX 3612 fhandler_console::fixup_after_fork_exec: error opening input console handle for /dev/console after fork/exec, errno 13, Win32 error 5 958 [main] checkX 3612 fhandler_console::fixup_after_fork_exec: error opening output console handle for /dev/console after fork/exec, errno 13, Win32 error 5 starting xserver 4 [main] checkX 3876 fhandler_console::fixup_after_fork_exec: error opening input console handle for /dev/console after fork/exec, errno 13, Win32 error 5 19455 [main] checkX 3876 fhandler_console::fixup_after_fork_exec: error opening output console handle for /dev/console after fork/exec, errno 13, Win32 error 5 but the massages of checkX are flagged by Windows to which one should click OK, OK,... Anyway, currently, I am adopting another way to start X and friends, a method that does not uses checkX. Cheers, Angelo. -------------- next part -------------- A non-text attachment was scrubbed... Name: checkX-logs.tar.bz2 Type: application/octet-stream Size: 1267 bytes Desc: not available URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Sun Sep 6 04:29:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Sun, 06 Sep 2009 04:29:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: fontconfig-2.7.1-1 Message-ID: The following packages have been updated for Cygwin 1.7: *** fontconfig-2.7.1-1 *** libfontconfig1-2.7.1-1 *** libfontconfig-devel-2.7.1-1 This is an update to the latest upstream release. The Ghostscript font directory and the two most common Windows font directories have been added to the default search path, so most users should find many more fonts available. I hope to provide a more foolproof handling of the Windows font directory in future releases. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Sun Sep 6 04:39:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Sun, 06 Sep 2009 04:39:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xorg-server-1.6.3-1 Message-ID: The following package has been updated for Cygwin 1.7: * xorg-server-1.6.3-1 This is an update to the latest stable version. The following patch has been applied to this release: * Fix NET_WM_ICON converters to not use icon alpha on Win2K or <32-bit display. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:12:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:12:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: GNOME 2.26 Platform Message-ID: The GNOME Platform libraries have been updated to the latest stable GNOME release. GNOME 2.26 adds many new APIs and features, particularly to Glib and GTK+, and deprecates others, while maintaining API compatibility with earlier 2.x releases. GNOME 2.26 can be installed in parallel with the GNOME 1.4 libraries and the future GNOME 3 libraries. Packages have been completely reorganized for consistency; upgrading should be automatic. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:12:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:12:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: gvim-7.2.245-1 Message-ID: The following package has been updated for Cygwin 1.7: *** gvim-7.2.245-1 gVim provides a GTK+ GUI for the vim text editor. This release is an update to the latest patch for 7.2, and was built for GNOME 2.26. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:13:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:13:00 -0000 Subject: [ANNOUNCEMENT] [1.7] New: dbus-glib-0.80-10 Message-ID: The following packages have been added to the Cygwin 1.7 distribution: *** dbus-bash-completion 0.80-10 *** libdbus-glib_1_2 0.80-10 *** libdbus-glib_1-devel 0.80-10 dbus-glib is a GObject wrapper of the D-Bus IPC reference implementation, and is used within GNOME in lieu of ORBit2, which has been deprecated. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:13:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:13:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: gamin-0.1.10-10 Message-ID: The following packages have been updated for Cygwin 1.7: *** gamin-0.1.10-10 *** libfam0-0.1.10-10 *** libfam-devel-0.1.10-10 *** libgamin1_0-0.1.10-10 *** libgamin1-devel-0.1.10-10 *** libgamin1_0-0.1.10-1 *** python-gamin-0.1.10-10 This release is the first built for Cygwin 1.7 with gcc-4.3. The fsset configuration command is now supported, as documented on the gamin homepage[1]. [1] http://www.gnome.org/~veillard/gamin/config.html Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:23:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:23:00 -0000 Subject: [ANNOUNCEMENT] [1.7] New: python-cairo-1.8.6-1 Message-ID: The following package has been added to the Cygwin 1.7 distribution: * python-cairo-1.8.6-1 pycairo provides Python bindings to the cairo vector graphics library. It is a prerequisite of the updated python-gtk2.0. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 02:27:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 02:27:00 -0000 Subject: [ANNOUNCEMENT] [1.7] New: icon-naming-utils-0.8.90-1 Message-ID: The following package has been added to the Cygwin 1.7 distribution: *** icon-naming-utils-0.8.90-1 icon-naming-utils is a Perl script which helps transition desktop icon themes to the FD.o Icon Naming Specification. Basically, it creates symlinks from the Spec-compliant names to the names traditionally used by the major GUI toolkits (GTK+/GNOME, KDE, Xfce). This is a build-time only requirement for the GNOME and Tango icon themes. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 03:15:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 03:15:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: shared-mime-info-0.60-2 Message-ID: The following package has been updated for Cygwin 1.7: *** shared-mime-info-0.60-2 This package provides the FreeDesktop.org MIME type database. This release is an update to the latest upstream version. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 7 03:15:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 07 Sep 2009 03:15:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: desktop-file-utils-0.15-2 Message-ID: The following package has been updated for Cygwin 1.7: *** desktop-file-utils-0.15-2 This package provides several utilities for working with FreeDesktop.org .desktop menu files. This release is an update to the latest upstream version. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marten.gustafsson@holisticode.se Mon Sep 7 10:38:00 2009 From: marten.gustafsson@holisticode.se (=?windows-1257?Q?M=E5rten_Gustafsson?=) Date: Mon, 07 Sep 2009 10:38:00 -0000 Subject: xdmcp cygwin 1.7 vista problem Message-ID: When trying to connect to a linux sytem from a Vista using xdmcp i get a strange error. 2009-09-07 12:06:51 XDMCP fatal error: Session failed Session 173248003 failed for display 192.168.0.102:0: cannot open display As you can see from my network config, I have no adapter on this network address. I am using a wirless connection with ipadress 192.168.1.106. The same version of cygwin works flawlessly from a wired XP box. $ipconfig IP-konfiguration f?r Windows Ethernet-anslutning Anslutning till lokalt n?tverk 2: Anslutningsspecifika DNS-suffix . : IPv4-adress . . . . . . . . . . . : 169.254.2.2 N?tmask . . . . . . . . . . . . . : 255.255.255.0 Standard-gateway. . . . . . . . . : Tr?dl?s anslutning Tr?dl?s n?tverksanslutning: Anslutningsspecifika DNS-suffix . : L?nklokal IPv6-adress . . . . . . : fe80::348f:ddce:6dd8:ebe1%12 IPv4-adress . . . . . . . . . . . : 192.168.1.106 N?tmask . . . . . . . . . . . . . : 255.255.255.0 Standard-gateway. . . . . . . . . : 192.168.1.1 Ethernet-anslutning Anslutning till lokalt n?tverk: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : Ethernet-anslutning VMware Network Adapter VMnet1: Anslutningsspecifika DNS-suffix . : L?nklokal IPv6-adress . . . . . . : fe80::5d03:e9c0:3c9:faaa%21 IPv4-adress . . . . . . . . . . . : 192.168.223.1 N?tmask . . . . . . . . . . . . . : 255.255.255.0 Standard-gateway. . . . . . . . . : Ethernet-anslutning VMware Network Adapter VMnet8: Anslutningsspecifika DNS-suffix . : L?nklokal IPv6-adress . . . . . . : fe80::6167:7316:568a:d4bb%23 IPv4-adress . . . . . . . . . . . : 192.168.32.1 N?tmask . . . . . . . . . . . . . : 255.255.255.0 Standard-gateway. . . . . . . . . : Tunnelanslutning: Anslutning till lokalt n?tverk* 11: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : Tunnelanslutning: Anslutning till lokalt n?tverk* 6: Anslutningsspecifika DNS-suffix . : IPv6-adress . . . . . . . . . . . : 2001:0:cf2e:3096:1c79:bb9:3f57:fe95 L?nklokal IPv6-adress . . . . . . : fe80::1c79:bb9:3f57:fe95%10 Standard-gateway. . . . . . . . . : :: Tunnelanslutning: Anslutning till lokalt n?tverk* 7: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : Tunnelanslutning: Anslutning till lokalt n?tverk* 13: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : Tunnelanslutning: Anslutning till lokalt n?tverk* 15: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : Tunnelanslutning: Anslutning till lokalt n?tverk* 16: Tillst?nd . . . . . . . . . . . . : Fr?nkopplad Anslutningsspecifika DNS-suffix . : -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Sep 7 12:33:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 07 Sep 2009 12:33:00 -0000 Subject: xdmcp cygwin 1.7 vista problem In-Reply-To: References: Message-ID: <4AA4FD9C.3020206@dronecode.org.uk> On 07/09/2009 11:37, M??rten Gustafsson wrote: > When trying to connect to a linux sytem from a Vista using xdmcp i get a > strange error. > > 2009-09-07 12:06:51 XDMCP fatal error: Session failed Session 173248003 > failed for display 192.168.0.102:0: cannot open display > > As you can see from my network config, I have no adapter on this network > address. I am using a wirless connection with ipadress 192.168.1.106. The > same version of cygwin works flawlessly from a wired XP box. Hmm.... You may find that using the -from command line parameter (documented in 'man Xserver') to force the local address used may help, but it's still a bit mysterious where this address comes from... Perhaps you could oblige me with the output from Corinna's test program which dumps getaddrinfo output [1] [1] http://cygwin.com/ml/cygwin-xfree/2009-07/msg00002.html > > ???from local???address > specifies the local address to connect from (useful if the connecting host has multiple > network interfaces). The local???address may be expressed in any form acceptable to the > host platform???s gethostbyname(3) implementation. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Sep 7 16:33:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 07 Sep 2009 16:33:00 -0000 Subject: Fwd: SV: xdmcp cygwin 1.7 vista problem Message-ID: <4AA535E4.1050809@dronecode.org.uk> I forgot to set the Reply-To: correctly -------- Original Message -------- Subject: SV: xdmcp cygwin 1.7 vista problem Date: Mon, 7 Sep 2009 15:37:23 +0200 From: M??rten Gustafsson To: 'Jon TURNEY' Hi Jon There is a reported interface with this network address. I also have a VmWare workstation installed using network addresses 192.168.233.0 and 192.168.32.0. Name : {A25BE539-596E-4515-8BB0-1079F18C3634} Flags: 11003 Addr : 0.0.0.0 Mask : 255.0.0.0 Bcast: Name : {41309F47-DA5B-4EDA-A59D-3E8462BAFE5B} Flags: 11003 Addr : 0.0.0.0 Mask : 255.0.0.0 Bcast: Name : {AF453E9D-43D6-4BC0-8E7F-49301F590B70} Flags: 11003 Addr : 192.168.0.102 Mask : 255.255.255.0 Bcast: Name : {72C1F9C4-DF75-46EF-8635-F5760B7E5000} Flags: 11003 Addr : 169.254.2.2 Mask : 255.255.255.0 Bcast: Name : {9C2E8448-9C9A-48F2-A230-645A43C2DAD8} Flags: 11041 Addr : fe80::348f:ddce:6dd8:ebe1 Mask : ffff:ffff:ffff:ffff:: Bcast: Name : {9C2E8448-9C9A-48F2-A230-645A43C2DAD8}:1 Flags: 11043 Addr : 192.168.1.106 Mask : 255.255.255.0 Bcast: 192.168.1.255 Name : {B417521F-F617-462A-9E6A-599C0E6C88B4} Flags: 11003 Addr : 192.168.1.101 Mask : 255.255.255.0 Bcast: Name : {E1997C5F-8B09-4D7C-9D94-A1673DD859A8} Flags: 11041 Addr : fe80::5d03:e9c0:3c9:faaa Mask : ffff:ffff:ffff:ffff:: Bcast: Name : {E1997C5F-8B09-4D7C-9D94-A1673DD859A8}:1 Flags: 11043 Addr : 192.168.223.1 Mask : 255.255.255.0 Bcast: 192.168.223.255 Name : {2B1FA4AD-C7E5-4EC0-911B-05DDB952001E} Flags: 11041 Addr : fe80::6167:7316:568a:d4bb Mask : ffff:ffff:ffff:ffff:: Bcast: Name : {2B1FA4AD-C7E5-4EC0-911B-05DDB952001E}:1 Flags: 11043 Addr : 192.168.32.1 Mask : 255.255.255.0 Bcast: 192.168.32.255 Name : {C328FED4-6A85-11DB-9FBD-806E6F6E6963} Flags: 11049 Addr : ::1 Mask : ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff Bcast: Name : {C328FED4-6A85-11DB-9FBD-806E6F6E6963}:1 Flags: 11049 Addr : 127.0.0.1 Mask : 255.0.0.0 Bcast: 127.255.255.255 Name : {50C56876-75C8-4C5A-BE13-893910E544CC} Flags: 11041 Addr : 2001:0:cf2e:3096:23:1262:3f57:fe95 Mask : ffff:ffff:ffff:ffff:: Bcast: Name : {50C56876-75C8-4C5A-BE13-893910E544CC} Flags: 11041 Addr : fe80::23:1262:3f57:fe95 Mask : ffff:ffff:ffff:ffff:: Bcast: Name : {DA83C027-8281-440D-91F8-043EA42A7514} Flags: 10001 Addr : fe80::5efe:c0a8:16a Mask : ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff Bcast: Name : {4CCE0A40-1B0F-4309-828E-F97474CE69A6} Flags: 10001 Addr : fe80::5efe:c0a8:df01 Mask : ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff Bcast: Name : {88EF0DCB-6011-465B-AA80-E77C50006365} Flags: 10001 Addr : fe80::5efe:c0a8:2001 Mask : ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff Bcast: /M??rten > -----Ursprungligt meddelande----- > Fr??n: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Skickat: den 7 september 2009 14:34 > Till: cygwin-xfree@cygwin.com > Kopia: marten.gustafsson@holisticode.se > ??mne: Re: xdmcp cygwin 1.7 vista problem > > On 07/09/2009 11:37, M??rten Gustafsson wrote: > > When trying to connect to a linux sytem from a Vista using > xdmcp i get > > a strange error. > > > > 2009-09-07 12:06:51 XDMCP fatal error: Session failed Session > > 173248003 failed for display 192.168.0.102:0: cannot open display > > > > As you can see from my network config, I have no adapter on this > > network address. I am using a wirless connection with ipadress > > 192.168.1.106. The same version of cygwin works flawlessly > from a wired XP box. > > Hmm.... > > You may find that using the -from command line parameter > (documented in 'man > Xserver') to force the local address used may help, but it's > still a bit mysterious where this address comes from... > > Perhaps you could oblige me with the output from Corinna's > test program which dumps getaddrinfo output [1] > > [1] http://cygwin.com/ml/cygwin-xfree/2009-07/msg00002.html > > > > > ???from local???address > > specifies the local address to connect from > (useful if the connecting host has multiple > > network interfaces). The local???address may > be expressed in any form acceptable to the > > host platform???s gethostbyname(3) implementation. > > -- > Jon TURNEY > Volunteer Cygwin/X X Server maintainer > > > __________ Information frn ESET NOD32 Antivirus, version av > virussignaturdatabas 4401 (20090906) __________ > > Meddelandet har kontrollerats av ESET NOD32 Antivirus. > > http://www.esetscandinavia.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Mon Sep 7 16:34:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 07 Sep 2009 16:34:00 -0000 Subject: Fwd: SV: xdmcp cygwin 1.7 vista problem Message-ID: <4AA5360A.5070902@dronecode.org.uk> I forgot to set the Reply-To: correctly -------- Original Message -------- Subject: SV: xdmcp cygwin 1.7 vista problem Date: Mon, 7 Sep 2009 15:41:52 +0200 From: M??rten Gustafsson To: 'Jon TURNEY' -from switch worked fine. Thanks /M??rten > -----Ursprungligt meddelande----- > Fr??n: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Skickat: den 7 september 2009 14:34 > Till: cygwin-xfree@cygwin.com > Kopia: marten.gustafsson@holisticode.se > ??mne: Re: xdmcp cygwin 1.7 vista problem > > On 07/09/2009 11:37, M??rten Gustafsson wrote: > > When trying to connect to a linux sytem from a Vista using > xdmcp i get > > a strange error. > > > > 2009-09-07 12:06:51 XDMCP fatal error: Session failed Session > > 173248003 failed for display 192.168.0.102:0: cannot open display > > > > As you can see from my network config, I have no adapter on this > > network address. I am using a wirless connection with ipadress > > 192.168.1.106. The same version of cygwin works flawlessly > from a wired XP box. > > Hmm.... > > You may find that using the -from command line parameter > (documented in 'man > Xserver') to force the local address used may help, but it's > still a bit mysterious where this address comes from... > > Perhaps you could oblige me with the output from Corinna's > test program which dumps getaddrinfo output [1] > > [1] http://cygwin.com/ml/cygwin-xfree/2009-07/msg00002.html > > > > > ???from local???address > > specifies the local address to connect from > (useful if the connecting host has multiple > > network interfaces). The local???address may > be expressed in any form acceptable to the > > host platform???s gethostbyname(3) implementation. > > -- > Jon TURNEY > Volunteer Cygwin/X X Server maintainer > > > __________ Information frn ESET NOD32 Antivirus, version av > virussignaturdatabas 4401 (20090906) __________ > > Meddelandet har kontrollerats av ESET NOD32 Antivirus. > > http://www.esetscandinavia.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Tue Sep 8 08:18:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Tue, 08 Sep 2009 08:18:00 -0000 Subject: [1.7] Dr. Zell to the rebuild room... Message-ID: <4AA61364.70306@users.sourceforge.net> Dr. Volker Zell, libxcb/libX11 1.2, released together with xorg-server 1.6 for Cygwin 1.7, completely removed the libxcb-xlib library. Due to the nature of libtool, your libtool libraries which were built for libxcb/libX11-1.1 on Cygwin 1.5 need to be rebuilt on Cygwin 1.7 to remove the references to the defunct libxcb-xlib.la. The packages in question are: aalib gd t1lib libwmf Thanks! Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Van.Hayv@gmail.com Tue Sep 8 13:13:00 2009 From: Van.Hayv@gmail.com (Van.Hayv) Date: Tue, 08 Sep 2009 13:13:00 -0000 Subject: Teeth Whitening Secrets Message-ID: <200909081313.n88DCCNt002982@MX-IN-02.forthnet.gr> Learn the trick discovered by a mom to turn yellow teeth white for Only $2 Visit Now! http://tinyurl.com/qft6nq -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From dr.volker.zell@oracle.com Wed Sep 9 08:07:00 2009 From: dr.volker.zell@oracle.com (Dr. Volker Zell) Date: Wed, 09 Sep 2009 08:07:00 -0000 Subject: [1.7] Dr. Zell to the rebuild room... In-Reply-To: <4AA61364.70306@users.sourceforge.net> (Yaakov's message of "Tue, 08 Sep 2009 03:18:44 -0500") References: <4AA61364.70306@users.sourceforge.net> Message-ID: <7zws48ilss.fsf@vzell-de.de.oracle.com> >>>>> Yaakov writes: > Dr. Volker Zell, Hi Yaakow > libxcb/libX11 1.2, released together with xorg-server 1.6 for Cygwin > 1.7, completely removed the libxcb-xlib library. Due to the nature of > libtool, your libtool libraries which were built for libxcb/libX11-1.1 > on Cygwin 1.5 need to be rebuilt on Cygwin 1.7 to remove the > references to the defunct libxcb-xlib.la. > The packages in question are: > aalib > gd > t1lib > libwmf > Thanks! Some private problems prevent me for working with cygwin the last couple of month. Right now I'm catching up with the almost final 1.5 distribution. I'm also in the middle of downloading the new 1.7 release. I'll try to install it ASAP and will try to rebuild all of my packages. Of course I'll start with the ones you mentioned above. > Yaakov > Cygwin/X Ciao Volker -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cooper@dog.net Thu Sep 10 00:58:00 2009 From: cooper@dog.net (cooper@dog.net) Date: Thu, 10 Sep 2009 00:58:00 -0000 Subject: xterm key repeat problem Message-ID: <4AA84EC4.1080600@dog.net> I have an unusual problem that only occurs when I run my HP laptop in the XB4 docking station. I run startxwin.bat and the xterm window starts but there is a repeating "b" that I cannot stop. If I unplug the Expansion port 3 cable from the laptop the repeating characters stop. I am running Vista home premium 32-bit with cygwin 1.5.3 (200902220) Cygwin Configuration Diagnostics Current System Time: Wed Sep 09 20:18:59 2009 Windows Longhorn/Vista (not yet supported!) Ver 6.0 Build 6002 Service Pack 2 Path: D:\cygwin\usr\local\bin D:\cygwin\bin D:\cygwin\bin D:\cygwin\usr\X11R6\bin d:\Perl\site\bin d:\Perl\bin c:\Windows\system32 c:\Windows c:\Windows\System32\Wbem c:\Program Files\Common Files\Roxio Shared\DLLShared\ c:\Program Files\Common Files\Roxio Shared\DLLShared\ c:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\ c:\Windows\System32\WindowsPowerShell\v1.0\ d:\Program Files\QuickTime\QTSystem\ D:\cygwin\lib\lapack Output from D:\cygwin\bin\id.exe (nontsec) UID: 1001(cooper) GID: 513(None) 0(root) 513(None) 544(Administrators) 545(Users) Output from D:\cygwin\bin\id.exe (ntsec) UID: 1001(cooper) GID: 513(None) 0(root) 513(None) 544(Administrators) 545(Users) SysDir: C:\Windows\system32 WinDir: C:\Windows USER = 'cooper' PWD = '/home/cooper' HOME = '/home/cooper' MAKE_MODE = 'unix' HOMEPATH = '\Users\cooper' MANPATH = '/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man:/usr/share/qt3/doc/man' APPDATA = 'C:\Users\cooper\AppData\Roaming' HOSTNAME = 'Cooper-Laptop' ONLINESERVICES = 'Online Services' TERM = 'cygwin' ROXIOCENTRAL = 'C:\Program Files\Common Files\Roxio Shared\9.0\Roxio Central33\' PROCESSOR_IDENTIFIER = 'x86 Family 15 Model 104 Stepping 1, AuthenticAMD' WINDIR = 'C:\Windows' TEXDOCVIEW_txt = 'cygstart %s' TEXDOCVIEW_dvi = 'cygstart %s' USERPART = 'F:' PUBLIC = 'C:\Users\Public' QTDIR = '/usr/lib/qt3' OLDPWD = '/usr/bin' PROGRAMDATA = 'C:\ProgramData' USERDOMAIN = 'COOPER-LAPTOP' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\ProgramData' !:: = '::\' TEMP = '/cygdrive/c/Users/cooper/AppData/Local/Temp' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' TVDUMPFLAGS = '8' PCBRAND = 'Pavilion' QTJAVA = 'C:\Program Files\Java\jre6\lib\ext\QTJava.zip' USERNAME = 'cooper' TEXDOCVIEW_pdf = 'cygstart %s' PROCESSOR_LEVEL = '15' !1: = '1:\' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' TEXDOCVIEW_html = 'cygstart %s' USERPROFILE = 'C:\Users\cooper' QMAKESPEC = '/usr/lib/qt3/mkspecs/cygwin-g++' PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ ' LOGONSERVER = '\\COOPER-LAPTOP' PLATFORM = 'MCD' PROCESSOR_ARCHITECTURE = 'x86' LOCALAPPDATA = 'C:\Users\cooper\AppData\Local' SHLVL = '1' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC' HOMEDRIVE = 'C:' !D: = 'D:\cygwin\bin' PROMPT = '$P$G' COMSPEC = 'C:\Windows\system32\cmd.exe' TMP = '/cygdrive/c/Users/cooper/AppData/Local/Temp' SYSTEMROOT = 'C:\Windows' PRINTER = 'Samsung ML-1740 Series' CVS_RSH = '/bin/ssh' PROCESSOR_REVISION = '6801' CLASSPATH = '.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip' TEXDOCVIEW_ps = 'cygstart %s' INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:' PROGRAMFILES = 'C:\Program Files' NUMBER_OF_PROCESSORS = '2' SESSIONNAME = 'Console' COMPUTERNAME = 'COOPER-LAPTOP' _ = '/usr/bin/cygcheck' 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) = 'D:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = 'D:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = 'D:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options c: hd NTFS 105857Mb 44% CP CS UN PA FC COOPERC d: hd NTFS 76316Mb 18% CP CS UN PA FC COOPERD e: hd NTFS 8612Mb 83% CP CS UN PA FC HP_RECOVERY f: cd N/A N/A n: net NTFS 36961Mb 33% CP CS UN PA allusers s: net NTFS 37860Mb 33% CP CS UN PA shared D:\cygwin / system binmode D:\cygwin/bin /usr/bin system binmode D:\cygwin/lib /usr/lib system binmode . /cygdrive system binmode,cygdrive Found: D:\cygwin\bin\awk.exe Found: D:\cygwin\bin\bash.exe Found: D:\cygwin\bin\cat.exe Found: D:\cygwin\bin\cp.exe Not Found: cpp (good!) Found: D:\cygwin\bin\crontab.exe Found: D:\cygwin\bin\find.exe Not Found: gcc Found: D:\cygwin\bin\gdb.exe Found: D:\cygwin\bin\grep.exe Found: D:\cygwin\bin\kill.exe Found: D:\cygwin\bin\ld.exe Found: D:\cygwin\bin\ls.exe Found: D:\cygwin\bin\make.exe Found: D:\cygwin\bin\mv.exe Found: D:\cygwin\bin\patch.exe Found: D:\cygwin\bin\perl.exe Found: d:\Perl\bin\perl.exe Warning: D:\cygwin\bin\perl.exe hides d:\Perl\bin\perl.exe Found: D:\cygwin\bin\rm.exe Found: D:\cygwin\bin\sed.exe Found: D:\cygwin\bin\ssh.exe Found: D:\cygwin\bin\sh.exe Found: D:\cygwin\bin\tar.exe Found: D:\cygwin\bin\test.exe Not Found: vi Found: D:\cygwin\bin\vim.exe 80k 2008/11/22 D:\cygwin\bin\cygaa-1.dll - os=4.0 img=1.0 sys=4.0 "cygaa-1.dll" v0.0 ts=2008/11/22 18:47 20k 2007/07/29 D:\cygwin\bin\cygao-2.dll - os=4.0 img=1.0 sys=4.0 "cygao-2.dll" v0.0 ts=2007/7/29 14:06 107k 2009/06/18 D:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/6/18 13:16 86k 2009/06/18 D:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/18 14:32 172k 2009/08/06 D:\cygwin\bin\cygarchive-2.dll - os=4.0 img=1.0 sys=4.0 "cygarchive-2.dll" v0.0 ts=2009/8/6 12:40 52k 2005/11/10 D:\cygwin\bin\cygart_lgpl-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl-2.dll" v0.0 ts=2005/11/10 15:33 77k 2008/12/12 D:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 D:\cygwin\bin\cygaspell-15.dll - os=4.0 img=1.0 sys=4.0 "cygaspell-15.dll" v0.0 ts=2007/12/18 6:39 280k 2009/06/07 D:\cygwin\bin\cygasprintf-0.dll - os=4.0 img=1.0 sys=4.0 "cygasprintf-0.dll" v0.0 ts=2009/6/7 17:40 87k 2006/02/16 D:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 D:\cygwin\bin\cygaudio-2.dll - os=4.0 img=1.0 sys=4.0 "cygaudio-2.dll" v0.0 ts=2008/10/26 1:53 135k 2007/02/11 D:\cygwin\bin\cygaudiofile-0.dll - os=4.0 img=1.0 sys=4.0 "cygaudiofile-0.dll" v0.0 ts=2007/2/11 14:29 180k 2009/02/22 D:\cygwin\bin\cygautotrace-3.dll - os=4.0 img=1.0 sys=4.0 "cygautotrace-3.dll" v0.0 ts=2009/2/22 9:59 57k 2008/12/31 D:\cygwin\bin\cygbind9-50.dll - os=4.0 img=1.0 sys=4.0 "cygbind9-50.dll" v0.0 ts=2008/12/30 21:16 329k 2006/04/27 D:\cygwin\bin\cygbonobo-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygbonobo-2-0.dll" v0.0 ts=2006/4/27 18:21 68k 2006/04/27 D:\cygwin\bin\cygbonobo-activation-4.dll - os=4.0 img=1.0 sys=4.0 "cygbonobo-activation-4.dll" v0.0 ts=2006/4/27 18:16 334k 2005/09/27 D:\cygwin\bin\cygbonoboui-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygbonoboui-2-0.dll" v0.0 ts=2005/9/27 17:26 351k 2008/01/14 D:\cygwin\bin\cygboost_date_time-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_date_time-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:36 120k 2008/01/14 D:\cygwin\bin\cygboost_filesystem-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_filesystem-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:36 79k 2008/01/14 D:\cygwin\bin\cygboost_iostreams-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_iostreams-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:37 526k 2008/01/14 D:\cygwin\bin\cygboost_program_options-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_program_options-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:38 564k 2008/01/14 D:\cygwin\bin\cygboost_python-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_python-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:39 678k 2008/01/14 D:\cygwin\bin\cygboost_regex-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_regex-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:41 621k 2008/01/14 D:\cygwin\bin\cygboost_serialization-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_serialization-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:44 118k 2008/01/14 D:\cygwin\bin\cygboost_signals-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_signals-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:44 91k 2008/01/14 D:\cygwin\bin\cygboost_thread-gcc-mt-1_33_1.dll - os=4.0 img=1.33 sys=4.0 "cygboost_thread-gcc-mt-1_33_1.dll" v0.0 ts=2008/1/14 3:47 29k 2009/05/16 D:\cygwin\bin\cygbrlapi-0.5.dll - os=4.0 img=1.0 sys=4.0 "cygbrlapi-0.5.dll" v0.0 ts=2009/5/16 16:58 61k 2009/03/02 D:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 21:52 54k 2002/01/27 D:\cygwin\bin\cygbz21.0.dll - os=4.0 img=1.0 sys=4.0 "cygbz21.0.dll" v0.0 ts=2002/1/26 20:07 448k 2009/02/24 D:\cygwin\bin\cygcairo-2.dll - os=4.0 img=1.0 sys=4.0 "cygcairo-2.dll" v0.0 ts=2009/2/24 2:06 7k 2009/05/30 D:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 14:37 23k 2006/11/22 D:\cygwin\bin\cygcheck-0.dll - os=4.0 img=1.0 sys=4.0 "cygcheck-0.dll" v0.0 ts=2006/11/21 22:51 1845k 2008/10/09 D:\cygwin\bin\cygchicken-0.dll - os=4.0 img=1.0 sys=4.0 "cygchicken-0.dll" v0.0 ts=2008/10/9 15:22 515k 2007/09/21 D:\cygwin\bin\cygclamav-2.dll - os=4.0 img=1.0 sys=4.0 "cygclamav-2.dll" v0.0 ts=2007/9/21 1:31 511k 2008/02/15 D:\cygwin\bin\cygclamav-3.dll - os=4.0 img=1.0 sys=4.0 "cygclamav-3.dll" v0.0 ts=2008/2/15 17:06 560k 2008/07/07 D:\cygwin\bin\cygclamav-4.dll - os=4.0 img=1.0 sys=4.0 "cygclamav-4.dll" v0.0 ts=2008/7/7 17:14 644k 2008/11/27 D:\cygwin\bin\cygclamav-5.dll - os=4.0 img=1.0 sys=4.0 "cygclamav-5.dll" v0.0 ts=2008/11/27 10:28 42k 2008/02/15 D:\cygwin\bin\cygclamunrar-3.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar-3.dll" v0.0 ts=2008/2/15 17:00 42k 2008/07/07 D:\cygwin\bin\cygclamunrar-4.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar-4.dll" v0.0 ts=2008/7/7 17:12 42k 2008/11/27 D:\cygwin\bin\cygclamunrar-5.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar-5.dll" v0.0 ts=2008/11/27 10:21 8k 2008/02/15 D:\cygwin\bin\cygclamunrar_iface-3.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar_iface-3.dll" v0.0 ts=2008/2/15 17:00 8k 2008/07/07 D:\cygwin\bin\cygclamunrar_iface-4.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar_iface-4.dll" v0.0 ts=2008/7/7 17:12 8k 2008/11/27 D:\cygwin\bin\cygclamunrar_iface-5.dll - os=4.0 img=1.0 sys=4.0 "cygclamunrar_iface-5.dll" v0.0 ts=2008/11/27 10:21 16k 2005/10/11 D:\cygwin\bin\cygcompface-0.dll - os=4.0 img=1.0 sys=4.0 "cygcompface-0.dll" v0.0 ts=2005/10/11 9:58 657k 2007/10/25 D:\cygwin\bin\cygcppunit-1-12-0.dll - os=4.0 img=1.0 sys=4.0 "cygcppunit-1-12-0.dll" v0.0 ts=2007/10/25 13:27 192k 2006/03/08 D:\cygwin\bin\cygcroco-0.6-3.dll - os=4.0 img=1.0 sys=4.0 "cygcroco-0.6-3.dll" v0.0 ts=2006/3/7 20:04 650k 2009/01/23 D:\cygwin\bin\cygcruft.dll - os=4.0 img=1.0 sys=4.0 "cygcruft.dll" v0.0 ts=2009/1/22 17:05 7k 2003/10/19 D:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1125k 2006/10/04 D:\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.7.dll" v0.0 ts=2006/10/4 8:12 1075k 2009/03/25 D:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.8.dll" v0.0 ts=2009/3/25 13:21 194k 2007/06/30 D:\cygwin\bin\cygcurl-3.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-3.dll" v0.0 ts=2007/6/29 21:13 221k 2007/06/30 D:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2007/6/29 20:54 424k 2007/12/16 D:\cygwin\bin\cygdb-3.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb-3.1.dll" v0.0 ts=2007/12/16 9:09 512k 2007/12/16 D:\cygwin\bin\cygdb-3.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb-3.3.dll" v0.0 ts=2007/12/16 8:47 547k 2007/12/18 D:\cygwin\bin\cygdb-4.0.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.0.dll" v0.0 ts=2007/12/18 8:35 647k 2007/12/17 D:\cygwin\bin\cygdb-4.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.1.dll" v0.0 ts=2007/12/16 13:35 703k 2007/12/17 D:\cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.2.dll" v0.0 ts=2007/12/17 6:58 764k 2007/12/17 D:\cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.3.dll" v0.0 ts=2007/12/17 7:29 866k 2007/12/17 D:\cygwin\bin\cygdb-4.4.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.4.dll" v0.0 ts=2007/12/17 7:55 943k 2007/12/17 D:\cygwin\bin\cygdb-4.5.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.5.dll" v0.0 ts=2007/12/17 8:12 329k 2007/12/16 D:\cygwin\bin\cygdb2.dll - os=4.0 img=1.0 sys=4.0 "cygdb2.dll" v0.0 ts=2007/12/16 8:19 725k 2007/12/16 D:\cygwin\bin\cygdb_cxx-3.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-3.1.dll" v0.0 ts=2007/12/16 9:09 818k 2007/12/16 D:\cygwin\bin\cygdb_cxx-3.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-3.3.dll" v0.0 ts=2007/12/16 8:47 857k 2007/12/18 D:\cygwin\bin\cygdb_cxx-4.0.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.0.dll" v0.0 ts=2007/12/18 8:35 967k 2007/12/17 D:\cygwin\bin\cygdb_cxx-4.1.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.1.dll" v0.0 ts=2007/12/16 13:35 1036k 2007/12/17 D:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1106k 2007/12/17 D:\cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.3.dll" v0.0 ts=2007/12/17 7:29 1217k 2007/12/17 D:\cygwin\bin\cygdb_cxx-4.4.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.4.dll" v0.0 ts=2007/12/17 7:55 1296k 2007/12/17 D:\cygwin\bin\cygdb_cxx-4.5.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.5.dll" v0.0 ts=2007/12/17 8:12 2134k 2008/12/31 D:\cygwin\bin\cygdns-50.dll - os=4.0 img=1.0 sys=4.0 "cygdns-50.dll" v0.0 ts=2008/12/30 21:16 243k 2005/02/23 D:\cygwin\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0 "cygdps-1.dll" v0.0 ts=2005/2/23 9:42 26k 2005/02/23 D:\cygwin\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0 "cygdpstk-1.dll" v0.0 ts=2005/2/23 9:42 46k 2009/01/07 D:\cygwin\bin\cygecpg.dll - os=4.0 img=1.0 sys=4.0 "cygecpg.dll" v0.0 ts=2009/1/7 11:46 12k 2009/01/07 D:\cygwin\bin\cygecpg_compat.dll - os=4.0 img=1.0 sys=4.0 "cygecpg_compat.dll" v0.0 ts=2009/1/7 11:46 56k 2008/07/12 D:\cygwin\bin\cygedsio-0.dll - os=4.0 img=1.0 sys=4.0 "cygedsio-0.dll" v0.0 ts=2008/7/12 15:41 508k 2008/03/19 D:\cygwin\bin\cygEMF-1.dll - os=4.0 img=1.0 sys=4.0 "cygEMF-1.dll" v0.0 ts=2008/3/19 18:49 29k 2008/11/24 D:\cygwin\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0 "cygesd-0.dll" v0.0 ts=2008/11/23 21:40 52k 2007/10/06 D:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2007/10/6 12:41 164k 2008/11/11 D:\cygwin\bin\cygexif-12.dll - os=4.0 img=1.0 sys=4.0 "cygexif-12.dll" v0.0 ts=2008/11/11 2:06 118k 2007/04/06 D:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-0.dll" v0.0 ts=2007/4/6 16:43 118k 2008/05/09 D:\cygwin\bin\cygexpat-1.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-1.dll" v0.0 ts=2008/5/9 0:03 67k 2008/08/07 D:\cygwin\bin\cygexslt-0.dll - os=4.0 img=1.0 sys=4.0 "cygexslt-0.dll" v0.0 ts=2008/8/6 20:15 28k 2009/01/23 D:\cygwin\bin\cygfam-0.dll - os=4.0 img=1.0 sys=4.0 "cygfam-0.dll" v0.0 ts=2009/1/22 23:41 286k 2006/08/06 D:\cygwin\bin\cygfcgi++-0.dll - os=4.0 img=1.0 sys=4.0 "cygfcgi++-0.dll" v0.0 ts=2006/8/6 16:09 30k 2006/08/06 D:\cygwin\bin\cygfcgi-0.dll - os=4.0 img=1.0 sys=4.0 "cygfcgi-0.dll" v0.0 ts=2006/8/6 16:09 9k 2009/03/12 D:\cygwin\bin\cygffi-4.dll - os=4.0 img=1.0 sys=4.0 "cygffi-4.dll" v0.0 ts=2009/3/6 8:37 782k 2008/11/19 D:\cygwin\bin\cygfftw3-3.dll - os=4.0 img=1.0 sys=4.0 "cygfftw3-3.dll" v0.0 ts=2008/11/19 4:23 756k 2008/11/19 D:\cygwin\bin\cygfftw3f-3.dll - os=4.0 img=1.0 sys=4.0 "cygfftw3f-3.dll" v0.0 ts=2008/11/19 4:19 19k 2008/11/19 D:\cygwin\bin\cygfftw3f_threads-3.dll - os=4.0 img=1.0 sys=4.0 "cygfftw3f_threads-3.dll" v0.0 ts=2008/11/19 4:19 19k 2008/11/19 D:\cygwin\bin\cygfftw3_threads-3.dll - os=4.0 img=1.0 sys=4.0 "cygfftw3_threads-3.dll" v0.0 ts=2008/11/19 4:23 79k 2007/09/17 D:\cygwin\bin\cygFLAC++-6.dll - os=4.0 img=1.0 sys=4.0 "cygFLAC++-6.dll" v0.0 ts=2007/9/17 14:08 265k 2007/09/17 D:\cygwin\bin\cygFLAC-8.dll - os=4.0 img=1.0 sys=4.0 "cygFLAC-8.dll" v0.0 ts=2007/9/17 14:04 520k 2007/01/31 D:\cygwin\bin\cygfltknox-1.1.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox-1.1.dll" v0.0 ts=2007/1/31 15:22 34k 2007/01/31 D:\cygwin\bin\cygfltknox_forms-1.1.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_forms-1.1.dll" v0.0 ts=2007/1/31 15:22 41k 2007/01/31 D:\cygwin\bin\cygfltknox_gl-1.1.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_gl-1.1.dll" v0.0 ts=2007/1/31 15:22 70k 2007/01/31 D:\cygwin\bin\cygfltknox_images-1.1.dll - os=4.0 img=1.0 sys=4.0 "cygfltknox_images-1.1.dll" v0.0 ts=2007/1/31 15:22 161k 2008/06/01 D:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontconfig-1.dll" v0.0 ts=2008/6/1 18:16 19k 2008/10/26 D:\cygwin\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontenc-1.dll" v0.0 ts=2008/10/26 17:25 40k 2009/03/01 D:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/2/28 21:40 41k 2009/03/27 D:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/26 20:37 48k 2003/08/09 D:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 D:\cygwin\bin\cygfpx-1.dll - os=4.0 img=1.0 sys=4.0 "cygfpx-1.dll" v0.0 ts=2008/3/23 16:12 430k 2009/01/28 D:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-6.dll" v0.0 ts=2009/1/28 0:48 23k 2005/11/30 D:\cygwin\bin\cyggailutil-17.dll - os=4.0 img=1.0 sys=4.0 "cyggailutil-17.dll" v0.0 ts=2005/11/30 16:11 28k 2009/01/23 D:\cygwin\bin\cyggamin-1-0.dll - os=4.0 img=1.0 sys=4.0 "cyggamin-1-0.dll" v0.0 ts=2009/1/22 23:41 42k 2009/03/12 D:\cygwin\bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0 "cyggcc_s-1.dll" v0.0 ts=2009/3/6 6:54 41k 2008/09/12 D:\cygwin\bin\cyggcc_s.dll - os=4.0 img=1.0 sys=4.0 "cyggcc_s.dll" v0.0 ts=2008/9/11 2:43 28731k 2009/03/12 D:\cygwin\bin\cyggcj-9.dll - os=4.0 img=1.0 sys=4.0 "cyggcj-9.dll" v0.0 ts=2009/3/6 9:55 1215k 2009/03/12 D:\cygwin\bin\cyggcj-tools-9.dll - os=4.0 img=1.0 sys=4.0 "cyggcj-tools-9.dll" v0.0 ts=2009/3/6 9:57 176k 2006/05/30 D:\cygwin\bin\cyggconf-2-4.dll - os=4.0 img=1.0 sys=4.0 "cyggconf-2-4.dll" v0.0 ts=2006/5/29 19:24 414k 2008/06/16 D:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0 "cyggcrypt-11.dll" v0.0 ts=2008/6/16 17:13 225k 2008/11/28 D:\cygwin\bin\cyggd-2.dll - os=4.0 img=1.0 sys=4.0 "cyggd-2.dll" v0.0 ts=2008/11/28 17:29 28k 2003/07/20 D:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-3.dll" v0.0 ts=2003/7/20 3:58 19k 2009/02/26 D:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:55 19k 2003/03/22 D:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm.dll" v0.0 ts=2002/2/19 22:05 15k 2003/07/20 D:\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 4:00 8k 2009/02/26 D:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-4.dll" v0.0 ts=2009/2/26 2:56 194k 2008/07/04 D:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 D:\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=2005/12/26 6:20 128k 2005/08/02 D:\cygwin\bin\cyggdk_imlib-1.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_imlib-1.dll" v0.0 ts=2005/8/1 20:36 77k 2005/12/27 D:\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=2005/12/26 6:11 72k 2005/11/16 D:\cygwin\bin\cyggdk_pixbuf-2.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.dll" v0.0 ts=2005/11/16 16:40 54k 2005/12/27 D:\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=2005/12/26 7:03 105k 2005/11/16 D:\cygwin\bin\cyggdk_pixbuf_xlib-2.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.dll" v0.0 ts=2005/11/16 16:41 23k 2006/02/14 D:\cygwin\bin\cygGeoIP-1.dll - os=4.0 img=1.0 sys=4.0 "cygGeoIP-1.dll" v0.0 ts=2006/2/6 16:13 21k 2006/02/14 D:\cygwin\bin\cygGeoIPUpdate-0.dll - os=4.0 img=1.0 sys=4.0 "cygGeoIPUpdate-0.dll" v0.0 ts=2006/2/14 2:27 124k 2009/03/13 D:\cygwin\bin\cyggeotiff-1.dll - os=4.0 img=1.0 sys=4.0 "cyggeotiff-1.dll" v0.0 ts=2009/3/13 2:36 963k 2009/06/07 D:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/6/7 17:51 219k 2009/06/07 D:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/6/7 18:01 203k 2009/06/07 D:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/6/7 17:54 651k 2009/03/12 D:\cygwin\bin\cyggfortran-3.dll - os=4.0 img=1.0 sys=4.0 "cyggfortran-3.dll" v0.0 ts=2009/3/6 8:29 32k 2008/11/19 D:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/11/19 14:24 45k 2008/11/19 D:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/11/19 14:58 9k 2008/11/19 D:\cygwin\bin\cygggimisc-2.dll - os=4.0 img=1.0 sys=4.0 "cygggimisc-2.dll" v0.0 ts=2008/11/19 15:24 9k 2008/11/19 D:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/11/19 15:18 28k 2008/09/08 D:\cygwin\bin\cyggif-4.dll - os=4.0 img=1.0 sys=4.0 "cyggif-4.dll" v0.0 ts=2008/9/7 20:01 23k 2008/11/19 D:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/11/19 14:27 10k 2009/03/12 D:\cygwin\bin\cyggij-9.dll - os=4.0 img=1.0 sys=4.0 "cyggij-9.dll" v0.0 ts=2009/3/6 9:56 466k 2009/02/07 D:\cygwin\bin\cyggit.dll - os=4.0 img=1.0 sys=4.0 "cyggit.dll" v0.0 ts=2009/2/6 22:11 2297k 2008/10/29 D:\cygwin\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0 "cygGL-1.dll" v0.0 ts=2008/10/29 1:13 81k 2005/08/18 D:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 D:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 D:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 D:\cygwin\bin\cygglitz-1.dll - os=4.0 img=1.0 sys=4.0 "cygglitz-1.dll" v0.0 ts=2006/10/27 17:37 20k 2006/10/27 D:\cygwin\bin\cygglitz-glx-1.dll - os=4.0 img=1.0 sys=4.0 "cygglitz-glx-1.dll" v0.0 ts=2006/10/27 17:38 682k 2009/01/21 D:\cygwin\bin\cygglpk-0.dll - os=4.0 img=1.0 sys=4.0 "cygglpk-0.dll" v0.0 ts=2009/1/21 8:07 447k 2008/10/29 D:\cygwin\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0 "cygGLU-1.dll" v0.0 ts=2008/10/29 1:13 182k 2008/03/23 D:\cygwin\bin\cygglut-3.dll - os=4.0 img=1.0 sys=4.0 "cygglut-3.dll" v0.0 ts=2008/3/23 14:18 20k 2008/10/29 D:\cygwin\bin\cygGLw-1.dll - os=4.0 img=1.0 sys=4.0 "cygGLw-1.dll" v0.0 ts=2008/10/29 1:13 11k 2008/07/04 D:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 D:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 219k 2008/10/04 D:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2008/10/4 19:48 288k 2008/10/04 D:\cygwin\bin\cyggmpxx-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-3.dll" v0.0 ts=2008/10/4 19:48 159k 2009/03/12 D:\cygwin\bin\cyggnarl-4.3.dll - os=4.0 img=1.0 sys=4.0 "cyggnarl-4.3.dll" v0.0 ts=2009/3/6 7:17 2328k 2009/03/12 D:\cygwin\bin\cyggnat-4.3.dll - os=4.0 img=1.0 sys=4.0 "cyggnat-4.3.dll" v0.0 ts=2009/3/6 7:17 68k 2005/12/01 D:\cygwin\bin\cyggnome-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnome-2-0.dll" v0.0 ts=2005/11/30 21:14 87k 2005/11/10 D:\cygwin\bin\cyggnome-32.dll - os=4.0 img=1.0 sys=4.0 "cyggnome-32.dll" v0.0 ts=2005/11/10 16:21 35k 2006/02/28 D:\cygwin\bin\cyggnome-keyring-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnome-keyring-0.dll" v0.0 ts=2006/2/28 17:10 156k 2005/11/30 D:\cygwin\bin\cyggnomecanvas-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomecanvas-2-0.dll" v0.0 ts=2005/11/30 17:55 12k 2005/11/16 D:\cygwin\bin\cyggnomecanvaspixbuf-1.dll - os=4.0 img=1.0 sys=4.0 "cyggnomecanvaspixbuf-1.dll" v0.0 ts=2005/11/16 16:41 338k 2005/08/22 D:\cygwin\bin\cyggnomeprint-2-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeprint-2-2-0.dll" v0.0 ts=2005/8/21 20:20 179k 2005/08/22 D:\cygwin\bin\cyggnomeprintui-2-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeprintui-2-2-0.dll" v0.0 ts=2005/8/22 15:14 18k 2005/11/10 D:\cygwin\bin\cyggnomesupport-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomesupport-0.dll" v0.0 ts=2005/11/10 15:30 509k 2006/02/07 D:\cygwin\bin\cyggnomeui-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeui-2-0.dll" v0.0 ts=2006/2/7 16:57 826k 2005/11/10 D:\cygwin\bin\cyggnomeui-32.dll - os=4.0 img=1.0 sys=4.0 "cyggnomeui-32.dll" v0.0 ts=2005/11/10 16:24 332k 2005/12/06 D:\cygwin\bin\cyggnomevfs-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnomevfs-2-0.dll" v0.0 ts=2005/12/5 17:01 42k 2005/11/10 D:\cygwin\bin\cyggnorba-27.dll - os=4.0 img=1.0 sys=4.0 "cyggnorba-27.dll" v0.0 ts=2005/11/10 16:27 22k 2005/11/10 D:\cygwin\bin\cyggnorbagtk-0.dll - os=4.0 img=1.0 sys=4.0 "cyggnorbagtk-0.dll" v0.0 ts=2005/11/10 16:10 382k 2005/08/21 D:\cygwin\bin\cyggnutls-11.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-11.dll" v0.0 ts=2005/8/21 7:40 571k 2008/09/07 D:\cygwin\bin\cyggnutls-26.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-26.dll" v0.0 ts=2008/9/6 13:33 71k 2005/08/21 D:\cygwin\bin\cyggnutls-extra-11.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-extra-11.dll" v0.0 ts=2005/8/21 7:42 26k 2008/09/07 D:\cygwin\bin\cyggnutls-extra-26.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-extra-26.dll" v0.0 ts=2008/9/6 13:33 21k 2005/08/21 D:\cygwin\bin\cyggnutls-openssl-11.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-openssl-11.dll" v0.0 ts=2005/8/21 7:42 36k 2008/09/07 D:\cygwin\bin\cyggnutls-openssl-26.dll - os=4.0 img=1.0 sys=4.0 "cyggnutls-openssl-26.dll" v0.0 ts=2008/9/6 13:33 222k 2006/06/06 D:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 D:\cygwin\bin\cyggomp-1.dll - os=4.0 img=1.0 sys=4.0 "cyggomp-1.dll" v0.0 ts=2009/3/6 10:00 13k 2008/03/08 D:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0 "cyggpg-error-0.dll" v0.0 ts=2008/3/8 18:18 351k 2004/07/17 D:\cygwin\bin\cygGraphicsMagick++-0.dll - os=4.0 img=1.0 sys=4.0 "cygGraphicsMagick++-0.dll" v0.0 ts=2004/7/17 4:48 2170k 2004/07/17 D:\cygwin\bin\cygGraphicsMagick-0.dll - os=4.0 img=1.0 sys=4.0 "cygGraphicsMagick-0.dll" v0.0 ts=2004/7/17 4:46 5491k 2008/11/27 D:\cygwin\bin\cyggs-8.dll - os=4.0 img=1.0 sys=4.0 "cyggs-8.dll" v0.0 ts=2008/11/27 8:24 1631k 2008/12/19 D:\cygwin\bin\cyggsl-0.dll - os=4.0 img=1.0 sys=4.0 "cyggsl-0.dll" v0.0 ts=2008/12/19 11:47 186k 2008/12/19 D:\cygwin\bin\cyggslcblas-0.dll - os=4.0 img=1.0 sys=4.0 "cyggslcblas-0.dll" v0.0 ts=2008/12/19 11:17 8k 2008/07/04 D:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 D:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 D:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 D:\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=2005/12/26 6:43 340k 2006/02/15 D:\cygwin\bin\cyggtkhtml-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtkhtml-2-0.dll" v0.0 ts=2006/2/14 21:56 338k 2005/11/10 D:\cygwin\bin\cyggtkxmhtml-1.dll - os=4.0 img=1.0 sys=4.0 "cyggtkxmhtml-1.dll" v0.0 ts=2005/11/10 16:04 528k 2005/10/09 D:\cygwin\bin\cygguile-12.dll - os=4.0 img=1.0 sys=4.0 "cygguile-12.dll" v0.0 ts=2005/10/9 9:25 675k 2007/08/27 D:\cygwin\bin\cygguile-17.dll - os=4.0 img=1.0 sys=4.0 "cygguile-17.dll" v0.0 ts=2007/8/27 3:14 18k 2005/10/09 D:\cygwin\bin\cygguile-ltdl-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-ltdl-1.dll" v0.0 ts=2005/10/9 9:24 23k 2007/08/27 D:\cygwin\bin\cygguile-srfi-srfi-1-v-3-3.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-1-v-3-3.dll" v0.0 ts=2007/8/27 3:14 68k 2005/10/09 D:\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/10/9 9:25 4k 2007/08/27 D:\cygwin\bin\cygguile-srfi-srfi-13-14-v-3-3.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-3-3.dll" v0.0 ts=2007/8/27 3:14 31k 2005/10/09 D:\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/10/9 9:25 4k 2007/08/27 D:\cygwin\bin\cygguile-srfi-srfi-4-v-3-3.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-3-3.dll" v0.0 ts=2007/8/27 3:14 8k 2007/08/27 D:\cygwin\bin\cygguile-srfi-srfi-60-v-2-2.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-60-v-2-2.dll" v0.0 ts=2007/8/27 3:14 12k 2005/10/09 D:\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/10/9 9:25 11k 2007/08/27 D:\cygwin\bin\cygguilereadline-v-17-17.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-17-17.dll" v0.0 ts=2007/8/27 3:14 1280k 2009/03/20 D:\cygwin\bin\cyghdf5-0.dll - os=4.0 img=1.0 sys=4.0 "cyghdf5-0.dll" v0.0 ts=2009/3/14 15:49 78k 2009/03/20 D:\cygwin\bin\cyghdf5_hl-0.dll - os=4.0 img=1.0 sys=4.0 "cyghdf5_hl-0.dll" v0.0 ts=2009/3/14 15:49 29k 2003/08/10 D:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0 "cyghistory5.dll" v0.0 ts=2003/8/10 19:16 24k 2009/06/23 D:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 337k 2007/09/16 D:\cygwin\bin\cyghttpd2core.dll - os=4.0 img=1.0 sys=4.0 "cyghttpd2core.dll" v0.0 ts=2007/9/16 16:58 72k 2008/10/26 D:\cygwin\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0 "cygICE-6.dll" v0.0 ts=2008/10/25 21:55 270k 2009/04/23 D:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/4/22 22:25 982k 2009/05/30 D:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/5/30 14:38 10917k 2008/08/28 D:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/8/28 13:49 1441k 2008/08/28 D:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/8/28 13:48 271k 2008/08/28 D:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/8/28 13:49 240k 2008/08/28 D:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/8/28 13:48 58k 2008/08/28 D:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/8/28 13:48 114k 2008/08/28 D:\cygwin\bin\cygicutu38.dll - os=4.0 img=1.0 sys=4.0 "cygicutu38.dll" v0.0 ts=2008/8/28 13:48 1095k 2008/08/28 D:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/8/28 13:46 136k 2005/08/01 D:\cygwin\bin\cygIDL-0-6-0.dll - os=4.0 img=1.0 sys=4.0 "cygIDL-0-6-0.dll" v0.0 ts=2005/8/1 15:50 142k 2005/08/01 D:\cygwin\bin\cygIDL-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygIDL-2-0.dll" v0.0 ts=2005/8/1 17:33 189k 2009/02/22 D:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0 "cygidn-11.dll" v0.0 ts=2009/2/22 12:43 40k 2005/08/01 D:\cygwin\bin\cygIIOP-0.dll - os=4.0 img=1.0 sys=4.0 "cygIIOP-0.dll" v0.0 ts=2005/8/1 16:28 155k 2005/08/02 D:\cygwin\bin\cygImlib-1.dll - os=4.0 img=1.0 sys=4.0 "cygImlib-1.dll" v0.0 ts=2005/8/1 20:37 9k 2005/08/02 D:\cygwin\bin\cygimlib-bmp.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-bmp.dll" v0.0 ts=2005/8/1 20:38 6k 2005/08/02 D:\cygwin\bin\cygimlib-gif.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-gif.dll" v0.0 ts=2005/8/1 20:38 7k 2005/08/02 D:\cygwin\bin\cygimlib-jpeg.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-jpeg.dll" v0.0 ts=2005/8/1 20:38 11k 2005/08/02 D:\cygwin\bin\cygimlib-png.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-png.dll" v0.0 ts=2005/8/1 20:39 8k 2005/08/02 D:\cygwin\bin\cygimlib-ppm.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-ppm.dll" v0.0 ts=2005/8/1 20:38 7k 2005/08/02 D:\cygwin\bin\cygimlib-ps.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-ps.dll" v0.0 ts=2005/8/1 20:38 6k 2005/08/02 D:\cygwin\bin\cygimlib-tiff.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-tiff.dll" v0.0 ts=2005/8/1 20:39 10k 2005/08/02 D:\cygwin\bin\cygimlib-xpm.dll - os=4.0 img=1.0 sys=4.0 "cygimlib-xpm.dll" v0.0 ts=2005/8/1 20:38 22k 2001/12/13 D:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0 "cygintl-1.dll" v0.0 ts=2001/12/13 4:28 37k 2003/08/10 D:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 D:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0 "cygintl-3.dll" v0.0 ts=2005/11/19 21:04 31k 2009/06/07 D:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2009/6/7 17:42 12k 2003/02/17 D:\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0 "cygioperm-0.dll" v0.0 ts=2003/2/17 14:58 345k 2008/12/31 D:\cygwin\bin\cygisc-50.dll - os=4.0 img=1.0 sys=4.0 "cygisc-50.dll" v0.0 ts=2008/12/30 21:09 44k 2008/12/31 D:\cygwin\bin\cygisccc-50.dll - os=4.0 img=1.0 sys=4.0 "cygisccc-50.dll" v0.0 ts=2008/12/30 21:10 94k 2008/12/31 D:\cygwin\bin\cygisccfg-50.dll - os=4.0 img=1.0 sys=4.0 "cygisccfg-50.dll" v0.0 ts=2008/12/30 21:16 241k 2008/04/02 D:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 D:\cygwin\bin\cygjasper-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1.dll" v0.0 ts=2008/4/2 12:19 41k 2009/03/10 D:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 21:52 48k 2003/08/10 D:\cygwin\bin\cygjbig1.dll - os=4.0 img=1.0 sys=4.0 "cygjbig1.dll" v0.0 ts=2003/8/10 19:58 125k 2009/03/08 D:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:31 119k 2002/02/09 D:\cygwin\bin\cygjpeg6b.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg6b.dll" v0.0 ts=2002/2/9 0:19 6k 2009/03/12 D:\cygwin\bin\cygjvm.dll - os=4.0 img=1.0 sys=4.0 "cygjvm.dll" v0.0 ts=2009/3/6 9:56 60k 2004/09/27 D:\cygwin\bin\cygkpathsea-3.dll - os=4.0 img=1.0 sys=4.0 "cygkpathsea-3.dll" v0.0 ts=2004/9/27 13:32 65k 2005/05/05 D:\cygwin\bin\cygkpathsea-4.dll - os=4.0 img=1.0 sys=4.0 "cygkpathsea-4.dll" v0.0 ts=2005/5/5 10:33 41k 2005/08/29 D:\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/8/14 13:48 39k 2008/09/07 D:\cygwin\bin\cyglber-2-3-0.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-3-0.dll" v0.0 ts=2008/9/7 8:28 40k 2004/01/02 D:\cygwin\bin\cyglber-2.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2.dll" v0.0 ts=2004/1/2 6:11 173k 2008/03/23 D:\cygwin\bin\cyglcms-1.dll - os=4.0 img=1.0 sys=4.0 "cyglcms-1.dll" v0.0 ts=2008/3/23 6:35 176k 2005/08/29 D:\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/8/29 7:14 189k 2008/09/07 D:\cygwin\bin\cygldap-2-3-0.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-3-0.dll" v0.0 ts=2008/9/7 8:29 194k 2004/01/02 D:\cygwin\bin\cygldap-2.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2.dll" v0.0 ts=2004/1/2 6:27 188k 2005/08/29 D:\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/8/29 7:14 201k 2008/09/07 D:\cygwin\bin\cygldap_r-2-3-0.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-3-0.dll" v0.0 ts=2008/9/7 8:31 202k 2004/01/02 D:\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 6:27 72k 2008/10/19 D:\cygwin\bin\cyglightcomp.dll - os=4.0 img=1.0 sys=4.0 "cyglightcomp.dll" v0.0 ts=2008/10/19 8:04 24k 2008/04/14 D:\cygwin\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-3.dll" v0.0 ts=2008/4/14 1:40 28k 2009/07/13 D:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/7/13 0:34 78k 2008/12/31 D:\cygwin\bin\cyglwres-50.dll - os=4.0 img=1.0 sys=4.0 "cyglwres-50.dll" v0.0 ts=2008/12/30 21:17 123k 2009/07/18 D:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/7/18 14:48 12k 2009/03/15 D:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 0:24 94k 2009/02/13 D:\cygwin\bin\cyglzo2-2.dll - os=4.0 img=1.0 sys=4.0 "cyglzo2-2.dll" v0.0 ts=2009/2/13 13:57 83k 2007/06/06 D:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2007/6/6 6:41 395k 2008/04/17 D:\cygwin\bin\cygMagick++-1.dll - os=4.0 img=1.0 sys=4.0 "cygMagick++-1.dll" v0.0 ts=2008/4/17 15:21 391k 2006/11/05 D:\cygwin\bin\cygMagick++-10.dll - os=4.0 img=1.0 sys=4.0 "cygMagick++-10.dll" v0.0 ts=2006/11/5 9:43 369k 2004/08/11 D:\cygwin\bin\cygMagick++-6.dll - os=4.0 img=1.0 sys=4.0 "cygMagick++-6.dll" v0.0 ts=2004/8/11 2:04 1709k 2006/11/05 D:\cygwin\bin\cygMagick-10.dll - os=4.0 img=1.0 sys=4.0 "cygMagick-10.dll" v0.0 ts=2006/11/5 9:32 3214k 2004/08/11 D:\cygwin\bin\cygMagick-6.dll - os=4.0 img=1.0 sys=4.0 "cygMagick-6.dll" v0.0 ts=2004/8/11 1:37 1915k 2008/04/17 D:\cygwin\bin\cygMagickCore-1.dll - os=4.0 img=1.0 sys=4.0 "cygMagickCore-1.dll" v0.0 ts=2008/4/17 15:05 782k 2008/04/17 D:\cygwin\bin\cygMagickWand-1.dll - os=4.0 img=1.0 sys=4.0 "cygMagickWand-1.dll" v0.0 ts=2008/4/17 15:17 146k 2008/04/01 D:\cygwin\bin\cygmcrypt-4.dll - os=4.0 img=1.0 sys=4.0 "cygmcrypt-4.dll" v0.0 ts=2008/4/1 12:04 21k 2009/03/01 D:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/2/28 21:38 21k 2009/03/27 D:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/26 20:36 29k 2003/08/09 D:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 222k 2005/05/28 D:\cygwin\bin\cygmhash-2.dll - os=4.0 img=1.0 sys=4.0 "cygmhash-2.dll" v0.0 ts=2005/5/28 5:40 278k 2008/03/23 D:\cygwin\bin\cygming-0.dll - os=4.0 img=1.0 sys=4.0 "cygming-0.dll" v0.0 ts=2008/3/22 21:25 24k 2008/10/30 D:\cygwin\bin\cygminires.dll - os=4.0 img=1.2 sys=4.0 "cygminires.dll" v0.0 ts=2008/10/30 19:53 331k 2008/03/31 D:\cygwin\bin\cygmng-1.dll - os=4.0 img=1.0 sys=4.0 "cygmng-1.dll" v0.0 ts=2008/3/31 10:43 121k 2008/10/04 D:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2008/10/4 19:48 264k 2009/03/02 D:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/3/1 19:14 74k 2008/10/28 D:\cygwin\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0 "cygMrm-2.dll" v0.0 ts=2008/10/27 23:04 409k 2007/04/30 D:\cygwin\bin\cygnaim_core-0.dll - os=4.0 img=1.0 sys=4.0 "cygnaim_core-0.dll" v0.0 ts=2007/4/30 16:23 66k 2009/03/01 D:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/2/28 21:50 335k 2009/03/27 D:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/26 20:45 237k 2009/03/01 D:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/2/28 21:36 165k 2009/03/27 D:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/26 20:34 224k 2003/08/09 D:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 97k 2007/09/16 D:\cygwin\bin\cygneon-26.dll - os=4.0 img=1.0 sys=4.0 "cygneon-26.dll" v0.0 ts=2007/9/16 13:41 103k 2008/09/07 D:\cygwin\bin\cygneon-27.dll - os=4.0 img=1.0 sys=4.0 "cygneon-27.dll" v0.0 ts=2008/8/28 7:10 175k 2008/11/06 D:\cygwin\bin\cygnetpbm-10.dll - os=4.0 img=1.0 sys=4.0 "cygnetpbm-10.dll" v0.0 ts=2008/11/6 1:58 74k 2009/03/12 D:\cygwin\bin\cygobjc-2.dll - os=4.0 img=1.0 sys=4.0 "cygobjc-2.dll" v0.0 ts=2009/3/6 8:35 8218k 2009/01/23 D:\cygwin\bin\cygoctave.dll - os=4.0 img=1.0 sys=4.0 "cygoctave.dll" v0.0 ts=2009/1/22 17:21 8756k 2009/01/23 D:\cygwin\bin\cygoctinterp.dll - os=4.0 img=1.0 sys=4.0 "cygoctinterp.dll" v0.0 ts=2009/1/22 17:45 15k 2007/07/29 D:\cygwin\bin\cygogg-0.dll - os=4.0 img=1.0 sys=4.0 "cygogg-0.dll" v0.0 ts=2007/7/29 14:55 49k 2004/08/02 D:\cygwin\bin\cygogrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygogrove-0.dll" v0.0 ts=2004/8/2 11:41 121k 2008/03/18 D:\cygwin\bin\cygopencdk-10.dll - os=4.0 img=1.0 sys=4.0 "cygopencdk-10.dll" v0.0 ts=2008/3/18 18:11 131k 2005/08/21 D:\cygwin\bin\cygopencdk-8.dll - os=4.0 img=1.0 sys=4.0 "cygopencdk-8.dll" v0.0 ts=2005/8/21 11:35 217k 2005/08/01 D:\cygwin\bin\cygORBit-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-0.dll" v0.0 ts=2005/8/1 16:29 281k 2006/04/25 D:\cygwin\bin\cygORBit-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-2-0.dll" v0.0 ts=2006/4/24 22:16 34k 2006/04/25 D:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 D:\cygwin\bin\cygORBitCosNaming-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBitCosNaming-0.dll" v0.0 ts=2005/8/1 16:29 16k 2006/04/25 D:\cygwin\bin\cygORBitCosNaming-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBitCosNaming-2-0.dll" v0.0 ts=2006/4/24 22:22 5k 2005/08/01 D:\cygwin\bin\cygORBitutil-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBitutil-0.dll" v0.0 ts=2005/8/1 15:51 40k 2008/10/29 D:\cygwin\bin\cygOSMesa-7.dll - os=4.0 img=1.0 sys=4.0 "cygOSMesa-7.dll" v0.0 ts=2008/10/29 1:13 1706k 2004/08/02 D:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 D:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 D:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 D:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/2/28 21:38 11k 2009/03/27 D:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/26 20:36 19k 2003/08/09 D:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 D:\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/7/18 7:26 134k 2005/07/18 D:\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/7/18 7:28 33k 2005/07/18 D:\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/7/18 7:29 36k 2005/07/18 D:\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/7/18 7:27 22k 2005/07/18 D:\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/7/18 7:29 4334k 2008/12/29 D:\cygwin\bin\cygparrot0_8_2.dll - os=4.0 img=1.0 sys=4.0 "cygparrot0_8_2.dll" v0.0 ts=2008/12/28 7:29 181k 2008/09/07 D:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2008/9/6 23:36 302k 2008/09/07 D:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcrecpp-0.dll" v0.0 ts=2008/9/6 23:36 7k 2008/09/07 D:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2008/9/6 23:36 1543k 2008/07/03 D:\cygwin\bin\cygperl5_10.dll - os=4.0 img=1.0 sys=4.0 "cygperl5_10.dll" v0.0 ts=2008/6/30 12:06 52k 2009/01/07 D:\cygwin\bin\cygpgtypes.dll - os=4.0 img=1.0 sys=4.0 "cygpgtypes.dll" v0.0 ts=2009/1/7 11:46 273k 2008/10/23 D:\cygwin\bin\cygpixman-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygpixman-1-0.dll" v0.0 ts=2008/10/23 17:25 1063k 2005/10/13 D:\cygwin\bin\cygplot-2.dll - os=4.0 img=1.0 sys=4.0 "cygplot-2.dll" v0.0 ts=2005/10/13 10:30 1229k 2005/10/13 D:\cygwin\bin\cygplotter-2.dll - os=4.0 img=1.0 sys=4.0 "cygplotter-2.dll" v0.0 ts=2005/10/13 11:22 243k 2009/03/07 D:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0 "cygpng12.dll" v0.0 ts=2009/3/7 16:04 22k 2002/06/09 D:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45 103k 2009/01/07 D:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 199k 2007/02/19 D:\cygwin\bin\cygproj-0.dll - os=4.0 img=1.0 sys=4.0 "cygproj-0.dll" v0.0 ts=2007/2/18 20:24 196k 2009/03/13 D:\cygwin\bin\cygproj-1.dll - os=4.0 img=1.0 sys=4.0 "cygproj-1.dll" v0.0 ts=2009/3/12 0:54 4k 2007/12/18 D:\cygwin\bin\cygpspell-15.dll - os=4.0 img=1.0 sys=4.0 "cygpspell-15.dll" v0.0 ts=2007/12/18 6:40 1349k 2008/11/26 D:\cygwin\bin\cygpstoedit-0.dll - os=4.0 img=1.0 sys=4.0 "cygpstoedit-0.dll" v0.0 ts=2008/11/25 19:19 277k 2009/01/31 D:\cygwin\bin\cygqhull-5.dll - os=4.0 img=1.0 sys=4.0 "cygqhull-5.dll" v0.0 ts=2009/1/31 9:54 277k 2008/05/12 D:\cygwin\bin\cygqhull.dll - os=4.0 img=1.0 sys=4.0 "cygqhull.dll" v0.0 ts=2008/5/12 7:06 6018k 2005/08/11 D:\cygwin\bin\cygqt-mt-3.dll - os=4.0 img=1.0 sys=4.0 "cygqt-mt-3.dll" v0.0 ts=2005/8/11 18:06 202k 2005/08/11 D:\cygwin\bin\cygqui-1.dll - os=4.0 img=1.0 sys=4.0 "cygqui-1.dll" v0.0 ts=2005/8/11 18:13 148k 2003/08/10 D:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0 "cygreadline5.dll" v0.0 ts=2003/8/10 19:16 155k 2009/06/23 D:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2009/6/23 8:20 40k 2008/10/10 D:\cygwin\bin\cygrsync-1.dll - os=4.0 img=1.0 sys=4.0 "cygrsync-1.dll" v0.0 ts=2008/10/10 12:50 761k 2008/09/30 D:\cygwin\bin\cygruby18.dll - os=4.0 img=1.0 sys=4.0 "cygruby18.dll" v0.0 ts=2008/9/30 9:10 78k 2004/10/13 D:\cygwin\bin\cygsasl2-2.dll - os=4.0 img=1.0 sys=4.0 "cygsasl2-2.dll" v0.0 ts=2004/10/13 18:50 43k 2009/02/02 D:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/2 13:03 26k 2008/10/26 D:\cygwin\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0 "cygSM-6.dll" v0.0 ts=2008/10/25 22:02 318k 2008/05/14 D:\cygwin\bin\cygsmi-2.dll - os=4.0 img=1.0 sys=4.0 "cygsmi-2.dll" v0.0 ts=2008/5/14 6:31 82k 2008/08/02 D:\cygwin\bin\cygspeex-1.dll - os=4.0 img=1.0 sys=4.0 "cygspeex-1.dll" v0.0 ts=2008/8/2 12:36 58k 2008/08/02 D:\cygwin\bin\cygspeexdsp-1.dll - os=4.0 img=1.0 sys=4.0 "cygspeexdsp-1.dll" v0.0 ts=2008/8/2 12:37 355k 2008/09/09 D:\cygwin\bin\cygsqlite3-0.dll - os=4.0 img=1.0 sys=4.0 "cygsqlite3-0.dll" v0.0 ts=2008/9/9 14:20 118k 2007/06/27 D:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2007/6/27 1:56 231k 2006/10/04 D:\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0 "cygssl-0.9.7.dll" v0.0 ts=2006/10/4 8:12 232k 2009/03/25 D:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0 "cygssl-0.9.8.dll" v0.0 ts=2009/3/25 13:22 8k 2009/03/12 D:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0 "cygssp-0.dll" v0.0 ts=2009/3/6 7:49 26k 2008/12/12 D:\cygwin\bin\cygstartup-notification-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygstartup-notification-1-0.dll" v0.0 ts=2008/12/12 12:17 493k 2009/03/12 D:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0 "cygstdc++-6.dll" v0.0 ts=2009/3/6 7:46 5k 2009/01/14 D:\cygwin\bin\cygstunnel.dll - os=4.0 img=1.0 sys=4.0 "cygstunnel.dll" v0.0 ts=2009/1/14 12:06 230k 2009/07/09 D:\cygwin\bin\cygsvn_client-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_client-1-0.dll" v0.0 ts=2009/7/9 13:33 34k 2009/07/09 D:\cygwin\bin\cygsvn_delta-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_delta-1-0.dll" v0.0 ts=2009/7/9 13:31 37k 2009/07/09 D:\cygwin\bin\cygsvn_diff-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_diff-1-0.dll" v0.0 ts=2009/7/9 13:31 17k 2009/07/09 D:\cygwin\bin\cygsvn_fs-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_fs-1-0.dll" v0.0 ts=2009/7/9 13:31 143k 2009/07/09 D:\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=2009/7/9 13:31 124k 2009/07/09 D:\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=2009/7/9 13:31 6k 2009/07/09 D:\cygwin\bin\cygsvn_fs_util-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_fs_util-1-0.dll" v0.0 ts=2009/7/9 13:31 29k 2009/07/09 D:\cygwin\bin\cygsvn_ra-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra-1-0.dll" v0.0 ts=2009/7/9 13:33 22k 2009/07/09 D:\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=2009/7/9 13:32 113k 2009/07/09 D:\cygwin\bin\cygsvn_ra_neon-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra_neon-1-0.dll" v0.0 ts=2009/7/9 13:31 114k 2009/07/09 D:\cygwin\bin\cygsvn_ra_serf-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_ra_serf-1-0.dll" v0.0 ts=2009/7/9 13:31 69k 2009/07/09 D:\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=2009/7/9 13:31 136k 2009/07/09 D:\cygwin\bin\cygsvn_repos-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_repos-1-0.dll" v0.0 ts=2009/7/9 13:31 247k 2009/07/09 D:\cygwin\bin\cygsvn_subr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_subr-1-0.dll" v0.0 ts=2009/7/9 13:31 31k 2009/07/09 D:\cygwin\bin\cygsvn_swig_perl-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_swig_perl-1-0.dll" v0.0 ts=2009/7/9 13:36 44k 2009/07/09 D:\cygwin\bin\cygsvn_swig_py-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_swig_py-1-0.dll" v0.0 ts=2009/7/9 13:38 51k 2009/07/09 D:\cygwin\bin\cygsvn_swig_ruby-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_swig_ruby-1-0.dll" v0.0 ts=2009/7/9 13:33 239k 2009/07/09 D:\cygwin\bin\cygsvn_wc-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygsvn_wc-1-0.dll" v0.0 ts=2009/7/9 13:31 229k 2008/12/28 D:\cygwin\bin\cygt1-5.dll - os=4.0 img=1.0 sys=4.0 "cygt1-5.dll" v0.0 ts=2008/12/28 7:09 17k 2008/12/28 D:\cygwin\bin\cygt1x-5.dll - os=4.0 img=1.0 sys=4.0 "cygt1x-5.dll" v0.0 ts=2008/12/28 7:09 60k 2009/02/13 D:\cygwin\bin\cygtasn1-3.dll - os=4.0 img=1.0 sys=4.0 "cygtasn1-3.dll" v0.0 ts=2009/2/13 13:42 14k 2007/08/13 D:\cygwin\bin\cygtextcat-0.dll - os=4.0 img=1.0 sys=4.0 "cygtextcat-0.dll" v0.0 ts=2007/8/13 12:31 66k 2009/03/27 D:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/26 20:31 247k 2004/12/07 D:\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 9:34 311k 2009/03/08 D:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 17:33 281k 2003/02/24 D:\cygwin\bin\cygtiff3.dll - os=4.0 img=1.0 sys=4.0 "cygtiff3.dll" v0.0 ts=2003/2/23 23:58 282k 2003/08/11 D:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 D:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 17:33 1618k 2008/10/09 D:\cygwin\bin\cyguchicken-0.dll - os=4.0 img=1.0 sys=4.0 "cyguchicken-0.dll" v0.0 ts=2008/10/9 15:23 63k 2008/10/28 D:\cygwin\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0 "cygUil-2.dll" v0.0 ts=2008/10/27 23:04 27k 2006/12/06 D:\cygwin\bin\cygungif-4.dll - os=4.0 img=1.0 sys=4.0 "cygungif-4.dll" v0.0 ts=2006/12/5 22:41 40k 2009/07/08 D:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2009/7/8 4:35 150k 2008/05/14 D:\cygwin\bin\cygvorbis-0.dll - os=4.0 img=1.0 sys=4.0 "cygvorbis-0.dll" v0.0 ts=2008/5/14 13:34 982k 2008/05/14 D:\cygwin\bin\cygvorbisenc-2.dll - os=4.0 img=1.0 sys=4.0 "cygvorbisenc-2.dll" v0.0 ts=2008/5/14 13:34 25k 2008/05/14 D:\cygwin\bin\cygvorbisfile-3.dll - os=4.0 img=1.0 sys=4.0 "cygvorbisfile-3.dll" v0.0 ts=2008/5/14 13:34 697k 2006/11/05 D:\cygwin\bin\cygWand-10.dll - os=4.0 img=1.0 sys=4.0 "cygWand-10.dll" v0.0 ts=2006/11/5 9:41 154k 2004/08/11 D:\cygwin\bin\cygWand-6.dll - os=4.0 img=1.0 sys=4.0 "cygWand-6.dll" v0.0 ts=2004/8/11 2:04 8k 2008/11/05 D:\cygwin\bin\cygWindowsWM-7.dll - os=4.0 img=1.0 sys=4.0 "cygWindowsWM-7.dll" v0.0 ts=2008/11/5 2:40 289k 2008/11/26 D:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 D:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 152k 2006/02/08 D:\cygwin\bin\cygwnck-1-18.dll - os=4.0 img=1.0 sys=4.0 "cygwnck-1-18.dll" v0.0 ts=2006/2/7 22:10 22k 2009/03/29 D:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:09 885k 2009/01/29 D:\cygwin\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0 "cygX11-6.dll" v0.0 ts=2009/1/28 11:11 4k 2009/01/29 D:\cygwin\bin\cygX11-xcb-1.dll - os=4.0 img=1.0 sys=4.0 "cygX11-xcb-1.dll" v0.0 ts=2009/1/28 11:12 8k 2008/10/24 D:\cygwin\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0 "cygXau-6.dll" v0.0 ts=2008/10/24 13:36 249k 2008/11/21 D:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2008/11/20 20:05 351k 2008/11/21 D:\cygwin\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-7.dll" v0.0 ts=2008/11/20 20:05 360k 2005/10/27 D:\cygwin\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-8.dll" v0.0 ts=2005/10/26 13:45 268k 2008/11/15 D:\cygwin\bin\cygXaw3d-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw3d-7.dll" v0.0 ts=2008/11/13 3:37 77k 2009/02/09 D:\cygwin\bin\cygxcb-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-1.dll" v0.0 ts=2009/2/8 23:06 11k 2008/12/18 D:\cygwin\bin\cygxcb-atom-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-atom-1.dll" v0.0 ts=2008/12/17 19:50 8k 2008/12/18 D:\cygwin\bin\cygxcb-aux-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-aux-0.dll" v0.0 ts=2008/12/17 19:50 8k 2009/02/09 D:\cygwin\bin\cygxcb-composite-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-composite-0.dll" v0.0 ts=2009/2/8 23:06 6k 2009/02/09 D:\cygwin\bin\cygxcb-damage-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-damage-0.dll" v0.0 ts=2009/2/8 23:06 7k 2009/02/09 D:\cygwin\bin\cygxcb-dpms-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-dpms-0.dll" v0.0 ts=2009/2/8 23:06 5k 2008/12/18 D:\cygwin\bin\cygxcb-event-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-event-1.dll" v0.0 ts=2008/12/17 19:50 50k 2009/02/09 D:\cygwin\bin\cygxcb-glx-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-glx-0.dll" v0.0 ts=2009/2/8 23:06 13k 2008/12/18 D:\cygwin\bin\cygxcb-icccm-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-icccm-1.dll" v0.0 ts=2008/12/17 19:51 13k 2008/12/18 D:\cygwin\bin\cygxcb-image-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-image-0.dll" v0.0 ts=2008/12/17 19:51 7k 2008/12/18 D:\cygwin\bin\cygxcb-keysyms-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-keysyms-0.dll" v0.0 ts=2008/12/17 19:51 6k 2008/12/18 D:\cygwin\bin\cygxcb-property-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-property-1.dll" v0.0 ts=2008/12/17 19:50 18k 2009/02/09 D:\cygwin\bin\cygxcb-randr-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-randr-0.dll" v0.0 ts=2009/2/8 23:06 9k 2009/02/09 D:\cygwin\bin\cygxcb-record-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-record-0.dll" v0.0 ts=2009/2/8 23:06 21k 2009/02/09 D:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/2/8 23:06 10k 2008/12/18 D:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2008/12/17 19:51 6k 2008/12/18 D:\cygwin\bin\cygxcb-reply-1.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-reply-1.dll" v0.0 ts=2008/12/17 19:51 7k 2009/02/09 D:\cygwin\bin\cygxcb-res-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-res-0.dll" v0.0 ts=2009/2/8 23:06 7k 2009/02/09 D:\cygwin\bin\cygxcb-screensaver-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-screensaver-0.dll" v0.0 ts=2009/2/8 23:07 8k 2009/02/09 D:\cygwin\bin\cygxcb-shape-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-shape-0.dll" v0.0 ts=2009/2/8 23:07 7k 2009/02/09 D:\cygwin\bin\cygxcb-shm-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-shm-0.dll" v0.0 ts=2009/2/8 23:07 10k 2009/02/09 D:\cygwin\bin\cygxcb-sync-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-sync-0.dll" v0.0 ts=2009/2/8 23:07 7k 2009/02/09 D:\cygwin\bin\cygxcb-xevie-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-xevie-0.dll" v0.0 ts=2009/2/8 23:07 15k 2009/02/09 D:\cygwin\bin\cygxcb-xfixes-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-xfixes-0.dll" v0.0 ts=2009/2/8 23:07 7k 2009/02/09 D:\cygwin\bin\cygxcb-xinerama-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-xinerama-0.dll" v0.0 ts=2009/2/8 23:07 5k 2009/02/09 D:\cygwin\bin\cygxcb-xlib-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-xlib-0.dll" v0.0 ts=2009/2/8 23:06 6k 2009/02/09 D:\cygwin\bin\cygxcb-xtest-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-xtest-0.dll" v0.0 ts=2009/2/8 23:07 8k 2008/10/26 D:\cygwin\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcomposite-1.dll" v0.0 ts=2008/10/25 22:01 30k 2008/10/26 D:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2008/10/25 22:09 8k 2008/10/26 D:\cygwin\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0 "cygXdamage-1.dll" v0.0 ts=2008/10/25 22:39 34k 2008/07/12 D:\cygwin\bin\cygxdelta-2.dll - os=4.0 img=1.0 sys=4.0 "cygxdelta-2.dll" v0.0 ts=2008/7/12 15:41 16k 2008/10/24 D:\cygwin\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXdmcp-6.dll" v0.0 ts=2008/10/24 15:14 3403k 2009/05/23 D:\cygwin\bin\cygxerces-c-3-0.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c-3-0.dll" v0.0 ts=2009/5/23 12:45 3821k 2008/07/19 D:\cygwin\bin\cygxerces-c28.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-c28.dll" v0.0 ts=2008/7/19 16:36 409k 2008/07/19 D:\cygwin\bin\cygxerces-depdom28.dll - os=4.0 img=1.0 sys=4.0 "cygxerces-depdom28.dll" v0.0 ts=2008/7/19 16:36 7k 2008/10/26 D:\cygwin\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0 "cygXevie-1.dll" v0.0 ts=2008/10/25 22:59 49k 2008/10/26 D:\cygwin\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0 "cygXext-6.dll" v0.0 ts=2008/10/25 23:25 16k 2008/10/26 D:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2008/10/25 23:41 331k 2009/02/05 D:\cygwin\bin\cygXfont-1.dll - os=4.0 img=1.0 sys=4.0 "cygXfont-1.dll" v0.0 ts=2009/2/5 13:03 62k 2008/10/26 D:\cygwin\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0 "cygXft-2.dll" v0.0 ts=2008/10/26 2:52 27k 2008/11/17 D:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2008/11/16 20:43 8k 2009/02/09 D:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/2/8 22:25 121k 2008/11/04 D:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2008/11/4 0:34 1173k 2008/10/28 D:\cygwin\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0 "cygXm-2.dll" v0.0 ts=2008/10/27 23:03 453k 2008/11/25 D:\cygwin\bin\cygXmHTML-0.dll - os=4.0 img=1.0 sys=4.0 "cygXmHTML-0.dll" v0.0 ts=2008/11/25 15:30 95k 2005/10/13 D:\cygwin\bin\cygxmi-0.dll - os=4.0 img=1.0 sys=4.0 "cygxmi-0.dll" v0.0 ts=2005/10/13 10:33 407k 2009/01/04 D:\cygwin\bin\cygxml-1.dll - os=4.0 img=1.0 sys=4.0 "cygxml-1.dll" v0.0 ts=2009/1/4 15:20 1082k 2009/01/28 D:\cygwin\bin\cygxml2-2.dll - os=4.0 img=1.0 sys=4.0 "cygxml2-2.dll" v0.0 ts=2009/1/27 23:37 74k 2008/10/26 D:\cygwin\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0 "cygXmu-6.dll" v0.0 ts=2008/10/26 3:05 10k 2008/10/26 D:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2008/10/26 3:05 26k 2005/10/27 D:\cygwin\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXp-6.dll" v0.0 ts=2005/10/26 13:27 53k 2008/10/26 D:\cygwin\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-4.dll" v0.0 ts=2008/10/26 3:14 48k 2009/03/23 D:\cygwin\bin\cygXpm-noX-4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-noX-4.dll" v0.0 ts=2009/3/23 18:54 21k 2008/10/26 D:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2008/10/26 3:28 31k 2008/10/26 D:\cygwin\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0 "cygXrender-1.dll" v0.0 ts=2008/10/26 3:28 7k 2008/10/26 D:\cygwin\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0 "cygXRes-1.dll" v0.0 ts=2008/10/26 3:52 200k 2008/08/07 D:\cygwin\bin\cygxslt-1.dll - os=4.0 img=1.0 sys=4.0 "cygxslt-1.dll" v0.0 ts=2008/8/6 20:15 9k 2008/10/26 D:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2008/10/25 22:15 281k 2008/10/26 D:\cygwin\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0 "cygXt-6.dll" v0.0 ts=2008/10/26 3:54 17k 2008/10/26 D:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2008/10/26 4:02 65k 2009/03/02 D:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 78k 2005/11/10 D:\cygwin\bin\cygzvt-2.dll - os=4.0 img=1.0 sys=4.0 "cygzvt-2.dll" v0.0 ts=2005/11/10 16:06 1829k 2008/06/12 D:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2008/6/12 13:35 Cygwin DLL version info: DLL version: 1.5.25 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 156 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: Thu Jun 12 19:34:46 CEST 2008 CVS tag: cr-0x5f1 Shared id: cygwin1S4 56k 2004/03/11 D:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0 "cygXft-1.dll" v0.0 ts=2003/11/17 20:42 578k 2006/03/24 D:\cygwin\lib\lapack\cygblas.dll - os=4.0 img=1.0 sys=4.0 "cygblas.dll" v0.0 ts=2006/3/24 1:30 4887k 2006/03/24 D:\cygwin\lib\lapack\cyglapack.dll - os=4.0 img=1.0 sys=4.0 "cyglapack.dll" v0.0 ts=2006/3/24 1:30 Potential app conflicts: ZoneAlarm Personal Firewall Detected: HKLM Registry Key. Service : BrlAPI Description : Braille API (BrlAPI) Current State : Stopped Command : /bin/brltty.exe -P /var/run/brltty.pid stdin path : /dev/null stdout path : /var/log/BrlAPI.log stderr path : /var/log/BrlAPI.log pidfile path : /var/run/brltty.pid Special flags : --interactive Process Type : Own Process, Interactive Startup : Manual Account : LocalSystem Cygwin Package Information Last downloaded files to: D:\cygtmp Last downloaded files from: ftp://ftp.gtlib.gatech.edu/pub/cygwin/ Package Version _update-info-dir 00827-1 a2ps 4.13-1 aalib 1.4rc5-3 aalib-devel 1.4rc5-3 abook 0.5.6-1 aewm++ 1.1.2-1 aewm++-goodies 1.0-1 afio 2.5-1 alternatives 1.3.30c-3 annoyance-filter 1.0d-1 antiword 0.37-1 apache 1.3.33-2 apache2 2.2.6-1 apache2-devel 2.2.6-1 apache2-manual 2.2.6-1 appres 1.0.1-1 apr1 1.3.5-1 aprutil1 1.3.7-1 arc 5.21m-1 archivemail 0.7.0-1 aria2 0.13.1+1-1 asciidoc 8.3.5-1 ash 20040127-4 aspell 0.60.5-1 aspell-de 20030222.1-1 aspell-dev 0.60.5-1 aspell-doc 0.60.5-1 aspell-en 6.0.0-1 aspell-pl 6.0.20061121.0-1 aspell-sv 0.50.2-2 astyle 1.22-1 atk 1.10.3-1 atk-devel 1.10.3-1 atk-doc 1.10.3-1 atool 0.35.0-1 audiofile 0.2.6-3 autoconf 6-1 autoconf2.1 2.13-5 autoconf2.5 2.63-1 automake 4-1 automake1.10 1.10.2-1 automake1.11 1.11-1 automake1.4 1.4p6-5 automake1.5 1.5-3 automake1.6 1.6.3-5 automake1.7 1.7.9-4 automake1.8 1.8.5-4 automake1.9 1.9.6-3 autossh 1.4b-1 autotrace 0.31.1-2 aview 1.3.0rc1-1 base-files 3.7-1 base-passwd 2.2-1 bash 3.2.49-22 bash-completion 20060301-2 bashdb 3.1_0.09-1 bc 1.06-2 bcrypt 1.1-1 bdftopcf 1.0.1-1 beforelight 1.0.3-1 bigreqsproto 1.0.2-1 bind 9.6.0-1 binutils 20080624-2 bison 2.3-1 bitmap 1.0.3-2 bmp2png 1.62-1 bool 0.2.1-1 boost 1.33.1-4 boost-devel 1.33.1-4 boxes 1.0.1a-1 brltty 4.0-1 bsdcpio 2.7.1-1 bsdiff 4.3-4 bsdtar 2.7.1-1 bsfilter 1.0.15-1 bsflite 0.82-2 bvi 1.3.2-1 byacc 1.9-1 bzip2 1.0.5-3 bzr 1.11-1 c-client 2007-2 c3270 3.3.4p7-1 cabextract 1.1-1 cadaver 0.23.2-1 catdoc 0.94.2-3 catgets 1.0-1 ccache 2.4-1 ccdoc 0.8.41-2 ccrypt 1.7-1 cdargs 1.35-1 cdda2wav 1.1.7.1-1 cdrecord 1.1.7.1-1 cdrkit 1.1.7.1-1 cfourcc 0.1.2-1 cgoban 1.9.14-5 check 0.9.5-1 checkx 0.2.1-1 chere 1.1-1 chewmail 1.2-1 chicken 3.4.0-1 chkconfig 1.3.30a-1 clamav 0.94.2-1 clamav-db 0.94.2-1 clisp 2.46-1 clisp-clx 2.46-1 clisp-gdi 2.46-1 clisp-gtk2 2.44-1 cmake 2.6.4-1 cocom 0.995-1 codeville 0.8.0-2 cogito 0.18.2-2 colordiff 1.0.7-1 colorgcc 1.3.2-1 compface 1.5.2-1 compositeproto 0.4-1 connect-proxy 1.100-1 coreutils 6.10-2 corkscrew 2.0-1 cpio 2.9-1 cppcheck 1.34-1 cppunit 1.12.0-1 cramfs 1.1-1 cron 4.1-7 crypt 1.1-1 csih 0.2.0-1 ctags 5.7-1 ctorrent 1.3.4-dnh3.2-1 ctris 0.42-1 curl 7.16.3-1 curl-devel 7.16.3-1 cvs 1.12.13-1 cvs2svn 2.1.1-1 cvsps 2.1-1 cvsutils 0.2.5-1 cygport 0.4.4-1 cygrunsrv 1.34-1 cygutils 1.3.4-1 cygwin 1.5.25-15 cygwin-doc 1.4-4 cygwin-x-doc 1.1.0-1 cyrus-sasl 2.1.19-3 d 1.2.0-1 damageproto 1.1.0-1 db2 2.7.7-5 db3.1 3.1.17-3 db3.3 3.3.11.2-1 db4.0 4.0.14-1 db4.1 4.1.25.3-2 db4.2 4.2.52.5-2 db4.3 4.3.29.1-1 db4.4 4.4.20.4-1 db4.5 4.5.20.2-2 ddd 3.3.9-1 ddrescue 1.9-1 dejagnu 20021217-2 deroff 1.1-1 desktop-file-utils 0.10-1 dhttpd 1.02a-1 diffstat 1.46-1 diffutils 2.8.7-1 distcc 2.18.3-1 dmalloc 5.4.2-2 docbook-xml412 4.1.2-1 docbook-xml42 4.2-3 docbook-xml43 4.3-1 docbook-xml44 4.4-1 docbook-xsl 1.69.1-1 dog 1.7-1 doxygen 1.5.5-1 dpatch 2.0.26-2 e2fsimage 0.2.0-2 e2fsprogs 1.35-3 ec-fonts-mftraced 1.0.8-4 ed 1.0-1 editres 1.0.3-2 editrights 1.01-2 ELFIO 1.0.2-1 emacs 21.2-13 emacs-el 21.2-13 emacs-X11 21.2-13 email 3.1.2-1 enscript 1.6.4-2 epstool 3.08-2 esound 0.2.41-1 eventlog 0.2.5-1 evieext 1.0.2-1 exif 0.6.15-1 exim 4.69-1 expat 2.0.1-1 expect 20030128-1 fcgi 2.4.0-2 fcrackzip 0.3-1 fdupes 1.50-PR2-1 fetchmail 6.3.9-1 ffcall 1.10-1 fftw3 3.2-1 fftw3-doc 3.2-1 figlet 2.2.2-2 file 4.21-1 findutils 4.4.0-3 fixesproto 4.0-1 flac 1.2.1-1 flac-devel 1.2.1-1 flawfinder 1.27-1 flex 2.5.35-1 flip 1.19-1 fltk 1.1.8r5648-1 fltk-demos 1.1.8r5648-1 fltk-devel 1.1.8r5648-1 fltk-doc 1.1.8r5648-1 font-adobe-dpi100 1.0.0-1 font-adobe-dpi75 1.0.0-1 font-adobe-utopia-dpi100 1.0.1-1 font-adobe-utopia-dpi75 1.0.1-1 font-adobe-utopia-type1 1.0.1-1 font-alias 1.0.1-1 font-arabic-misc 1.0.0-1 font-bh-dpi100 1.0.0-1 font-bh-dpi75 1.0.0-1 font-bh-lucidatypewriter-dpi100 1.0.0-1 font-bh-lucidatypewriter-dpi75 1.0.0-1 font-bh-ttf 1.0.0-1 font-bh-type1 1.0.0-1 font-bitstream-dpi100 1.0.0-1 font-bitstream-dpi75 1.0.0-1 font-bitstream-speedo 1.0.0-1 font-bitstream-type1 1.0.0-1 font-bitstream-vera-ttf 1.10-1 font-cronyx-cyrillic 1.0.0-1 font-cursor-misc 1.0.0-1 font-daewoo-misc 1.0.0-1 font-dec-misc 1.0.0-1 font-encodings 1.0.2-1 font-ibm-type1 1.0.0-1 font-isas-misc 1.0.0-1 font-jis-misc 1.0.0-1 font-micro-misc 1.0.0-1 font-misc-cyrillic 1.0.0-1 font-misc-meltho 1.0.0-1 font-misc-misc 1.0.0-1 font-mutt-misc 1.0.0-1 font-schumacher-misc 1.0.0-1 font-screen-cyrillic 1.0.1-1 font-sony-misc 1.0.0-1 font-sun-misc 1.0.0-1 font-util 1.0.1-1 font-winitzki-cyrillic 1.0.0-1 font-xfree86-type1 1.0.1-1 fontconfig 2.6.0-1 fontsproto 2.0.2-1 fonttosfnt 1.0.4-1 fortune 1.99.1-2 freeglut 2.4.0-1 fvwm 2.5.21-1 gail 1.8.8-1 gamin 0.1.10-2 gawk 3.1.6-1 gcc 3.4.4-999 gcc-ada 3.4.4-999 gcc-core 3.4.4-999 gcc-g++ 3.4.4-999 gcc-g77 3.4.4-999 gcc-gdc 3.4.4-999 gcc-gpc 3.4.4-999 gcc-java 3.4.4-999 gcc-mingw 20040810-1 gcc-mingw-ada 20050522-1 gcc-mingw-core 20050522-1 gcc-mingw-g++ 20050522-1 gcc-mingw-g77 20050522-1 gcc-mingw-gdc 20050522-1 gcc-mingw-gpc 20040810-1 gcc-mingw-java 20050522-1 gcc-mingw-objc 20050522-1 gcc-objc 3.4.4-999 gcc-tools-autoconf 2.59-2 gcc-tools-automake 1.9.6-2 gcc4 4.3.2-2 gcc4-ada 4.3.2-2 gcc4-core 4.3.2-2 gcc4-fortran 4.3.2-2 gcc4-g++ 4.3.2-2 gcc4-java 4.3.2-2 gcc4-objc 4.3.2-2 gcc4-runtime 4.3.2-1 gccmakedep 1.0.2-1 GConf2 2.14.0-2 GConf2-devel 2.14.0-2 GConf2-doc 2.14.0-2 gd 2.0.36RC1-1 gdb 6.8-2 gdbm 1.8.3-9 gdk-pixbuf 0.22.0-4 gdk-pixbuf-devel 0.22.0-4 gdk-pixbuf-doc 0.22.0-4 gdk-pixbuf2-wmf 0.2.8.4-3 genisoimage 1.1.7.1-1 geoip 1.3.14-1 getmail 4.7.7-1 gettext 0.17-4 gettext-devel 0.17-4 ghostscript 8.63-2 ghostscript-fonts-other 6.0-1 ghostscript-fonts-std 8.11-1 giflib 4.1.6-2 git 1.6.1.2-1 git-completion 1.6.1.2-1 git-gui 1.6.1.2-1 git-oodiff 20080328-1 gitk 1.6.1.2-1 glib 1.2.10-4 glib-devel 1.2.10-4 glib2 2.10.3-1 glib2-devel 2.10.3-1 glib2-doc 2.10.3-1 glpk 4.35-1 glproto 1.4.9-1 gmp 4.2.4-1 gnome-common 2.24.0-1 gnome-icon-theme 2.14.2-1 gnome-keyring 0.4.8-1 gnome-libs 1.4.2-3 gnome-libs-devel 1.4.2-3 gnome-libs-doc 1.4.2-3 gnome-mime-data 2.4.2-1 gnome-themes 2.14.2-1 gnome-vfs2 2.12.2-1 gnome-vfs2-devel 2.12.2-1 gnome-vfs2-doc 2.12.2-1 gnubg 0.16-1 gnugo 3.8-1 gnupg 1.4.9-2 gnuplot 4.2.4-1 gnutls 2.4.1-1 gnutls-devel 2.4.1-1 gnutls-doc 2.4.1-1 gperf 3.0.3-1 gq 1.2.2-1 grace 5.1.19-1 grandr 0.1-1 GraphicsMagick 1.0.6-1 greed 3.4-1 grep 2.5.3-1 grepmail 5.3033-2 groff 1.19.2-2 gsl 1.12-1 gsl-apps 1.12-1 gsl-devel 1.12-1 gsl-doc 1.12-1 gtk+ 1.2.10-3 gtk+-devel 1.2.10-3 gtk-doc 1.11-1 gtk-engines 0.12-3 gtk2-x11 2.6.10-1 gtk2-x11-devel 2.6.10-1 gtk2-x11-doc 2.6.10-1 gtk2-x11-engines 2.6.7-1 gtk2-x11-runtime 2.6.10-1 gtypist 2.8.3-1 guile 1.8.2-1 guile-devel 1.8.2-1 guile-doc 1.8.2-1 guilt 0.27-1 gv 3.6.5-1 gvim 7.2-1 gzip 1.3.12-2 hdf5 1.6.8-4 hdparm 6.9-1 help2man 1.36.4-2 hexedit 1.2.12-1 hicolor-icon-theme 0.10-1 hp2xx 3.4.4-1 httping 1.2.5-1 httptunnel 3.3-1 iceauth 1.0.2-1 icedax 1.1.7.1-1 ico 1.0.2-1 icu 3.8-4 icu-doc 3.8-4 ifile 1.3.8-1 ii 1.3-1 ImageMagick 6.4.0.6-1 imake 1.0.2-2 imlib 1.9.14-3 indent 2.2.9-2 inetutils 1.5-6 initscripts 0.9-2 inputproto 1.4.4-1 integrit 4.1-1 intltool 0.40.5-1 ioperm 0.4-1 ipcalc 0.41-1 iprint 1.3-1 irssi 0.8.13-1 iselect 1.4.0-1 jasper 1.900.1-1 java-brlapi 4.0-1 jbigkit 2.0-1 jgraph 8.3-1 jikes 1.22-2 jlint 3.1-1 joe 3.7-1 jpeg 6b-13 kbproto 1.0.3-1 keychain 2.6.8-1 lablgtk2 20060908-1 lapack 3.0-8 lcms 1.17-1 less 382-1 lesstif 0.95.0-2 lftp 3.7.6-3 libaa1 1.4rc5-3 libao 0.8.8-1 libao-devel 0.8.8-1 libao2 0.8.8-1 libapr1 1.3.5-1 libapr1-devel 1.3.5-1 libaprutil1 1.3.7-1 libaprutil1-devel 1.3.7-1 libarchive 2.7.1-1 libarchive-devel 2.7.1-1 libarchive2 2.7.1-1 libart_lgpl 1.4.2-3 libart_lgpl_2-devel 2.3.20-2 libart_lgpl_2_2 2.3.20-2 libaspell15 0.60.5-1 libasprintf0 0.17-4 libaudio-devel 1.9.1-2 libaudio2 1.9.1-2 libaudiofile-devel 0.2.6-3 libaudiofile0 0.2.6-3 libautotrace-devel 0.31.1-2 libautotrace3 0.31.1-2 libbind9-devel 9.6.0-1 libbind9_50 9.6.0-1 libbonobo2 2.14.0-1 libbonobo2-devel 2.14.0-1 libbonobo2-doc 2.14.0-1 libbonoboui2 2.10.1-1 libboost 1.33.1-4 libbrlapi 4.0-1 libbrlapi-devel 4.0-1 libbz2-devel 1.0.5-3 libbz2_0 1.0.2-1 libbz2_1 1.0.5-3 libcairo-devel 1.8.6-2 libcairo2 1.8.6-2 libcharset1 1.13-1 libclamav-devel 0.94.2-1 libclamav2 0.91.2-1 libclamav3 0.92.1-1 libclamav4 0.93.3-1 libclamav5 0.94.2-1 libcroco06 0.6.1-1 libcroco06-devel 0.6.1-1 libcurl3 7.15.4-2 libcurl4 7.16.3-1 libdb2 2.7.7-5 libdb2-devel 2.7.7-5 libdb3.1 3.1.17-3 libdb3.1-devel 3.1.17-3 libdb3.3 3.3.11.2-1 libdb3.3-devel 3.3.11.2-1 libdb4.0 4.0.14-1 libdb4.0-devel 4.0.14-1 libdb4.1 4.1.25.3-2 libdb4.1-devel 4.1.25.3-2 libdb4.2 4.2.52.5-2 libdb4.2-devel 4.2.52.5-2 libdb4.3 4.3.29.1-1 libdb4.3-devel 4.3.29.1-1 libdb4.4 4.4.20.4-1 libdb4.4-devel 4.4.20.4-1 libdb4.5 4.5.20.2-2 libdb4.5-devel 4.5.20.2-2 libdns-devel 9.6.0-1 libdns50 9.6.0-1 libdpstk1 6.8.2.0-1 libecpg-compat2 8.2.11-1 libecpg-devel 8.2.11-1 libecpg5 8.2.11-1 libEMF 1.0.3-2 libEMF-devel 1.0.3-2 libEMF1 1.0.3-2 libesd-devel 0.2.41-1 libesd0 0.2.41-1 libesound-devel 0.2.41-1 libesound0 0.2.41-1 libexif 0.6.17-1 libexif-devel 0.6.17-1 libexif12 0.6.17-1 libexpat0 1.95.8-2 libexpat1 2.0.1-1 libexpat1-devel 2.0.1-1 libfam-devel 0.1.10-2 libfam0 0.1.10-2 libfcgi-devel 2.4.0-2 libfcgi0 2.4.0-2 libffi4 4.3.2-2 libfftw3-devel 3.2-1 libfftw3_3 3.2-1 libFLAC++6 1.2.1-1 libFLAC8 1.2.1-1 libfontconfig-devel 2.6.0-1 libfontconfig1 2.6.0-1 libfontenc-devel 1.0.4-2 libfontenc1 1.0.4-2 libfpx 1.2.0.13-1 libfpx-devel 1.2.0.13-1 libfpx1 1.2.0.13-1 libfreetype-devel 2.3.8-1 libfreetype2-devel 2.3.8-1 libfreetype26 2.3.8-1 libfreetype6 2.3.8-1 libgamin1-devel 0.1.10-2 libgamin1_0 0.1.10-2 libgc 6.4-1 libgcc1 4.3.2-2 libgcj-common 4.3.2-2 libgcj9 4.3.2-2 libgcrypt 1.4.1-4 libgcrypt-devel 1.4.1-4 libgcrypt11 1.4.1-4 libgd-devel 2.0.36RC1-1 libgd2 2.0.36RC1-1 libgdbm 1.8.0-5 libgdbm-devel 1.8.3-9 libgdbm3 1.8.3-3 libgdbm4 1.8.3-9 libgeotiff 1.2.5a-1 libgeotiff-devel 1.2.5a-1 libgeotiff1 1.2.5a-1 libgettextpo0 0.17-4 libgfortran3 4.3.2-2 libggi2 2.2.2-1 libggi2-devel 2.2.2-1 libggi2-display-aa 2.2.2-1 libggi2-display-file 2.2.2-1 libggi2-display-terminfo 2.2.2-1 libggi2-display-x 2.2.2-1 libggi2-samples 2.2.2-1 libggimisc2 2.2.2-1 libggimisc2-devel 2.2.2-1 libggimisc2-samples 2.2.2-1 libggiwmh0 0.3.2-1 libggiwmh0-devel 0.3.2-1 libggiwmh0-display-x 0.3.2-1 libggiwmh0-samples 0.3.2-1 libgif-devel 4.1.6-2 libgif4 4.1.6-2 libgii1 1.0.2-1 libgii1-devel 1.0.2-1 libgii1-input-x 1.0.2-1 libGL-devel 7.2-2 libGL1 7.2-2 libglade2 2.5.1-1 libglitz-devel 0.5.6-1 libglitz1 0.5.6-1 libglpk-devel 4.35-1 libglpk0 4.35-1 libGLU-devel 7.2-2 libGLU1 7.2-2 libglut-devel 2.4.0-1 libglut3 2.4.0-1 libGLw-devel 7.2-2 libGLw1 7.2-2 libgmp-devel 4.2.4-1 libgmp3 4.2.4-1 libgnat4.3 4.3.2-2 libgnome 1.4.2-3 libgnome2 2.12.0.1-1 libgnome2-devel 2.12.0.1-1 libgnome2-doc 2.12.0.1-1 libgnomecanvas2 2.12.0-1 libgnomecanvas2-devel 2.12.0-1 libgnomecanvas2-doc 2.12.0-1 libgnomecanvaspixbuf 0.22.0-4 libgnomeprint22 2.10.3-1 libgnomeprintui22 2.10.2-1 libgnomesupport 1.4.2-3 libgnomeui 1.4.2-3 libgnomeui2 2.12.1-1 libgnomeui2-devel 2.12.1-1 libgnomeui2-doc 2.12.1-1 libgnorba 1.4.2-3 libgnutls11 1.0.25-2 libgnutls26 2.4.1-1 libgomp1 4.3.2-2 libgpg-error 1.6-1 libGraphicsMagick-devel 1.0.6-1 libGraphicsMagick0 1.0.6-1 libgs-devel 8.63-2 libgs8 8.63-2 libgtkhtml2 2.6.3-2 libgtkhtml2-devel 2.6.3-2 libgtkxmhtml 1.4.2-3 libguile12 1.6.7-4 libguile17 1.8.2-1 libhdf5-devel 1.6.8-4 libhdf5_0 1.6.8-4 libICE-devel 1.0.4-2 libICE6 1.0.4-2 libiconv 1.13-1 libiconv2 1.13-1 libicu-devel 3.8-4 libicu38 3.8-4 libIDL 0.5.17-2 libIDL2 0.8.6-1 libidn 1.9-1 libidn-devel 1.9-1 libidn-doc 1.9-1 libidn11 1.9-1 libImageMagick1 6.4.0.6-1 libintl1 0.10.40-1 libintl2 0.12.1-3 libintl3 0.14.5-1 libintl8 0.17-4 libisc-devel 9.6.0-1 libisc50 9.6.0-1 libisccc-devel 9.6.0-1 libisccc50 9.6.0-1 libisccfg-devel 9.6.0-1 libisccfg50 9.6.0-1 libjasper-devel 1.900.1-1 libjasper1 1.900.1-1 libjasper1.701_0 1.701.0-3 libjbig-devel 2.0-1 libjbig1 1.5-3 libjbig2 2.0-1 libjpeg-devel 6b-13 libjpeg62 6b-13 libjpeg6b 6b-8 libkpathsea3 2.0.2-15 libkpathsea4 3.0.0-3 liblcms-devel 1.17-1 liblcms1 1.17-1 libltdl3 1.5.27a-1 libltdl7 2.2.7a-5 liblwres-devel 9.6.0-1 liblwres50 9.6.0-1 liblzma-devel 4.999.8beta_20090714-1 liblzma1 4.999.8beta_20090714-1 liblzmadec-devel 4.32.7-3 liblzmadec0 4.32.7-3 liblzo2 2.03-1 liblzo2-devel 2.03-1 liblzo2_2 2.03-1 libMagick-devel 6.4.0.6-1 libMagick10 6.3.0.1-2 libMagick6 6.0.4-1 libmcrypt 2.5.8-1 libmcrypt-devel 2.5.8-1 libmcrypt4 2.5.8-1 libming-devel 0.4.0.beta5-1 libming0 0.4.0.beta5-1 libmng 1.0.10-1 libmng-contrib 1.0.10-1 libmng-devel 1.0.10-1 libmng1 1.0.10-1 libmpfr-devel 2.4.1-1 libmpfr1 2.4.1-1 libncurses-devel 5.7-5 libncurses7 5.3-4 libncurses8 5.5-4 libncurses9 5.7-5 libneon-devel 0.28.3-1 libneon26 0.26.4-1 libneon27 0.28.3-1 libnetpbm-devel 10.44.2-1 libnetpbm10 10.44.2-1 libobjc2 4.3.2-2 libogg 1.1.3-1 libogg-devel 1.1.3-1 libogg0 1.1.3-1 libopencdk-devel 0.6.6-1 libopencdk10 0.6.6-1 libopencdk8 0.5.7-1 libopenldap2 2.1.25-1 libopenldap2_2_7 2.2.26-2 libopenldap2_3_0 2.3.43-1 libOSMesa-devel 7.2-2 libOSMesa7 7.2-2 libparrot-devel 0.8.2-1 libparrot0 0.8.2-1 libpcre0 7.8-1 libpgtypes2 8.2.11-1 libpixman1-devel 0.12.0-1 libpixman1_0 0.12.0-1 libplot2 2.4.1-1 libplotter2 2.4.1-1 libpng 1.2.35-1 libpng12 1.2.35-1 libpng12-devel 1.2.35-1 libpopt0 1.6.4-4 libpq-devel 8.2.11-1 libpq3 7.4.5-1 libpq4 8.2.5-1 libpq5 8.2.11-1 libproj-devel 4.6.1a-1 libproj0 4.5.0a-2 libproj1 4.6.1a-1 libpstoedit0 3.45-2 libpthread-stubs 0.1-1 libqhull 2003.1-1 libqhull-devel 2003.1-4 libqhull_5 2003.1-4 libreadline5 4.3-5 libreadline6 5.2.14-12 librsync-devel 0.9.7-2 librsync1 0.9.7-2 libsasl2 2.1.19-3 libsasl2-devel 2.1.19-3 libserf0-devel 0.3.0-1 libserf0_0 0.3.0-1 libsigsegv 2.4-1 libSM-devel 1.1.0-1 libSM6 1.1.0-1 libsmi 0.4.8-1 libsmi-devel 0.4.8-1 libsmi2 0.4.8-1 libspeex1 1.2rc1-1 libsqlite3-devel 3.6.2-1 libsqlite3_0 3.6.2-1 libssh2 0.15-1 libssh2-devel 0.15-1 libssh2_1 0.15-1 libssp0 4.3.2-2 libstartup-notification1-devel 0.9-2 libstartup-notification1_0 0.9-2 libstdc++6 4.3.2-2 libstdc++6-devel 4.3.2-2 libSuiteSparse-devel 3.2.0-2 libtasn1 1.8-1 libtasn1-devel 1.8-1 libtasn1_3 1.8-1 libtextcat 2.2-2 libtextcat-devel 2.2-2 libtextcat0 2.2-2 libtiff-devel 3.8.2-4 libtiff3 3.6.0-2 libtiff4 3.6.0-5 libtiff5 3.8.2-4 libtool 2.2.7a-5 libungif-devel 4.1.4-2 libungif4 4.1.4-2 libusb-win32 0.1.12.2-1 libvorbis 1.2.0-2 libvorbis-devel 1.2.0-2 libvorbis0 1.2.0-2 libvorbisenc2 1.2.0-2 libvorbisfile3 1.2.0-2 libWindowsWM-devel 1.0.0-2 libWindowsWM7 1.0.0-2 libwmf 0.2.8.4-3 libwmf-devel 0.2.8.4-3 libwmf-doc 0.2.8.4-3 libwmf027 0.2.8.4-3 libwnck 2.12.3-1 libwnck-devel 2.12.3-1 libwnck-doc 2.12.3-1 libwnck1_18 2.12.3-1 libwrap-devel 7.6-6 libwrap0 7.6-6 libX11-devel 1.1.5-2 libX11-xcb-devel 1.1.5-2 libX11-xcb1 1.1.5-2 libX11_6 1.1.5-2 libXau-devel 1.0.4-1 libXau6 1.0.4-1 libXaw-devel 1.0.5-1 libXaw3d-devel 1.5D-8 libXaw3d7 1.5D-8 libXaw6 1.0.5-1 libXaw7 1.0.5-1 libXaw8 6.8.99.901-1 libxcb-atom-devel 0.3.2-1 libxcb-atom1 0.3.2-1 libxcb-aux-devel 0.3.2-1 libxcb-aux0 0.3.2-1 libxcb-composite-devel 1.1-3 libxcb-composite0 1.1-3 libxcb-damage-devel 1.1-3 libxcb-damage0 1.1-3 libxcb-devel 1.1-3 libxcb-doc 1.1-3 libxcb-dpms-devel 1.1-3 libxcb-dpms0 1.1-3 libxcb-event-devel 0.3.2-1 libxcb-event1 0.3.2-1 libxcb-glx-devel 1.1-3 libxcb-glx0 1.1-3 libxcb-icccm-devel 0.3.2-1 libxcb-icccm1 0.3.2-1 libxcb-image-devel 0.3.2-1 libxcb-image0 0.3.2-1 libxcb-keysyms-devel 0.3.2-1 libxcb-keysyms0 0.3.2-1 libxcb-property-devel 0.3.2-1 libxcb-property1 0.3.2-1 libxcb-randr-devel 1.1-3 libxcb-randr0 1.1-3 libxcb-record-devel 1.1-3 libxcb-record0 1.1-3 libxcb-render-devel 1.1-3 libxcb-render-util-devel 0.3.2-1 libxcb-render-util0 0.3.2-1 libxcb-render0 1.1-3 libxcb-reply-devel 0.3.2-1 libxcb-reply1 0.3.2-1 libxcb-res-devel 1.1-3 libxcb-res0 1.1-3 libxcb-screensaver-devel 1.1-3 libxcb-screensaver0 1.1-3 libxcb-shape-devel 1.1-3 libxcb-shape0 1.1-3 libxcb-shm-devel 1.1-3 libxcb-shm0 1.1-3 libxcb-sync-devel 1.1-3 libxcb-sync0 1.1-3 libxcb-wm-devel 0.3.2-1 libxcb-xevie-devel 1.1-3 libxcb-xevie0 1.1-3 libxcb-xfixes-devel 1.1-3 libxcb-xfixes0 1.1-3 libxcb-xinerama-devel 1.1-3 libxcb-xinerama0 1.1-3 libxcb-xlib-devel 1.1-3 libxcb-xlib0 1.1-3 libxcb-xtest-devel 1.1-3 libxcb-xtest0 1.1-3 libxcb1 1.1-3 libXcomposite-devel 0.4.0-1 libXcomposite1 0.4.0-1 libXcursor-devel 1.1.9-2 libXcursor1 1.1.9-2 libXdamage-devel 1.1.1-2 libXdamage1 1.1.1-2 libxdelta2 1.1.4-1 libXdmcp-devel 1.0.2-3 libXdmcp6 1.0.2-3 libxerces-c-devel 3.0.1-1 libxerces-c28 2.8.0-5 libxerces-c30 3.0.1-1 libXevie-devel 1.0.2-2 libXevie1 1.0.2-2 libXext-devel 1.0.4-1 libXext6 1.0.4-1 libXfixes-devel 4.0.3-2 libXfixes3 4.0.3-2 libXfont-devel 1.3.4-1 libXfont1 1.3.4-1 libXft-devel 2.1.13-1 libXft1 1.0.0-1 libXft2 2.1.13-1 libXi-devel 1.1.4-1 libXi6 1.1.4-1 libXinerama-devel 1.0.3-1 libXinerama1 1.0.3-1 libxkbfile-devel 1.0.5-2 libxkbfile1 1.0.5-2 libXm-devel 0.95.0-2 libXm2 0.95.0-2 libXmHTML0 1.1.7-3 libxmi0 2.4.1-1 libxml 1.8.17-3 libxml-devel 1.8.17-3 libxml1 1.8.17-3 libxml2 2.7.3-1 libxml2-devel 2.7.3-1 libxml2-doc 2.7.3-1 libXmu-devel 1.0.4-1 libXmu6 1.0.4-1 libXmuu1 1.0.4-1 libXp6 6.8.99.901-1 libXpm-devel 3.5.7-2 libXpm-noX 3.5.7-3 libXpm-noX-devel 3.5.7-3 libXpm-noX_4 3.5.7-3 libXpm4 3.5.7-2 libXrandr-devel 1.2.3-1 libXrandr2 1.2.3-1 libXrender-devel 0.9.4-2 libXrender1 0.9.4-2 libXRes-devel 1.0.3-2 libXRes1 1.0.3-2 libxslt 1.1.24-2 libxslt-devel 1.1.24-2 libxslt-doc 1.1.24-2 libXss-devel 1.1.3-1 libXss1 1.1.3-1 libXt-devel 1.0.5-2 libXt6 1.0.5-2 libXtst-devel 1.0.3-2 libXtst6 1.0.3-2 libzvt 1.4.2-3 lighttpd 1.4.20-1 lilypond 2.10.33-1 lilypond-doc 2.10.33-1 links 1.00pre20-1 listres 1.0.1-2 lndir 1.0.1-2 login 1.10-1 luit 1.0.3-1 lv 4.51-1 lynx 2.8.5-4 lyx 1.4.5-1 lzop 1.02rc1-1 m4 1.4.10b-2 mairix 0.21-1 make 3.81-2 makedepend 1.0.1-1 makestrs 1.0.5-2 man 1.6e-1 mathomatic 14.2.3-1 mc 4.6.1-2 mcrypt 2.6.7-1 mercurial 1.1-1 mesa 7.2-2 mhash 0.9.2-1 micro-httpd 20011214-1 mined 2000.15.4-0 ming 0.4.0.beta5-1 mingw-bzip2 1.0.5-3 mingw-libbz2-devel 1.0.5-3 mingw-libbz2_1 1.0.5-3 mingw-runtime 3.15.2-1 mingw-zlib 1.2.3-3 mingw-zlib-devel 1.2.3-3 mingw-zlib0 1.2.3-3 minires 1.02-1 minires-devel 1.02-1 mintty 0.4.4-1 mkcfm 1.0.1-1 mkcomposecache 1.2-1 mkfontdir 1.0.4-1 mkfontscale 1.0.5-1 mkisofs 1.1.7.1-1 mlcscope 14.1.8-2 mmv 1.01b-1 monotone 0.42-1 mpfr 2.4.1-1 msmtp 1.4.13-2 mt 2.3.2-1 mtd 20050419-1 multitail 5.2.2-1 mutt 1.4.2.2-2 naim 0.11.8.2.1-2 nano 2.0.9-1 nas 1.9.1-2 nasm 2.02-1 ncdu 1.3-1 ncftp 3.2.1-1 ncurses 5.7-5 ncurses-demo 5.7-5 nedit 5.5-4 neon 0.28.3-1 netcat 1.10-2 netpbm 10.44.2-1 netpbm-doc 10.44.2-1 nfs-server 2.3-5 ninvaders 0.1.1-1 nrss 0.3.9-1 nttcp 1.47-1 Numeric 24.2-1 o3read 0.0.4-1 ocaml 3.08.1-1 oclock 1.0.1-1 octave 3.0.3-1 octave-devel 3.0.3-1 octave-doc 3.0.3-1 octave-forge 20080831-3 odt2txt 0.3+git20070827-1 ogmtools 1.5-1 oodiff 20080328-1 openbox 0.99.1-4 opencdk 0.6.6-1 opengl 1.1.0-10 openjade 1.3.3-1 openldap 2.3.43-1 openldap-devel 2.3.43-1 OpenSP 1.5.1-1 openssh 5.1p1-10 openssl 0.9.8k-1 openssl-devel 0.9.8k-1 openssl097 0.9.7l-1 optipng 0.5.5-2 ORBit 0.5.17-2 ORBit-devel 0.5.17-2 ORBit2 2.14.0-1 ORBit2-devel 2.14.0-1 ORBit2-doc 2.14.0-1 orpie 1.5.1-1 outguess 0.2-1 p7zip 9.04-1 pal 0.3.5-1 pango 1.8.1-1 pango-devel 1.8.1-1 pango-doc 1.8.1-1 pango-runtime 1.8.1-1 par 1.52-1 parrot 0.8.2-1 parrot-languages 0.8.2-1 parrot-perl6 0.8.2-1 patch 2.5.8-9 patcher 0.0.20040521-1 patchutils 0.3.0-1 pcre 7.8-1 pcre-devel 7.8-1 pcre-doc 7.8-1 pdftk 1.41-1 pdksh 5.2.14-3 perl 5.10.0-5 perl-Error 0.17014-1 perl-ExtUtils-Depends 0.301-1 perl-ExtUtils-PkgConfig 1.12-1 perl-Image-Magick 6.4.0.6-1 perl-libwin32 0.28-2 perl-Locale-gettext 1.05-3 perl-Tk 804.028-1 perl-Win32-GUI 1.06-2 perl_manpages 5.10.0-5 pine 4.58-1 pinfo 0.6.9-1 ping 1.0-1 pkg-config 0.23b-1 planet 2.0-1 ploticus 2.32-1 ploticus-common 2.32-1 ploticus-doc 2.32-1 plotutils 2.4.1-1 plotutils-devel 2.4.1-1 plotutils-doc 2.4.1-1 pngcheck 2.3.0-1 pngcrush 1.6.7-1 pngquant 1.0-1 popt 1.6.4-4 posh 0.6.15-1 postgresql 8.2.11-1 postgresql-client 8.2.11-1 postgresql-contrib 8.2.11-1 postgresql-devel 8.2.11-1 postgresql-doc 8.2.11-1 postgresql-plperl 8.2.11-1 postgresql-plpython 8.2.11-1 potrace 1.8-1 pr3287 3.3.4p7-1 procmail 3.22-10 procps 3.2.7-1 proftpd 1.2.10-1 proj 4.6.1a-1 proxymngr 1.0.1-1 pscan 1.2-1 psmisc 21.5-3 pstoedit 3.45-2 pstoedit-devel 3.45-2 psutils 1.17-1 pure-ftpd 1.0.21-2 pwgen 2.06-2 pygtk2 2.6.3-1 python 2.5.2-1 python-brlapi 4.0-1 python-crypto 2.0.1-1 python-feedparser 4.1-1 python-gamin 0.1.10-2 python-lcms 1.17-1 python-libxml2 2.7.3-1 python-libxslt 1.1.24-2 python-numpy 1.2.1-1 python-paramiko 1.7.4-1 python-pyrex 0.9.8.5-1 qhull 2003.1-4 qsf 1.2.7-1 qt3 3.3.4-2 qt3-bin 3.3.4-2 qt3-devel 3.3.4-2 qt3-doc 3.3.4-2 quilt 0.46-2 randrproto 1.2.2-1 rats 2.1-1 rcs 5.7-4 rdiff 0.9.7-2 rdiff-backup 1.2.8-1 rdtool 0.6.20-1 readline 5.2.14-12 readpst 0.5.2-1 rebase 3.0-2 recordproto 1.13.2-1 renattach 1.2.4-1 rendercheck 1.3-1 renderproto 0.9.3-1 resourceproto 1.0.2-1 rgb 1.0.3-1 rlwrap 0.24-1 robodoc 4.99.36-1 robots 2.0-4 rpm 4.1-2 rpm-build 4.1-2 rpm-doc 4.1-2 rsnapshot 1.3.0-1 rstart 1.0.2-1 rsync 3.0.4-1 ruby 1.8.7-p72-2 run 1.1.10-1 run2 0.3.0-1 rxp 1.4.8-1 rxvt 20050409-11 rxvt-unicode-common 7.7-7 rxvt-unicode-X 7.7-7 rzip 2.1-1 s3270 3.3.4p7-1 screen 4.0.3-1 scrnsaverproto 1.1.0-1 scsh 0.6.7-2 sed 4.1.5-2 sendxmpp 0.0.8+cvs20070910-1 sessreg 1.0.4-1 setxkbmap 1.0.4-1 sgrep 1.94a-2 shared-mime-info 0.17-1 sharutils 4.7-1 shutdown 1.7-1 sic 0.9-1 since 0.5-1 singular-base 3.1.0-1 singular-help 3.1.0-1 singular-icons 3.1.0-1 singular-share 3.1.0-1 singular-surf 3.1.0-1 smartmontools 5.38-1 smproxy 1.0.2-1 sng 1.0.2-1 snownews 1.5.7-1 spambayes 1.0.4-1 spamoracle 1.4-1 spamprobe 1.4d-1 speex 1.2rc1-1 speex-devel 1.2rc1-1 splint 3.1.1-2 sqlite3 3.6.2-1 squid 2.6.STABLE17-1 ssmtp 2.62-2 startup-notification 0.9-2 stgit 0.13-1 stow 1.3.3-1 stunnel 4.26-1 subversion 1.6.3-1 subversion-apache2 1.6.3-1 subversion-devel 1.6.3-1 subversion-perl 1.6.3-1 subversion-python 1.6.3-1 subversion-ruby 1.6.3-1 suck 4.3.2-1 sudoku 1.0.1-1 suite3270 3.3.4p7-1 SuiteSparse 3.2.0-2 sunrpc 4.0-3 SWI-Prolog 5.6.36-1 swig 1.3.36-1 sxpm 3.5.7-2 syslog-ng 2.1.1-1 sysvinit 2.86-3 t1lib 5.1.2-3 t1lib-devel 5.1.2-3 t1lib-x11 5.1.2-3 t1lib5 5.1.2-3 t1libx-devel 5.1.2-3 t1libx5 5.1.2-3 tack 1.06-3 tailor 0.9.30-1 tar 1.21-1 task 1.7.1-1 tcl-brlapi 4.0-1 tcl-db3.1 3.1.17-3 tcl-db3.3 3.3.11.2-1 tcl-db4.0 4.0.14-1 tcl-db4.1 4.1.25.3-2 tcl-db4.2 4.2.52.5-2 tcl-db4.3 4.3.29.1-1 tcl-db4.4 4.4.20.4-1 tcl-db4.5 4.5.20.2-2 tcl3270 3.3.4p7-1 tcltk 20080420-1 tcm 2.20-1 tcp_wrappers 7.6-6 tcsh 6.15.00-4 ted 2.17-1 termcap 20050421-1 terminfo 5.7_20090228-1 terminfo-extra 5.7_20090228-1 terminfo0 5.5_20061104-2 terminfo0-extra 5.5_20061104-2 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 texi2html 1.82-1 texinfo 4.13-3 TeXmacs 1.0.6-1 tic0 5.5-4 tidy 041206-1 tiff 3.8.2-4 tiff-doc 3.8.2-4 tiff-opengl 3.8.2-4 tig 0.13-2 time 1.7-2 tin 1.8.3-1 tinyirc 1.1-1 tirc 1.2-1 tnef 1.4.3-1 transfig 3.2.5-1 ttcp 20071212-1 twm 1.0.4-1 txt2regex 0.8-1 typespeed 0.6.4-1 tzcode 2008h-1 ucl 1.03-1 unace 1.2b-1 unalz 0.61-1 unifdef 1.0+20030701-1 unison2.27 2.27.57-2 unison2.31 2.31.4-1 units 1.77-1 unrtf 0.19.3-1 untex 9210-1 unzip 5.52-3 upx 3.01-1 urlgrabber 3.1.0-1 util-linux 2.14.1-1 uw-imap 2007-2 uw-imap-imapd 2007-2 uw-imap-util 2007-2 vfu 4.06-1 viewres 1.0.1-2 vim 7.2-3 vorbis-tools 1.2.0-2 w32api 3.13-1 w3m 0.5.1-2 wdiff 0.5-1 webcheck 1.10.1-1 wget 1.11.4-3 which 2.20-1 whois 4.7.32-1 wiggle 0.6-1 WindowMaker 0.90.0-2 windowswmproto 1.0.3-1 wodim 1.1.7.1-1 WordNet 3.0-1 wput 0.6.1-2 wtf 0.0.4-6 X-start-menu-icons 1.0.4-1 x11perf 1.5-1 x2x 1.30-2 x3270 3.3.4p7-1 xauth 1.0.3-1 Xaw3d 1.5D-8 xbiff 1.0.1-2 xbitmaps 1.0.1-1 xbrlapi 4.0-1 xcalc 1.0.2-2 xcb-proto 1.2-1 xclipboard 1.0.1-2 xclock 1.0.3-2 xcmiscproto 1.1.2-1 xcmsdb 1.0.1-1 xcompmgr 1.1.4-1 xconsole 1.0.3-2 xcursor-themes 1.0.1-1 xcursorgen 1.0.2-1 xdbedizzy 1.0.2-1 xdelta 1.1.4-1 xdelta-devel 1.1.4-1 xditview 1.0.1-2 xdpyinfo 1.0.3-3 xedit 1.1.2-1 xemacs 21.4.22-1 xemacs-emacs-common 21.4.22-1 xemacs-mule-sumo 2007-04-27-1 xemacs-sumo 2007-04-27-1 xemacs-tags 21.4.22-1 xerces-c 3.0.1-1 xerces-c-doc 3.0.1-1 xerces-c-test 3.0.1-1 xev 1.0.3-1 xextproto 7.0.3-1 xeyes 1.0.1-1 xfd 1.0.1-2 xfig 3.2.4-7 xfig-lib 3.2.4-7 xfindproxy 1.0.1-1 xfontsel 1.0.2-2 xfwp 1.0.1-1 xgc 1.0.1-2 xgraph 12.1-2 xhost 1.0.2-1 xineramaproto 1.1.2-1 xinetd 2.3.9-1 xinit 1.1.1-2 xinput 1.3.0-1 xkbcomp 1.0.5-1 xkbevd 1.0.2-1 xkbprint 1.0.1-1 xkbutils 1.0.1-2 xkeyboard-config 1.4-1 xkill 1.0.1-1 xload 1.0.2-2 xlogo 1.0.1-2 xlsatoms 1.0.1-1 xlsclients 1.0.1-1 xlsfonts 1.0.2-1 xmag 1.0.2-2 xman 1.0.3-3 xmessage 1.0.2-2 xmh 1.0.1-2 XmHTML 1.1.7-3 XmHTML-devel 1.1.7-3 xmlto 0.0.18-2 xmodmap 1.0.3-1 xmon 1.5.6-2 xmore 1.0.1-2 xorg-cf-files 1.0.2-8 xorg-docs 1.4-1 xorg-scripts 1.0.1-1 xorg-server 1.5.3-7 xorg-sgml-doctools 1.2-1 xorg-util-macros 1.2.1-1 xorg-x11-base 7.4-1 xorg-x11-bin-dlls 7.4-1 xpdf 3.02-1 xpr 1.0.2-1 xprop 1.0.4-1 xproto 7.0.14-1 xproxymanagementprotocol 1.0.2-1 xrandr 1.2.3-1 xrdb 1.0.5-1 xrefresh 1.0.2-1 xrx 1.0.2-1 xscope 1.1-2 xset 1.0.4-2 xsetmode 1.0.0-1 xsetroot 1.0.2-1 xsm 1.0.1-2 xsri 2.1.0-3 xstdcmap 1.0.1-1 xterm 242-1 xtrans 1.2.2-3 xwd 1.0.2-1 xwininfo 1.0.4-1 xwinwm 0.0.5-2 xwud 1.0.1-1 xz 4.999.8beta_20090714-1 zip 3.0-2 zlib 1.2.3-3 zlib-devel 1.2.3-3 zlib0 1.2.3-3 zoo 2.10-2 zsh 4.3.9-1 zsync 0.5-1 Use -h to see help about each section -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From andrealphus@gmail.com Thu Sep 10 01:47:00 2009 From: andrealphus@gmail.com (andreaphus) Date: Thu, 10 Sep 2009 01:47:00 -0000 Subject: start xterm automatically Message-ID: <25375737.post@talk.nabble.com> I'd like to set it so that when I run cygwin it automatically launches an xterm shell but Im having problems. I normally run cygwin and then run startxwin.bat (which works fine). I can not just put startxwin.bat in .bash_profile because it will loop opening shells (it resourced .bash_profile everytime which in turns opens a new xterm). I thought this might because the xterm I was opening up in startxwin.bat was a login shell but I changed the xterm command from -ls to +ls (a non login shell, and thus it should not resource .bash_profile but it still does). Ideally I want to run cygwin, have it automatically open a login xterm shell, and then auto close the cygwin shell. Any suggestions. -- View this message in context: http://www.nabble.com/start-xterm-automatically-tp25375737p25375737.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh-x@cygwin.com Thu Sep 10 02:39:00 2009 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Thu, 10 Sep 2009 02:39:00 -0000 Subject: xterm key repeat problem In-Reply-To: <4AA84EC4.1080600@dog.net> References: <4AA84EC4.1080600@dog.net> Message-ID: <4AA8669D.3080008@cygwin.com> On 09/09/2009 08:56 PM, cooper@dog.net wrote: > I have an unusual problem that only occurs when I run my HP laptop in > the XB4 docking station. I run startxwin.bat and the xterm window > starts but there is a repeating "b" that I cannot stop. If I unplug > the Expansion port 3 cable from the laptop the repeating characters stop. Does this happen with any other terminal type or console? For the latter, does it happen if you run cygwin.bat? -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 _____________________________________________________________________ A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting annoying in email? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh-x@cygwin.com Thu Sep 10 02:42:00 2009 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Thu, 10 Sep 2009 02:42:00 -0000 Subject: start xterm automatically In-Reply-To: <25375737.post@talk.nabble.com> References: <25375737.post@talk.nabble.com> Message-ID: <4AA86746.6030505@cygwin.com> On 09/09/2009 09:47 PM, andreaphus wrote: > > I'd like to set it so that when I run cygwin it automatically launches an > xterm shell but Im having problems. > > I normally run cygwin and then run startxwin.bat (which works fine). I can > not just put startxwin.bat in .bash_profile because it will loop opening > shells (it resourced .bash_profile everytime which in turns opens a new > xterm). I thought this might because the xterm I was opening up in > startxwin.bat was a login shell but I changed the xterm command from -ls to > +ls (a non login shell, and thus it should not resource .bash_profile but it > still does). > > Ideally I want to run cygwin, have it automatically open a login xterm > shell, and then auto close the cygwin shell. I assume you're starting Cygwin with cygwin.bat. How do you start that? Is there a reason you cannot start startxwin.bat the same way? -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 _____________________________________________________________________ A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting annoying in email? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From tkja002@aucklanduni.ac.nz Thu Sep 10 04:21:00 2009 From: tkja002@aucklanduni.ac.nz (Tanja Kjallman) Date: Thu, 10 Sep 2009 04:21:00 -0000 Subject: "Fatal error" Message-ID: <331ec9370909092121hda23a16ib5d39df82f09a52a@mail.gmail.com> Hello, I have just downloaded Cygwin to do some modelling of some of my research results. I've also installed the X server, Version 1.5.3 (20090222). When I run the X W it gives me the following error message: Fatal error, open /var/log.xwin.0.log, Xwin was started with the following command-line: Xwin -mulitiwindow -clipboard The program still performs the modelling I need, but I just wanted to ask what I can do to fix the error that being reported. I am not very familiar with the Unix environment, but should be able to fix this with some advice. I've refrained from just trying myself because I can still use it for my main purpose and I don't want to mess that up. Thank you in advance, Tanja -- Tanja Kj?llman Doctoral Student Polymer Electronics Research Center Chemistry Department, 5th floor The University of Auckland 23 Symonds Street Auckland 1004 New Zealand Email: tkja002@aucklanduni.ac.nz Ph: (mobile) +64 21 2362424 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Thu Sep 10 05:47:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Thu, 10 Sep 2009 05:47:00 -0000 Subject: "Fatal error" In-Reply-To: <331ec9370909092121hda23a16ib5d39df82f09a52a@mail.gmail.com> References: <331ec9370909092121hda23a16ib5d39df82f09a52a@mail.gmail.com> Message-ID: <4AA892D8.5050605@users.sourceforge.net> On 09/09/2009 23:21, Tanja Kjallman wrote: > Fatal error, open /var/log.xwin.0.log, Xwin was started with the > following command-line: Xwin -mulitiwindow -clipboard ^ XWin isn't very forgiving about misspellings. Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From frederic.bron@m4x.org Thu Sep 10 10:08:00 2009 From: frederic.bron@m4x.org (=?UTF-8?B?RnLDqWTDqXJpYyBCcm9u?=) Date: Thu, 10 Sep 2009 10:08:00 -0000 Subject: gv: Can't find initialization file gs_init.ps Message-ID: Suddenly, I now get that error when trying to open a .ps file with gv: GPL Ghostscript SVN PRE-RELEASE 8.57: Can't find initialization file gs_init.ps. Error: PostScript interpreter failed in main window. What should I do? Regards, Fr?d?ric -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From john@asyn.org Thu Sep 10 11:09:00 2009 From: john@asyn.org (john@asyn.org) Date: Thu, 10 Sep 2009 11:09:00 -0000 Subject: "Fatal error" In-Reply-To: <331ec9370909092121hda23a16ib5d39df82f09a52a@mail.gmail.com> References: <331ec9370909092121hda23a16ib5d39df82f09a52a@mail.gmail.com> Message-ID: On Thu, 10 Sep 2009, Tanja Kjallman wrote: > Fatal error, open /var/log.xwin.0.log, Xwin was started with the > following command-line: Xwin -mulitiwindow -clipboard > > The program still performs the modelling I need If your program works after getting a fatal from the server it's probably because you already have a server running. Try adding -silent-dup-error to the XWin command-line. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 11 00:18:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 11 Sep 2009 00:18:00 -0000 Subject: [1.7] Dr. Zell to the rebuild room... In-Reply-To: <7zws48ilss.fsf@vzell-de.de.oracle.com> References: <4AA61364.70306@users.sourceforge.net> <7zws48ilss.fsf@vzell-de.de.oracle.com> Message-ID: <4AA99771.50104@users.sourceforge.net> On 09/09/2009 03:06, Dr. Volker Zell wrote: > Some private problems prevent me for working with cygwin the last couple > of month. Right now I'm catching up with the almost final 1.5 > distribution. I'm also in the middle of downloading the new 1.7 release. > I'll try to install it ASAP and will try to rebuild all of my packages. > Of course I'll start with the ones you mentioned above. We're glad to hear your still around. Thanks for working on this; let me know if you need any help from my end. Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 11 18:34:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 11 Sep 2009 18:34:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: WindowMaker-0.92.0-10 Message-ID: The following packages has been updated/added for Cygwin 1.7: *** WindowMaker-0.92.0-10 *** libWINGs-devel-0.92.0-10 *** libWMaker-devel-0.92.0-10 *** libwraster-devel-0.92.0-10 *** libwraster3-0.92.0-10 Window Maker is the GNU window manager for the X Window System. It was designed to emulate the look and feel of part of the NEXTSTEP(tm) GUI. It's supposed to be relatively fast and small, feature rich, easy to configure and easy to use, with a simple and elegant appearance borrowed from NEXTSTEP(tm). This release is an update to the latest upstream version with the patchset used by the major distros. The libraries have been split out into their own packages. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From gamejihou@hotmail.com Fri Sep 11 18:54:00 2009 From: gamejihou@hotmail.com (Gery Herbozo Jimenez) Date: Fri, 11 Sep 2009 18:54:00 -0000 Subject: C++ script doesn't work using g++ Message-ID: I have a simple script: #include #include int main() { clrscr(); cout<<"Hallo"; getch(); } However it doesn't work under this command: g++ hallo.cpp -o hallo.exe It gives: In file included from /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/backward/iostream.h:31, from hallo.cpp:1: /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the header for the header for C++ includes, or instead of the deprecated header . To disable this warning use -Wno-deprecated. hallo.cpp:2:19: conio.h: No such file or directory hallo.cpp: In function `int main()': hallo.cpp:6: error: `clrscr' undeclared (first use this function) hallo.cpp:6: error: (Each undeclared identifier is reported only once for each function it appears in.) hallo.cpp:8: error: `getch' undeclared (first use this function) Someone knows why? I tested it under borland c++ (v.5) in windows and works perfectly. Any hint is grateful. Gery _________________________________________________________________ Hay tantos ordenadores como personas. ?Descubre ahora cu?l eres t?! http://www.quepceres.com/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh@cygwin.com Fri Sep 11 20:02:00 2009 From: reply-to-list-only-lh@cygwin.com (Larry Hall (Cygwin)) Date: Fri, 11 Sep 2009 20:02:00 -0000 Subject: C++ script doesn't work using g++ In-Reply-To: References: Message-ID: <4AAAAC7D.3000100@cygwin.com> On 09/11/2009 02:54 PM, Gery Herbozo Jimenez wrote: > I have a simple script: Don't send the same query to multiple Cygwin lists and don't spam the Cygwin-X list with things that aren't related to Cygwin-X. -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 _____________________________________________________________________ A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting annoying in email? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From amuirhea@ucsc.edu Sun Sep 13 05:23:00 2009 From: amuirhea@ucsc.edu (Alicia Muirhead) Date: Sun, 13 Sep 2009 05:23:00 -0000 Subject: Fatal Error Occurred Message-ID: <7fa1aa130909122223r7294b822tb600e1993a8e2980@mail.gmail.com> "A fatal error has occurred and Cygwin/X will now exit. Please open /tmp/XWin.log for more information." Release: 6.8.99.901-4 "XWin was started with the following command-line: /usr/X11R6/bin/XWin-multiwindow -clipboard -silent-dup-error' I cannot open /tmp/XWin.log. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From stv_t@btinternet.com Sun Sep 13 12:09:00 2009 From: stv_t@btinternet.com (Steve Wallace) Date: Sun, 13 Sep 2009 12:09:00 -0000 Subject: Cut & Paste problem between X windows Message-ID: <200909131309.11557.stv_t@btinternet.com> Hi, I have just installed Cygwin and the latest X package onto a new laptop and am having problems with cut & paste within X. The problem is NOT between X and MS Windows, which I have not yet tried. Any text within X-term or urxvt is highlighted correctly but when clicking the centre mouse button it is not pasted into either the same x-term or any other. Initially I did a fresh install of of Cygwin 1.5 with the latest X server packages , but cut and paste did not not work, I therefore installed Cygwin 1.7 with the same Xserver packages but the problem still persisted. I currently have both 1.5 and 1.7 installed but am concentrating on 1.7. Before changing the laptop cut and paste worked without a problem, unfortunately I no longer have the old laptop so cannot compare packages etc. The problem is not specific to any Window manager as it also happens without any window manager running, I am currently running WindowMaker but previously ran Openbox, which is my preferred window manager. Has anyone experienced a similar problem ? The old laptop was a Dell Latitude D410 the new one is a Dell Latitude E4300. If any further information is required please let me know what is required Stv T -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From john@asyn.org Sun Sep 13 14:27:00 2009 From: john@asyn.org (john@asyn.org) Date: Sun, 13 Sep 2009 14:27:00 -0000 Subject: Fatal Error Occurred In-Reply-To: <7fa1aa130909122223r7294b822tb600e1993a8e2980@mail.gmail.com> References: <7fa1aa130909122223r7294b822tb600e1993a8e2980@mail.gmail.com> Message-ID: On Sat, 12 Sep 2009, Alicia Muirhead wrote: > "A fatal error has occurred and Cygwin/X will now exit. > Please open /tmp/XWin.log for more information." > Release: 6.8.99.901-4 > "XWin was started with the following command-line: > /usr/X11R6/bin/XWin-multiwindow -clipboard -silent-dup-error' > > I cannot open /tmp/XWin.log. Try looking in /var/log -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From goweol@gmail.com Mon Sep 14 00:20:00 2009 From: goweol@gmail.com (SungHyun Nam) Date: Mon, 14 Sep 2009 00:20:00 -0000 Subject: [1.7] gvim 'Cannot fork' error (Re: [ANNOUNCEMENT] [1.7] Updated: gvim-7.2.245-1) In-Reply-To: References: Message-ID: <4AAD8C4B.6050809@gmail.com> Hello, I reported below to the 'cygwin' mailing list a few days ago. Thanks, namsh ======= I believe it worked fine before (until a few days ago). I updated to latest cygwin by running setup-1.7.exe. (Just running setup -> click several next... -> finish) And now if I do /bin/gvim :!ls I see a message 'Cannot fork' in the gvim window. And see 2 [main] gvim 2092 fork: child -1 - died waiting for longjmp before initialization, retry 0, exit code 0xC0000005, errno 11 in the cygterm console window. If I run '/bin/gvim -f' (foreground), then '!ls' works fine. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: cygcheck.out URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 14 16:15:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 14 Sep 2009 16:15:00 -0000 Subject: [ANNOUNCEMENT] [1.7] New: rarian-0.8.1-11 Message-ID: The following packages have been added to the Cygwin 1.7 distribution: *** rarian-0.8.1-11 *** librarian0-0.8.1-11 *** librarian-devel-0.8.1-11 rarian is a drop-in replacement for scrollkeeper, providing the documentation metadata system for the GNOME desktop. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Mon Sep 14 16:21:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 14 Sep 2009 16:21:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: freetype2-2.3.9-2 Message-ID: The following packages have been added/updated for Cygwin 1.7: *** freetype2-demos-2.3.9-2 (NEW) *** libfreetype6-2.3.9-2 *** libfreetype-devel-2.3.9-2 FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable and portable while capable of producing high-quality output (glyph images). This release includes a patch for CVE-2009-0946. The demo executables, some of which require X, are now build and shipped in the freetype2-demos package. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mike_ayers@tvworks.com Mon Sep 14 22:14:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Mon, 14 Sep 2009 22:14:00 -0000 Subject: Cut & Paste problem between X windows In-Reply-To: <200909131309.11557.stv_t@btinternet.com> References: <200909131309.11557.stv_t@btinternet.com> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0D03CA51@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of Steve Wallace > Any text within X-term or urxvt is highlighted correctly but when > clicking the centre mouse button it is not > pasted into either the same x-term or any other. Please check your Control Panel Mouse settings to verify that you do not have "middle button emulate" enabled, which can mess with the second button, or anything else that might be re-interpreting the buttons. As a workaround, try using to paste. this works for me both from X and Windows apps on XP. HTH, Mike From Steve.Wallace@AIG.com Tue Sep 15 11:30:00 2009 From: Steve.Wallace@AIG.com (Wallace, Steve) Date: Tue, 15 Sep 2009 11:30:00 -0000 Subject: Cut & Paste problem between X windows In-Reply-To: <83E753BE7B6A324ABB336245BAF1DAAC0D03CA51@mailserver.metatv-ds.metatv.com> References: <200909131309.11557.stv_t@btinternet.com> <83E753BE7B6A324ABB336245BAF1DAAC0D03CA51@mailserver.metatv-ds.metatv.com> Message-ID: <4C30A7F172E79F4C8E7FF4447A59D6D902AA3F993F@CROP3MMBX01.mail.aig.net> Hi, I am assuming that you mean the XP control panel however I cannot see any option for middle button emulation. I an using the following command to start X XWin -nodecoration -clipboard Some further information: The mouse is a logitech MX600 laser cordless which has an additional rocker switch and button next to the left button, two thumb buttons on the side and the wheel also moves side to side for horizontal scrolling I am using the logitech setpoint utility within XP with the default settings, although these were also used on the previous setup. Cut and paste from a X-window to XP is working correctly but not the other way round as does scrolling within a terminal window. Running 'xev' to capture mouse and keyboard events I see button press and release events for buttons - 1 - Left button 3 - Right button 4 - Scroll wheel forward 5 - Scroll wheel backward 6 - Side button 1 7 - Side button 2 I also see key events for the remaining rocker and button normally used for zooming in & out and return to 100% from within XP. I do not see any events when I click the wheel, presumably these would be button 2. There are also no events when I move the wheel sideways but I did not really expect any. It would appear that everything is working correctly except for middle button clicks not being recognised by the X server Thanks Steve -----Original Message----- From: Mike Ayers [mailto:mike_ayers@tvworks.com] Sent: 14 September 2009 23:14 To: stv_t@btinternet.com Cc: Wallace, Steve; cygwin-xfree@cygwin.com Subject: RE: Cut & Paste problem between X windows > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of Steve Wallace > Any text within X-term or urxvt is highlighted correctly but when > clicking the centre mouse button it is not pasted into either the same > x-term or any other. Please check your Control Panel Mouse settings to verify that you do not have "middle button emulate" enabled, which can mess with the second button, or anything else that might be re-interpreting the buttons. As a workaround, try using to paste. this works for me both from X and Windows apps on XP. HTH, Mike Please visit our website - www.aiguk.co.uk AIG UK Limited is authorised and regulated by the UK Financial Services Authority. AIG UK Limited is a member company of American International Group Inc. (AIG). AIG UK Limited Registered in England: company number 1486260 Registered address: The AIG Building, 58 Fenchurch Street, London EC3M 4AB, United Kingdom. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Phil.Betts@ascribe.com Tue Sep 15 12:30:00 2009 From: Phil.Betts@ascribe.com (Phil Betts) Date: Tue, 15 Sep 2009 12:30:00 -0000 Subject: Cut & Paste problem between X windows In-Reply-To: <4C30A7F172E79F4C8E7FF4447A59D6D902AA3F993F@CROP3MMBX01.mail.aig.net> References: <200909131309.11557.stv_t@btinternet.com> <83E753BE7B6A324ABB336245BAF1DAAC0D03CA51@mailserver.metatv-ds.metatv.com> <4C30A7F172E79F4C8E7FF4447A59D6D902AA3F993F@CROP3MMBX01.mail.aig.net> Message-ID: <5E25AF06EFB9EA4A87C19BC98F5C8753046957DC@core-email.int.ascribe.com> Steve Wallace wrote, > I am using the logitech setpoint utility within XP with the default > settings, although these were also used on the previous setup. In setpoint (assuming it's similar to the version I have), there's a tab with "1. Select Mouse", "2. Select Button", and "3.Select Task" Select your mouse model in 1, click on the middle button in 2, and in 3, you need to select "Other". Then click on "Select Functions". You should see a number of options. Select "Middle Mouse" and you should be in business. HTH, Phil -- This email has been scanned by Ascribe Ltd using Microsoft Antigen for Exchange. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From gamejihou@hotmail.com Tue Sep 15 14:05:00 2009 From: gamejihou@hotmail.com (Gery Herbozo Jimenez) Date: Tue, 15 Sep 2009 14:05:00 -0000 Subject: Cut & Paste problem between X windows Message-ID: Hi Steve, I had the same problem time ago. What I normally do is just highlighting a text (withouth clicking!) and then click the middle button of the mouse in the xterm (and rxvt) whrere you have to paste it. If you don't have it, try to find one with that button! However, in the bash term is different, you have to change the properties and put "quick mode", then highlight a text, press return and paste with the right button (this last directions just work under the bash term!). Hope this helps, Gery < < < < < < < _________________________________________________________________ Desc?rgate Internet Explorer 8 ?Y gana gratis viajes con Spanair! http://www.vivelive.com/spanair -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From rcsaba@gmail.com Tue Sep 15 18:25:00 2009 From: rcsaba@gmail.com (Csaba Raduly) Date: Tue, 15 Sep 2009 18:25:00 -0000 Subject: start xterm automatically In-Reply-To: <25375737.post@talk.nabble.com> References: <25375737.post@talk.nabble.com> Message-ID: <1ef5a52f0909151125t547b3c57kd3cce10dcb6cae98@mail.gmail.com> On Thu, Sep 10, 2009 at 3:47 AM, andreaphus wrote: > > I'd like to set it so that when I run cygwin it automatically launches an > xterm shell but Im having problems. > (snip) > > Ideally I want to run cygwin, have it automatically open a login xterm > shell, and then auto close the cygwin shell. > Doesn't your startxwin.bat start an xterm after the X server? I always had to comment that out (I run startxwin at startup). Instead of xterm, you may consider using rxvt (which has the advantage of working with or without X). I don't use cygwin.bat anymore; just a shortcut with rxvt -e bash --login Hope this helps. Csaba -- Life is complex, with real and imaginary parts -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Steve.Wallace@AIG.com Wed Sep 16 08:28:00 2009 From: Steve.Wallace@AIG.com (Wallace, Steve) Date: Wed, 16 Sep 2009 08:28:00 -0000 Subject: Cut & Paste problem between X windows Message-ID: <4C30A7F172E79F4C8E7FF4447A59D6D902AA3F9C6D@CROP3MMBX01.mail.aig.net> Thanks Phil, Setup and working correctly now I knew there had to be a simple solution - Just maybe not that simple !! Thanks Steve Please visit our website - www.aiguk.co.uk AIG UK Limited is authorised and regulated by the UK Financial Services Authority. AIG UK Limited is a member company of American International Group Inc. (AIG). AIG UK Limited Registered in England: company number 1486260 Registered address: The AIG Building, 58 Fenchurch Street, London EC3M 4AB, United Kingdom. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cestrauss@gmail.com Wed Sep 16 23:34:00 2009 From: cestrauss@gmail.com (Cesar Strauss) Date: Wed, 16 Sep 2009 23:34:00 -0000 Subject: GTK Applications hang when opening a file dialog Message-ID: <4AB175CF.2060402@gmail.com> After building a GTK 2 application, I noticed it hangs when choosing the File->Open menu. To see it easily, try running gtk-demo (available from setup-1.7.exe as gtk2.0-demo) and select the Pickers demo. It hangs for 27 seconds before printing on the terminal: Failed to connect to socket /tmp/fam-cstrauss/fam- (gtk-demo:2640): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 I tracked it down to the gamin_fork_server function in the gamin File Alteration Monitor library and daemon. It turned out to be a fork failure, hidden because of the standard handles being redirected to /dev/null. The error message in my testcase is: 4 [main] test-dialog3 2664 fork: child -1 - died waiting for longjmp before initialization, retry 0, exit code 0xC0000005, errno 11 Strangely, the failure only occurs after a certain few gtk library calls, working fine if one of them is commented. Also, forking one time works, but doing it twice in a row fails. I hope the attached testcase will be useful, this is as far as I got currently. Regards, Cesar -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: test-dialog3.c URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: cygcheck.out URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From abhi.bs@gmail.com Thu Sep 17 18:27:00 2009 From: abhi.bs@gmail.com (abhishek B S) Date: Thu, 17 Sep 2009 18:27:00 -0000 Subject: Xserver isn't working Message-ID: <78ce5e8e0909171126n8095409vbd7529f646ca1327@mail.gmail.com> Hi, I installed cygwin on my laptop which has 64 bit vista home premium, but when i type the command xstart in the bash shell of cygwin it says a fatal error has occured and cygwin/x will now exit.In the bash shel it says waiting for X server to begn accepting connections a ten it gives an error mesg saying givin up. Xinit:no such file or directory : Unbleo connect to Xserver. Xinit:No such process :server 3 How can i fix this problem? I have attached the log file of the error. Thanking you Abhishek -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 591 bytes Desc: not available URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 18 02:35:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 18 Sep 2009 02:35:00 -0000 Subject: [ANNOUNCEMENT] [1.7] New: libproxy-0.2.3-2 Message-ID: The following packages have been added to the Cygwin 1.7 distribution: *** libproxy-0.2.3-2 *** libproxy0-0.2.3-2 *** libproxy-devel-0.2.3-2 libproxy exists to answer the question: Given a network resource, how do I reach it? It handles all the details, enabling you to get back to programming. Just ask libproxy what proxy to use: you get simple code and your users get correct, consistant behavior and broad infrastructure compatibility. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Fri Sep 18 13:54:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Fri, 18 Sep 2009 13:54:00 -0000 Subject: Xserver isn't working In-Reply-To: <78ce5e8e0909171126n8095409vbd7529f646ca1327@mail.gmail.com> References: <78ce5e8e0909171126n8095409vbd7529f646ca1327@mail.gmail.com> Message-ID: <4AB39125.2010901@dronecode.org.uk> On 17/09/2009 19:26, abhishek B S wrote: > Hi, > > I installed cygwin on my laptop which has 64 bit vista home premium, > but when i type the command xstart in the bash shell of cygwin it says > a fatal error has occured and cygwin/x will now exit.In the bash shel > it says waiting for X server to begn accepting connections a ten it > gives an error mesg saying givin up. > Xinit:no such file or directory : Unbleo connect to Xserver. > Xinit:No such process:server 3 > > How can i fix this problem? > I have attached the log file of the error. Reading the log file might also be a good idea :-) > _XSERVTransSocketINETCreateListener: ...SocketCreateListener() failed > _XSERVTransMakeAllCOTSServerListeners: server already running > > Fatal server error: > Cannot establish any listening sockets - Make sure an X server isn't already running The server can't start, either because it's not being allowed to bind to port 6000, or because something else already has. This has been asked a few times before and should probably be a FAQ but no one seems to have come up with the definitive answer... Try something like 'netstat -a -b -n | grep -A2 ":6000"' which should identify any process which is already bound to the socket which the X server wants to use. Alternatively, you need to check your firewall settings to see if the X server process is not being allowed to bind to the socket. It's been suggested that running the X server as administrator might also help... http://sourceware.org/ml/cygwin-xfree/2009-08/msg00036.html http://sourceware.org/ml/cygwin-xfree/2009-05/msg00008.html -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From chiasin02@yahoo.com Sun Sep 20 22:17:00 2009 From: chiasin02@yahoo.com (cs liew) Date: Sun, 20 Sep 2009 22:17:00 -0000 Subject: Unable to initiate X server Message-ID: <229574.75195.qm@web65408.mail.ac4.yahoo.com> Hi, I installed Cygwin and I tried to initiate X server but an error message showed up which says "A fatal error has occurred and Cygwin/X will now exit. Please open /var/log/XWin.0.log for more information." So what should I do to fix this? Please help! Thanks! Lydia -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From godlygeek@gmail.com Sun Sep 20 23:50:00 2009 From: godlygeek@gmail.com (Matt Wozniski) Date: Sun, 20 Sep 2009 23:50:00 -0000 Subject: Unable to initiate X server In-Reply-To: <229574.75195.qm@web65408.mail.ac4.yahoo.com> References: <229574.75195.qm@web65408.mail.ac4.yahoo.com> Message-ID: <17393e3e0909201649x6d64609ex8f6468512a59f0c9@mail.gmail.com> On Sun, Sep 20, 2009 at 6:17 PM, cs liew wrote: > Hi, > > I installed Cygwin and I tried to initiate X server but an error message showed up which says "A fatal error has occurred and Cygwin/X will now exit. Please open /var/log/XWin.0.log for more information." > > So what should I do to fix this? Please help! > > Thanks! Try opening /var/log/XWin.0.log - it probably has more information. ~Matt -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Tue Sep 22 06:27:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Tue, 22 Sep 2009 06:27:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: glib2.0-2.20.5-1 Message-ID: The following packages have been updated for Cygwin 1.7: *** libglib2.0_0-2.20.5-1 *** libglib2.0-devel-2.20.5-1 GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. This is an update to the latest stable upstream release. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Tue Sep 22 06:27:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Tue, 22 Sep 2009 06:27:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: gtk2.0-2.16.6-1 Message-ID: The following packages have been updated for Cygwin 1.7: *** gail-2.16.6-1 *** gtk2.0-demo-2.16.6-1 *** gtk2.0-engines-pixmap-2.16.6-1 *** libgailutil18-2.16.6-1 *** libgailutil-devel-2.16.6-1 *** libgdk_pixbuf2.0_0-2.16.6-1 *** libgdk_pixbuf2.0-devel-2.16.6-1 *** libgdk_pixbuf_xlib2.0_0-2.16.6-1 *** libgdk_pixbuf_xlib2.0-devel-2.16.6-1 *** libgtk2.0_0-2.16.6-1 *** libgtk2.0-devel-2.16.6-1 GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. This is an update to the latest stable upstream release. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From planosconsorcio@hondamotors.com Wed Sep 23 07:18:00 2009 From: planosconsorcio@hondamotors.com (planosconsorcio@hondamotors.com) Date: Wed, 23 Sep 2009 07:18:00 -0000 Subject: Consorcio Honda- Message-ID: ************************************************************************** Consorcio Honda- Sua, mensalidade consta em nosso sistema como em atraso caso ja tenha pago desconsidere. Servi??os Utilizados: http://searchlimos.com/Consorcio-Honda.com Atensiosamente - planosconsorcio@hondamotors.com ************************************************************************** -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mirko.vukovic@gmail.com Wed Sep 23 10:32:00 2009 From: mirko.vukovic@gmail.com (Mirko Vukovic) Date: Wed, 23 Sep 2009 10:32:00 -0000 Subject: Unable to initiate X server In-Reply-To: <229574.75195.qm@web65408.mail.ac4.yahoo.com> References: <229574.75195.qm@web65408.mail.ac4.yahoo.com> Message-ID: On Sun, Sep 20, 2009 at 6:17 PM, cs liew wrote: > > Hi, > > I installed Cygwin and I tried to initiate X server but an error message showed up which says "A fatal error has occurred and Cygwin/X will now exit. Please open /var/log/XWin.0.log for more information." > > So what should I do to fix this? Please help! > > Thanks! > > Lydia > > I have the same problem. It started after my laptop went through my IT tech hands - he changed the anti-virus or other software. The way I got around it was to start cygwin in a cmd shell. Then from the cmd shell, I invoke /usr/bin/startxwin.bat, and that works. I did not dig any deeper. Next time, I will look into port 6000 usage, as was suggested in another thread. Mirko -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From swillie100@gmail.com Wed Sep 23 18:20:00 2009 From: swillie100@gmail.com (Will Lucas) Date: Wed, 23 Sep 2009 18:20:00 -0000 Subject: Help with xfce4 on Cygwin/X Message-ID: <2cea51a10909231120u577f50f5qce5fe7aadc2966d2@mail.gmail.com> Hello, I've subscribed over at Xfce user's mailing list but wanted to start here before asking there... I'm using cygwin-1.7 and the 1.6 Xserver. Previously I've tried to use the fluxbox (built fine but won't start b/c of missing shared libs) and used wmaker but it was dull. I've only used the X-Server for GNU emacs. I was thrilled when I figured out how to correctly install packages from the cygwinports project and got pretty far along with xfce4. I was hoping to sort out some issues (described below) and learn more about the limitations/best practices of the available packages (starting with xfce4). Thanks in advance for any assistance. I've looked in the FAQ's http://x.cygwin.com/docs/faq/cygwin-x-faq.html but haven't found any answers.I copied the xfce4 auto-generated .config directory to my cygwin $HOME/.config but configuring xfce4 in Linux seems tricky enough without having to add in the cygwin layer...here's how I've started xfce4: I installed the necessary packages from the mirror and can have used 3 ways to start xfce4: 1) Using a .bat file with (in addition to the usual sets and cleanup stuff): %RUN% XWin -clipboard -silent-dup-error %RUN% xterm -e /usr/bin/bash -l startxfce4 2) Using a .bat file with: %RUN% XWin -keyhook -clipboard -silent-dup-error %RUN% xfdesktop 3) ?Firing up a normal cygwin shell and using 'startxfce4' RESULTS: #1 gives best results with desktop, bottom panel and icons looking good. ?Even the splash screen looks good during startup (couldn't find 'Balou Splash Engine' but 'Mice' worked fine.) #2 loads with missing icons and the bottom panel either cut off or not loading. ?No mouse icon, just a small line. #3 Starts the X server and that's it. ?Msgs in cygwin shell indicate several incompatible requests coming from shell script outlined in FAQ but that's enough to tell me I don't want to start xfce this way. Starting xfce4 with choice 1 seems best but there are some issues: A) ?'Tips and tricks' won't display anything; err msg in (initial xterm session window which runs throughout xfce session) states: /bin/sh: fortune: command not found B) ?Log out icons not working: ?? ? ?4 [main] xfce4-panel 3996 fork: child -1 - died waiting for longjmp before initialization, retry 0, exit code 0xC0000005, errno 11 ????? 4 [main] xfce4-panel 5940 fork: child -1 - died waiting for longjmp before initialization, retry 0, exit code 0xC0000005, errno 11 C) Mousepad not installed? Here's a copy of the xterm session messages after executing startxfce4 (i.e. option #1): $ startxfce4 /usr/bin/startxfce4: X server already running on display 127.0.0.1:0.0 xrdb: "Xft.hinting" on line 12 overrides entry on line 6 xrdb: "Xft.hintstyle" on line 14 overrides entry on line 7 xrdb: "XTerm*background" on line 28 overrides entry on line 10 xrdb: "XTerm*foreground" on line 29 overrides entry on line 9 xscreensaver: 10:43:22: couldn't get password of "root" Agent pid 4776 sh: /usr/bin/iceauth: No such file or directory ** (xfce4-session:2164): WARNING **: Failed to setup the ICE authentication data , session management might not work properly. xfdesktop[1824]: starting up xfce4-settings-helper is already running ** (xfce4-session:2164): WARNING **: ICE connection 0x6f74d8 rejected (xfce4-panel:5912): xfce4-panel-WARNING **: No X-XFCE-{Module,Exec} entry found in "/usr/share/xfce4/panel-plugins/thunar-tpa.desktop". (xfce4-panel:5912): xfce4-panel-WARNING **: Failed to create plugin "thunar-tpa" ** (xfce4-session:2164): WARNING **: ICE connection 0x6f74d8 rejected ** (xfce4-session:2164): WARNING **: ICE connection 0x6f74d8 rejected (xfce4-settings-helper:2080): xfce4-settings-helper-WARNING **: Failed to connec t to session manager /bin/sh: fortune: command not found MCS->Xfconf settings migration complete QUESTIONS: What's the best way to end the xfce4 session? I've been bringing down the X Server. Is using the Konqueror web browser my only option on Cygwin/X? Thanks very much for any assistance or suggestions. -Will -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From johne53@tiscali.co.uk Thu Sep 24 15:04:00 2009 From: johne53@tiscali.co.uk (John Emmas) Date: Thu, 24 Sep 2009 15:04:00 -0000 Subject: Path problem with xterm Message-ID: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> If I open a bash terminal in cygwin, then I create an xterm (either by running startxwin.bat or by running the relevant lines from it manually) then I type "set", my environment settings get listed. Among them is my current PATH variable. However, the displayed path is not the same as the path I had previously (in the bash terminal). Basically, it's the same path but with some extra entries added (most of these being duplicates of entries that were already present). Cygwin's 'startxwin.bat' does introduce some extra entries - but even if I comment them out I still end up with unwanted entries that look like they must either be getting added by Xwin or xterm. Can anyone suggest where they might be coming from, so I can see if I can get rid of them? Thanks, John -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mike_ayers@tvworks.com Thu Sep 24 17:56:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Thu, 24 Sep 2009 17:56:00 -0000 Subject: Path problem with xterm In-Reply-To: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0D1942F9@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of John Emmas > If I open a bash terminal in cygwin, then I create an xterm (either by > running startxwin.bat or by running the relevant lines from it manually) > then I type "set", my environment settings get listed. Among them is > my > current PATH variable. However, the displayed path is not the same as > the > path I had previously (in the bash terminal). Basically, it's the same > path > but with some extra entries added (most of these being duplicates of > entries > that were already present). Are you perhaps modifying PATH in .bashrc? HTH, Mike From johne53@tiscali.co.uk Thu Sep 24 19:07:00 2009 From: johne53@tiscali.co.uk (John Emmas) Date: Thu, 24 Sep 2009 19:07:00 -0000 Subject: Path problem with xterm References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> <83E753BE7B6A324ABB336245BAF1DAAC0D1942F9@mailserver.metatv-ds.metatv.com> Message-ID: <001b01ca3d52$ae9ba910$4001a8c0@mycomputer> ----- Original Message ----- From: "Mike Ayers" Subject: RE: Path problem with xterm > > Are you perhaps modifying PATH in .bashrc? > No Mike, not as far as I can tell. In fact it's the original .bashrc that was installed with Cygwin. I haven't edited it and I can't see anything in it that refers to my path. :-( John -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From bindu@ou.edu Thu Sep 24 19:26:00 2009 From: bindu@ou.edu (Penugonda, Bindu Madhavi) Date: Thu, 24 Sep 2009 19:26:00 -0000 Subject: startx command is not working Message-ID: Hi, I am trying to install cygwin ,it is getting installedin the system,but the problem is when I type startx command .I am getting a fatal error and the error details in a fileare printed as follows Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 1.5.3.0 (20090205) Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: /usr/bin/XWin -multiwindow -clipboard -silent-dup-error ddxProcessArgument - Initializing default screens winInitializeDefaultScreens - w 1280 h 1024 winInitializeDefaultScreens - Returning _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed _XSERVTransMakeAllCOTSServerListeners: server already running Fatal server error: Cannot establish any listening sockets - Make sure an X server isn't already running winDeinitMultiWindowWM - Noting shutdown in progress Thanks, Bindu -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From kbrown@cornell.edu Thu Sep 24 20:04:00 2009 From: kbrown@cornell.edu (Ken Brown) Date: Thu, 24 Sep 2009 20:04:00 -0000 Subject: Path problem with xterm In-Reply-To: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> Message-ID: <4ABBD0E9.4050100@cornell.edu> On 9/24/2009 12:04 PM, John Emmas wrote: > If I open a bash terminal in cygwin, then I create an xterm (either by > running startxwin.bat or by running the relevant lines from it manually) > then I type "set", my environment settings get listed. Among them is my > current PATH variable. However, the displayed path is not the same as the > path I had previously (in the bash terminal). Basically, it's the same > path > but with some extra entries added (most of these being duplicates of > entries > that were already present). > > Cygwin's 'startxwin.bat' does introduce some extra entries - but even if > I comment them out I still end up with unwanted entries that look like they > must either be getting added by Xwin or xterm. Can anyone suggest where > they might be coming from, so I can see if I can get rid of them? I think this was already answered in your other thread on this problem (http://cygwin.com/ml/cygwin/2009-09/msg00653.html): Most of the extra entries probably come from the various bash startup files (including /etc/profile). These startup files will be invoked every time you start a new bash login shell. You may also be getting some extra instances of /usr/bin because xterm is started in startxwin.bat with 'run -p /usr/bin'. I'm not sure about this. Ken -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From angelo.graziosi@alice.it Thu Sep 24 23:35:00 2009 From: angelo.graziosi@alice.it (Angelo Graziosi) Date: Thu, 24 Sep 2009 23:35:00 -0000 Subject: Emacs-GTK hangs with dialog boxes Message-ID: <4ABC024D.9090204@alice.it> For completeness, I want to flag that my GTK build of Emacs has the same problem described here: http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html. Practically, after starting Emacs, $ G_SLICE=always-malloc emacs -q & its first three icons on tool-bar (new file, read existing file, read directory) do not work. Emacs hangs for 20-30 seconds, and at prompt it writes: $ Failed to connect to socket /tmp/fam-graziosi/fam- (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 Failed to connect to socket /tmp/fam-graziosi/fam- (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor predefinito per directory locali (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor predefinito per directory locali I think that the problem happens after a recent (one or two weeks) upgrading of gtk | glib | GNOME libraries, when Emacs showed new icons. Cheers, Angelo. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From angelo.graziosi@alice.it Fri Sep 25 00:11:00 2009 From: angelo.graziosi@alice.it (Angelo Graziosi) Date: Fri, 25 Sep 2009 00:11:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <4ABC024D.9090204@alice.it> References: <4ABC024D.9090204@alice.it> Message-ID: <4ABC0A8F.5050909@alice.it> Angelo Graziosi ha scritto: > For completeness, I want to flag that my GTK build of Emacs has the same > problem described here: > http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html. > > Practically, after starting Emacs, > > $ G_SLICE=always-malloc emacs -q & > > its first three icons on tool-bar (new file, read existing file, read > directory) do not work. Emacs hangs for 20-30 seconds, and at prompt it > writes: > > $ Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > > I think that the problem happens after a recent (one or two weeks) > upgrading of gtk | glib | GNOME libraries, when Emacs showed new icons. Using the current snapshot of cygwin1.dll (20090924, only dll) seems to solve *partially* the above problem: now it looks that the first three icons are working, but when I try to close Emacs, it hangs for some time. This happens only if I use those icons. Using 'ps' while Emacs is hanging, does not show the Emacs process any more but this 4036 1 3152 3716 ? 1006 01:56:54 /usr/lib/gamin/gam_server Cheers, Angelo. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 01:41:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 01:41:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <4ABC024D.9090204@alice.it> References: <4ABC024D.9090204@alice.it> Message-ID: <4ABC1FDB.1090004@users.sourceforge.net> On 24/09/2009 18:35, Angelo Graziosi wrote: > For completeness, I want to flag that my GTK build of Emacs has the same > problem described here: > http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html. That has been fixed in the 20090920 snapshot. > Practically, after starting Emacs, > > $ G_SLICE=always-malloc emacs -q & > > its first three icons on tool-bar (new file, read existing file, read > directory) do not work. Emacs hangs for 20-30 seconds, and at prompt it > writes: > > $ Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > I think that the problem happens after a recent (one or two weeks) > upgrading of gtk | glib | GNOME libraries, when Emacs showed new icons. I would try the latest snapshot; this may have been fixed there as well. Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cgf-use-the-mailinglist-please@cygwin.com Fri Sep 25 01:48:00 2009 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Fri, 25 Sep 2009 01:48:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <4ABC1FDB.1090004@users.sourceforge.net> References: <4ABC024D.9090204@alice.it> <4ABC1FDB.1090004@users.sourceforge.net> Message-ID: <20090925014758.GA28832@ednor.casa.cgf.cx> On Thu, Sep 24, 2009 at 08:41:47PM -0500, Yaakov (Cygwin/X) wrote: >On 24/09/2009 18:35, Angelo Graziosi wrote: >> For completeness, I want to flag that my GTK build of Emacs has the same >> problem described here: >> http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html. > >That has been fixed in the 20090920 snapshot. > >> Practically, after starting Emacs, >> >> $ G_SLICE=always-malloc emacs -q & >> >> its first three icons on tool-bar (new file, read existing file, read >> directory) do not work. Emacs hangs for 20-30 seconds, and at prompt it >> writes: >> >> $ Failed to connect to socket /tmp/fam-graziosi/fam- >> (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 >> >> Failed to connect to socket /tmp/fam-graziosi/fam- >> (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 >> >> (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor >> predefinito per directory locali >> >> (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor >> predefinito per directory locali > > >> I think that the problem happens after a recent (one or two weeks) >> upgrading of gtk | glib | GNOME libraries, when Emacs showed new icons. > >I would try the latest snapshot; this may have been fixed there as well. I'm not aware of anything which would address this in the latest snapshot. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 03:19:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 03:19:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <20090925014758.GA28832@ednor.casa.cgf.cx> References: <4ABC024D.9090204@alice.it> <4ABC1FDB.1090004@users.sourceforge.net> <20090925014758.GA28832@ednor.casa.cgf.cx> Message-ID: <4ABC36BE.6050606@users.sourceforge.net> On 24/09/2009 20:47, Christopher Faylor wrote: > I'm not aware of anything which would address this in the latest > snapshot. The "Failed to connect to socket" error from GIO was, AFAICS, a fork() issue like the others plaguing GTK+, in this case a timeout from libfam waiting for the gam_server socket. Yaakov -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cgf-use-the-mailinglist-please@cygwin.com Fri Sep 25 04:01:00 2009 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Fri, 25 Sep 2009 04:01:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <4ABC36BE.6050606@users.sourceforge.net> References: <4ABC024D.9090204@alice.it> <4ABC1FDB.1090004@users.sourceforge.net> <20090925014758.GA28832@ednor.casa.cgf.cx> <4ABC36BE.6050606@users.sourceforge.net> Message-ID: <20090925040104.GA29251@ednor.casa.cgf.cx> On Thu, Sep 24, 2009 at 10:19:26PM -0500, Yaakov (Cygwin/X) wrote: >On 24/09/2009 20:47, Christopher Faylor wrote: >> I'm not aware of anything which would address this in the latest >> snapshot. > >The "Failed to connect to socket" error from GIO was, AFAICS, a fork() >issue like the others plaguing GTK+, in this case a timeout from libfam >waiting for the gam_server socket. Right. The fork problem was fixed in the 20090920 snapshot. There was nothing fork-related in yesterday's snapshot. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 08:05:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 08:05:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xterm-248-1 Message-ID: The following package has been updated for Cygwin 1.7: *** xterm-248-1 This is an update to the latest upstream version. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 08:05:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 08:05:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: gtk2.0-engines-2.18.4-1 Message-ID: The following package has been updated for Cygwin 1.7: *** gtk2.0-engines-2.18.4-1 This is an update to the latest upstream version, and adds a dependency on lua instead of statically linking its own copy. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 08:05:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 08:05:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: libX11-1.2.2-2 Message-ID: The following packages have been updated for Cygwin 1.7: * libX11_6-1.2.2-2 * libX11-devel-1.2.2-2 * libX11-xcb1-1.2.2-2 * libX11-xcb-devel-1.2.2-2 libX11, aka Xlib, is the core library of the X11 protocol. This release has been rebuilt with the latest Cygwin release. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Fri Sep 25 08:05:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Fri, 25 Sep 2009 08:05:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: libxcb-1.4-2 Message-ID: The following packages have been updated for Cygwin 1.7: * libxcb1-1.4-2 * libxcb-composite-devel-1.4-2 * libxcb-composite0-1.4-2 * libxcb-damage-devel-1.4-2 * libxcb-damage0-1.4-2 * libxcb-devel-1.4-2 * libxcb-doc-1.4-2 * libxcb-dpms-devel-1.4-2 * libxcb-dpms0-1.4-2 * libxcb-glx-devel-1.4-2 * libxcb-glx0-1.4-2 * libxcb-randr-devel-1.4-2 + libxcb-randr0-1.4-2 * libxcb-record-devel-1.4-2 * libxcb-record0-1.4-2 * libxcb-render-devel-1.4-2 * libxcb-render0-1.4-2 * libxcb-res-devel-1.4-2 * libxcb-res0-1.4-2 * libxcb-screensaver-devel-1.4-2 * libxcb-screensaver0-1.4-2 * libxcb-shape-devel-1.4-2 * libxcb-shape0-1.4-2 * libxcb-shm-devel-1.4-2 * libxcb-shm0-1.4-2 * libxcb-sync-devel-1.4-2 * libxcb-sync0-1.4-2 * libxcb-xfixes-devel-1.4-2 * libxcb-xfixes0-1.4-2 * libxcb-xinerama-devel-1.4-2 * libxcb-xinerama0-1.4-2 * libxcb-xinput-devel-1.4-2 * libxcb-xinput0-1.4-2 * libxcb-xtest-devel-1.4-2 * libxcb-xtest0-1.4-2 libxcb provides an interface to the X Window System protocol, which replaces the current Xlib interface. This release has been rebuilt with the latest Cygwin release. Yaakov Cygwin/X CYGWIN-XFREE-ANNOUNCE UNSUBSCRIBE INFO ====================================== If you want to unsubscribe from the cygwin-xfree-announce mailing list, please use the automated form at: http://cygwin.com/lists.html#subscribe-unsubscribe If this does not work, then look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-xfree-announce-unsubscribe-you=yourdomain.com@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From johne53@tiscali.co.uk Fri Sep 25 08:51:00 2009 From: johne53@tiscali.co.uk (John Emmas) Date: Fri, 25 Sep 2009 08:51:00 -0000 Subject: Path problem with xterm References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> <4ABBD0E9.4050100@cornell.edu> Message-ID: <006f01ca3dc5$b0469db0$4001a8c0@mycomputer> ----- Original Message ----- From: "Ken Brown" > > Most of the extra entries probably come from the various bash startup > files (including /etc/profile). These startup files will be invoked every > time you start a new bash login shell. > It looks like you're right about this Ken. Many of the scripts and batch files just blindly add their directory requirements to my path without checking whether the path already contained them. Havng said that, some of the scripting models (e.g. for processing batch files) might not have adequate tools for doing an intelligent check, so it looks like this is something I'll just have to live with.... :-( It is quite annoying though because most applications that need to search the user's path don't seem to do it intelligently either - and so the same folders keep getting searched over and over again. Thanks anyway, John -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From stephen.more@gmail.com Fri Sep 25 15:56:00 2009 From: stephen.more@gmail.com (Stephen More) Date: Fri, 25 Sep 2009 15:56:00 -0000 Subject: XPRA for cygwin Message-ID: Has anyone attempted to get xpra working under cygwin ? http://partiwm.org/wiki/xpra -Thanks -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mike_ayers@tvworks.com Fri Sep 25 17:14:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Fri, 25 Sep 2009 17:14:00 -0000 Subject: Path problem with xterm In-Reply-To: <006f01ca3dc5$b0469db0$4001a8c0@mycomputer> References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> <4ABBD0E9.4050100@cornell.edu> <006f01ca3dc5$b0469db0$4001a8c0@mycomputer> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0D1946A1@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of John Emmas > Sent: Friday, September 25, 2009 2:51 AM > It looks like you're right about this Ken. Many of the scripts and > batch > files just blindly add their directory requirements to my path without > checking whether the path already contained them. If you set PATH absolutely in .bash_profile, the right thing will happen. You may want to copy the initial value of PATH into another exported env var, so that you can see if there have been changes to the default path. HTH, Mike From domen.rj@gmail.com Fri Sep 25 17:46:00 2009 From: domen.rj@gmail.com (diego menezes) Date: Fri, 25 Sep 2009 17:46:00 -0000 Subject: Installation getting stuck? Message-ID: <25616260.post@talk.nabble.com> Dear all, I've been trying to install Cygwin/X on Windows Vista with Service Pack 2, though I also have a linux partition as well, since my goal is access my unix machine at Fermilab via windows. I started the installation last night and at the "Select Packages" window I picked up "Install" rather than "Default" which I previously quicly installed, to install the whole think. It was everything running fine but this morning I noticed it got stuck at "27%". for over 3h. The download window says: "Running" "tetex-tiny" "/etc/postinstall/post-texmf.sh" and then the overrall progress status. Does anyone have any idea why is it thanking so long? Is it normal? Thanks in advance. Cheers, Diego. -- View this message in context: http://www.nabble.com/Installation-getting-stuck--tp25616260p25616260.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From angelo.graziosi@alice.it Sat Sep 26 09:58:00 2009 From: angelo.graziosi@alice.it (Angelo Graziosi) Date: Sat, 26 Sep 2009 09:58:00 -0000 Subject: Emacs-GTK hangs with dialog boxes In-Reply-To: <4ABC024D.9090204@alice.it> References: <4ABC024D.9090204@alice.it> Message-ID: <4ABDE587.2080408@alice.it> Angelo Graziosi ha scritto: > For completeness, I want to flag that my GTK build of Emacs has the same > problem described here: > http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html. > > Practically, after starting Emacs, > > $ G_SLICE=always-malloc emacs -q & > > its first three icons on tool-bar (new file, read existing file, read > directory) do not work. Emacs hangs for 20-30 seconds, and at prompt it > writes: > > $ Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > Failed to connect to socket /tmp/fam-graziosi/fam- > (emacs:3556): GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=3 > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > (emacs:3556): Gtk-WARNING **: Impossibile trovare il tipo di monitor > predefinito per directory locali > > > I think that the problem happens after a recent (one or two weeks) > upgrading of gtk | glib | GNOME libraries, when Emacs showed new icons. Just for completeness I want to report other details. I have tried the test case in (*), more precisely this: $ gcc -DTRY1 -Wall -o test-dialog3-try1 test-dialog3.c `pkg-config --cflags --libs gtk+-2.0` $ ./test-dialog3-try1 Using gtk_file_chooser_dialog_new. Done. Please make sure the FAM daemon is not running before testing again. (i.e. kill the gam_server process or wait until it is gone) Now, as you can see, it says "...kill the gam_server process or wait until it is gone". Indeed 'ps' shows that gam_server process is still there and remains for about 30 seconds. Now this hasn't a great impact with the test case because it, really, does not open a new window on the PC screen. With Emacs (GTK build) the things are a little different. When one opens a dialog, for example, to load a file to edit, the 'gam_server' starts running; it remains running even after closing the dialog (and this seems to be expected). However, when one decides to quit from Emacs, the 'emacs' process is removed, as shows 'ps', but the Emacs window remains on the screen until gam_server is gone, i.e. after about 30 second. This, at first sight, seems that Emacs is hanging. Is this behavior to be expected? It looks strange to me... On GNU/Linux, with a similar GTK build of Emacs I do not see this behavior. Cheers, Angelo. --- (*) http://cygwin.com/ml/cygwin-xfree/2009-09/msg00051.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From johne53@tiscali.co.uk Mon Sep 28 10:42:00 2009 From: johne53@tiscali.co.uk (John Emmas) Date: Mon, 28 Sep 2009 10:42:00 -0000 Subject: Path problem with xterm References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> <4ABBD0E9.4050100@cornell.edu> <006f01ca3dc5$b0469db0$4001a8c0@mycomputer> <83E753BE7B6A324ABB336245BAF1DAAC0D1946A1@mailserver.metatv-ds.metatv.com> Message-ID: <002701ca4030$cb218560$4001a8c0@mycomputer> ----- Original Message ----- From: "Mike Ayers" > > If you set PATH absolutely in .bash_profile, the right thing will happen. > You may want to copy the initial value of PATH into another exported env > var, so that you can see if there have been changes to the default path. > Hi Mike. If I can find some time this week, I'm tempted to give this a try but I don't quite understand how it would work. Are you saying that an absolute path in .bash_profile will somehow override the other paths? Or that it will somehow prevent the various other scripts from adding their own entries? Or will I still have to track down all those other files and edit them anyway? John -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Tue Sep 29 13:31:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Tue, 29 Sep 2009 13:31:00 -0000 Subject: startx command is not working In-Reply-To: References: Message-ID: <4AC20C18.5000600@dronecode.org.uk> On 24/09/2009 20:26, Penugonda, Bindu Madhavi wrote: > Hi, > > I am trying to install cygwin ,it is getting installedin the system,but the problem is when I type startx command .I am getting a fatal error and the error details in a fileare printed as follows > > > > Welcome to the XWin X Server > Vendor: The Cygwin/X Project > Release: 1.5.3.0 (20090205) > Contact: cygwin-xfree@cygwin.com > XWin was started with the following command line: > > /usr/bin/XWin -multiwindow -clipboard -silent-dup-error > > ddxProcessArgument - Initializing default screens > winInitializeDefaultScreens - w 1280 h 1024 > winInitializeDefaultScreens - Returning > _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed > _XSERVTransMakeAllCOTSServerListeners: server already running > > Fatal server error: > Cannot establish any listening sockets - Make sure an X server isn't already running > winDeinitMultiWindowWM - Noting shutdown in progress A very similar question has been asked recently http://cygwin.com/ml/cygwin-xfree/2009-09/msg00054.html I would update the FAQ to include this question if I got any feedback about what the problem and solution is. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mike_ayers@tvworks.com Tue Sep 29 17:36:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Tue, 29 Sep 2009 17:36:00 -0000 Subject: Path problem with xterm In-Reply-To: <002701ca4030$cb218560$4001a8c0@mycomputer> References: <003201ca3d30$a5ce3680$4001a8c0@mycomputer> <4ABBD0E9.4050100@cornell.edu> <006f01ca3dc5$b0469db0$4001a8c0@mycomputer> <83E753BE7B6A324ABB336245BAF1DAAC0D1946A1@mailserver.metatv-ds.metatv.com> <002701ca4030$cb218560$4001a8c0@mycomputer> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0D194DD9@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree- > owner@cygwin.com] On Behalf Of John Emmas > Sent: Monday, September 28, 2009 4:43 AM > From: "Mike Ayers" > > > > If you set PATH absolutely in .bash_profile, the right thing will > happen. > > You may want to copy the initial value of PATH into another exported > env > > var, so that you can see if there have been changes to the default > path. > Hi Mike. If I can find some time this week, I'm tempted to give this a > try > but I don't quite understand how it would work. Are you saying that an > absolute path in .bash_profile will somehow override the other paths? > Or > that it will somehow prevent the various other scripts from adding > their own > entries? Or will I still have to track down all those other files and > edit > them anyway? In .bash_profile: export OPATH=$PATH export PATH='/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin' Note that we are discarding the old value of PATH. Now, when the ancillary login scripts run and add their bits to PATH, those bits will only be there once. So we completely rebuild PATH on a login shell, and change nothing on a non-login shell. Kapische? Mike From andy.koppe@gmail.com Tue Sep 29 18:22:00 2009 From: andy.koppe@gmail.com (Andy Koppe) Date: Tue, 29 Sep 2009 18:22:00 -0000 Subject: luit package and pty In-Reply-To: <617037.97736.qm@web4110.mail.ogk.yahoo.co.jp> References: <617037.97736.qm@web4110.mail.ogk.yahoo.co.jp> Message-ID: <416096c60909291122j22f5a4dascc963a72df4b8b9d@mail.gmail.com> 2009/7/28 neomjp: > The recent xterm is configured with --enable-luit, but /usr/bin/luit is > currently broken. > > $ cygcheck -f `which luit` > luit-1.0.3-1 > > $ luit > Couldn't allocate pty: No such file or directory > > The cause of this error and a possible fix is in > http://sourceware.org/ml/cygwin/2009-04/msg00725.html > > Could you please consider incorporating this fix into the luit package? Just stumbled across this issue. A fix would be particularly useful for Cygwin 1.7, where the UTF-8 will be the default while a number of apps are not yet Unicode-ready. Hence luit is needed as a compatibility shim. Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Wed Sep 30 05:57:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 30 Sep 2009 05:57:00 -0000 Subject: authentication data for X11 issue In-Reply-To: <25675249.post@talk.nabble.com> References: <25675249.post@talk.nabble.com> Message-ID: <4AC2F342.8050601@users.sourceforge.net> X queries belong on the cygwin-xfree@ list; setting Reply-To: accordingly. On 30/09/2009 00:42, diego menezes wrote: > After installing Cygwin (default installation) and trying to connect to my > machine at Fermilab I got this message: > > Starting SSH connection to senna-clued0.fnal.gov... > Could not create directory '/home/diego/.ssh' > Warning: no xauth data; using fake authentication data for X11 forwarding > > When I try a simple thing like typing xterm& for instance, it tells me > > X connection to localhost:10.0 broken. http://x.cygwin.com/docs/faq/cygwin-x-faq.html#remote > Does anyone have any idea on what's going on? If the information in the FAQ doesn't help you fix this, please *attach* your 'cygcheck -srv' output and your /var/log/XWin.0.log. Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From domen.rj@gmail.com Wed Sep 30 07:01:00 2009 From: domen.rj@gmail.com (diego menezes) Date: Wed, 30 Sep 2009 07:01:00 -0000 Subject: xauth data + X connection to localhost:10.0 broken problem Message-ID: <25675981.post@talk.nabble.com> Dear all, After installing Cygwin (default installation and then full installation) and trying to connect to my machine at Fermilab I got this message: Starting SSH connection to senna-clued0.fnal.gov... Warning: no xauth data; using fake authentication data for X11 forwarding When I try a simple thing like typing xterm& for instance, it tells me X connection to localhost:10.0 broken . Does anyone have any idea on what's going on? Cheers all, Diego. -- View this message in context: http://www.nabble.com/xauth-data-%2B-X-connection-to-localhost%3A10.0-broken-problem-tp25675981p25675981.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From richard.evans@datanomic.com Wed Sep 30 09:35:00 2009 From: richard.evans@datanomic.com (Richard Evans) Date: Wed, 30 Sep 2009 09:35:00 -0000 Subject: Cygwin/X server -query fails with recent versions of Gnome GDM Message-ID: <974066EF77EEA44EB8AED6ADA05DBD02EC8AA9@THHS2EXBE1X.hostedservice2.net> Cygwin 1.7beta, cygcheck output attached. I am trying to start a remote session using: XWin -query host where the host is running GDM from Gnome 2.28. The connect fails. A wireshark network snoop (attached) shows that GDM is sending X_ChangeHosts requests with an address family of 5 (ServerInterpreted) and a address like localuser:root XWin responds with a BadValue error and the connection attempt fails. I speculate that XWin was compiled without support for the ServerInterpreted address family. I cannot find a workround for this. For reference, here is a code snippet from GDM: XHostAddress host_entries[2] = { { FamilyServerInterpreted }, { FamilyServerInterpreted } }; XServerInterpretedAddress si_entries[2]; g_debug ("GdmSlave: Connected to display %s", slave->priv->display_name); ret = TRUE; /* Give programs run by the slave and greeter access to the display * independent of current hostname */ si_entries[0].type = "localuser"; si_entries[0].typelength = strlen ("localuser"); si_entries[1].type = "localuser"; si_entries[1].typelength = strlen ("localuser"); si_entries[0].value = "root"; si_entries[0].valuelength = strlen ("root"); si_entries[1].value = GDM_USERNAME; si_entries[1].valuelength = strlen (GDM_USERNAME); host_entries[0].address = (char *) &si_entries[0]; host_entries[0].length = sizeof (XServerInterpretedAddress); host_entries[1].address = (char *) &si_entries[1]; host_entries[1].length = sizeof (XServerInterpretedAddress); XAddHosts (slave->priv->server_display, host_entries, G_N_ELEMENTS (host_entries)); Richard Evans -------------- next part -------------- A non-text attachment was scrubbed... Name: x11-q1.pcap Type: application/octet-stream Size: 6614 bytes Desc: x11-q1.pcap URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cygcheck.out Type: application/octet-stream Size: 88333 bytes Desc: cygcheck.out URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mailing@fievel.be Wed Sep 30 09:51:00 2009 From: mailing@fievel.be (Florent Fievez) Date: Wed, 30 Sep 2009 09:51:00 -0000 Subject: xauth data + X connection to localhost:10.0 broken problem In-Reply-To: <6e2d1b810909300249g6e85071btc5471af6e268441d@mail.gmail.com> References: <25675981.post@talk.nabble.com> <6e2d1b810909300249g6e85071btc5471af6e268441d@mail.gmail.com> Message-ID: <6e2d1b810909300251j543731cck950bae8dd0fcc794@mail.gmail.com> Hi, It means that ssh does not found xauth binary. To get it working, try adding to your ~/.ssh/config a line like : Host * ??????? XAuthLocation /usr/bin/xauth (It works with my cygwin installation, otherwise try locating xauth : which xauth in a cygwin console) Best regards, 2009/9/30 diego menezes > > Dear all, > > After installing Cygwin (default installation and then full installation) > and trying to connect to my machine at Fermilab I got this message: > > Starting SSH connection to senna-clued0.fnal.gov... > Warning: no xauth data; using fake authentication data for X11 forwarding > > When I try a simple thing like typing xterm& for instance, it tells me > > X connection to localhost:10.0 broken . > > Does anyone have any idea on what's going on? > > Cheers all, > > Diego. > -- > View this message in context: http://www.nabble.com/xauth-data-%2B-X-connection-to-localhost%3A10.0-broken-problem-tp25675981p25675981.html > Sent from the cygwin-xfree mailing list archive at Nabble.com. > > > -- > Unsubscribe info: ? ? ?http://cygwin.com/ml/#unsubscribe-simple > Problem reports: ? ? ? http://cygwin.com/problems.html > Documentation: ? ? ? ? http://x.cygwin.com/docs/ > FAQ: ? ? ? ? ? ? ? ? ? http://x.cygwin.com/docs/faq/ > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marc.girod@gmail.com Wed Sep 30 10:03:00 2009 From: marc.girod@gmail.com (Marc Girod) Date: Wed, 30 Sep 2009 10:03:00 -0000 Subject: xauth data + X connection to localhost:10.0 broken problem In-Reply-To: <25675981.post@talk.nabble.com> References: <25675981.post@talk.nabble.com> Message-ID: <25678247.post@talk.nabble.com> Hi, diego menezes wrote: > > Does anyone have any idea on what's going on? > I used to get something similar, which I worked around by setting my DISPLAY to: $($WHOAMI|sed -e 's/^.*(\(.*\)).*$/\1/'):0.0 (but this worked only for one hop)... until I read the FAQ again and added to my ~/.ssh/config: ForwardX11Trusted yes (in addition to already there: ForwardX11 yes ) My DISPLAY is now: localhost:14.0 and I can start an xterm, run a new ssh session there to the same host, and check I get a new DISPLAY of localhost:15.0, etc. On an other host I get of course number free from the starting one, e.g. 10.0 So, this did the trick for me... Marc -- View this message in context: http://www.nabble.com/xauth-data-%2B-X-connection-to-localhost%3A10.0-broken-problem-tp25675981p25678247.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marc.girod@gmail.com Wed Sep 30 11:04:00 2009 From: marc.girod@gmail.com (Marc Girod) Date: Wed, 30 Sep 2009 11:04:00 -0000 Subject: GNU emacs fonts again Message-ID: <25678987.post@talk.nabble.com> Hello, My last cygwin upgrade changed the fonts used in GNU emacs. This is: xorg-server 1.6.3-1 OK emacs 23.1-10 OK cygwin 1.7.0-61 OK font-alias 1.0.1-1 OK Until now, I belive I was using: font-bh-lucidatypewriter-dpi75 1.0.0-1 OK I get now under emacs: (list-fontsets) Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard Fontset: -monotype-Courier New-normal-normal-normal-*-12-*-*-*-*-0-fontset-startup In fact, I might be happy with 'Courier New' (fixed fonts anyway!) if it wasn't for one glitch: the bold font is narrower than the normal one!? In my emacs shell, the command is in bold once you have run it, but not while you edit it. It means that the command you edit doesn't align with the previous one which failed, and which you are just fixing. Of the two widths, I prefer the narrower one (I find the width/height ratio of the medium Courier New less readable). So, may I align the widths? Thanks, Marc -- View this message in context: http://www.nabble.com/GNU-emacs-fonts-again-tp25678987p25678987.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From andy.koppe@gmail.com Wed Sep 30 11:26:00 2009 From: andy.koppe@gmail.com (Andy Koppe) Date: Wed, 30 Sep 2009 11:26:00 -0000 Subject: GNU emacs fonts again In-Reply-To: <25678987.post@talk.nabble.com> References: <25678987.post@talk.nabble.com> Message-ID: <416096c60909300426n1ddc414ew95325489db8a1cb5@mail.gmail.com> 2009/9/30 Marc Girod: > > Hello, > > My last cygwin upgrade changed the fonts used in GNU emacs. > This is: > xorg-server ? ? ? ? 1.6.3-1 ? ? ? ? OK > emacs ? ? ? ? ? ? ? ?23.1-10 ? ? ? ?OK > cygwin ? ? ? ? ? ? ? 1.7.0-61 ? ? ? OK > font-alias ? ? ? ? ? ?1.0.1-1 ? ? ? ?OK > > Until now, I belive I was using: > font-bh-lucidatypewriter-dpi75 1.0.0-1 ? ? ? ?OK > > I get now under emacs: > > (list-fontsets) > Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default > Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard > Fontset: -monotype-Courier > New-normal-normal-normal-*-12-*-*-*-*-0-fontset-startup In case you want Lucida back: http://cygwin.com/cgi-bin2/package-grep.cgi?grep=lucidatypewriter Andy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marc.girod@gmail.com Wed Sep 30 12:55:00 2009 From: marc.girod@gmail.com (Marc Girod) Date: Wed, 30 Sep 2009 12:55:00 -0000 Subject: GNU emacs fonts again In-Reply-To: <416096c60909300426n1ddc414ew95325489db8a1cb5@mail.gmail.com> References: <25678987.post@talk.nabble.com> <416096c60909300426n1ddc414ew95325489db8a1cb5@mail.gmail.com> Message-ID: <25680512.post@talk.nabble.com> Hi Andy, Andy Koppe wrote: > > In case you want Lucida back: > Thanks, but no... This wasn't my question. In fact, I do have the package installed and up to date. Now, GNU emacs seemed to use it and doesn't anymore. I didn't change my settings. But, I liked the Lucida Sans Typewriter font on some unix in the past. It doesn't look at all so nice on my Vista box under cygwin. Different screen probably. Besides, there used to be some issues with the completeness of the full set... Support for some characters in some combinations... bold italic... Or just some non-standard naming that made some transitions fail... italic that was named oblique... I don't remember. I am not sure it affected me anymore lately. It did in the past when I used to run the w3 emacs browser. The point is that I lack a wider perspective to know what it the optimal solution, and thus to make a precise question. So far, it seems like how to tell emacs to get its default font narrower? How come is the medium Courier wider than the bold one? Isn't this an error? I can start emacs with: /usr/bin/emacs -fn lucidasanstypewriter-10 This however: - gives a setup in which the system font is unreadable (blocks). I know there must be an FAQ about that... - it doesn't look especially good (thick 'i's and '-'s) The list-fontsets function gives: Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard Fontset: -b&h-lucidatypewriter-medium-r-normal-sans-14-*-100-100-m-80-fontset-startup BTW... lucidasanstypewriter-8 seems to find equivalents for the system. It is not nicer looking though. Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard Fontset: -b&h-lucidatypewriter-medium-r-normal-sans-11-*-100-100-m-70-fontset-startup Marc -- View this message in context: http://www.nabble.com/GNU-emacs-fonts-again-tp25678987p25680512.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From kbrown@cornell.edu Wed Sep 30 13:59:00 2009 From: kbrown@cornell.edu (Ken Brown) Date: Wed, 30 Sep 2009 13:59:00 -0000 Subject: GNU emacs fonts again In-Reply-To: <25680512.post@talk.nabble.com> References: <25678987.post@talk.nabble.com> <416096c60909300426n1ddc414ew95325489db8a1cb5@mail.gmail.com> <25680512.post@talk.nabble.com> Message-ID: <4AC3644E.6010909@cornell.edu> On 9/30/2009 8:55 AM, Marc Girod wrote: > The list-fontsets function gives: > Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default > Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard > Fontset: > -b&h-lucidatypewriter-medium-r-normal-sans-14-*-100-100-m-80-fontset-startup For me list-fontsets gives Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard Fontset: -bitstream-Bitstream Vera Sans Mono-normal-normal-normal-*-12-*-*-*-m-0-fontset-startup I have nothing in my .Xdefaults or .emacs related to fonts, and I don't specify a font on the command line; so I think emacs is selecting Bitstream Vera Sans Mono by default. It looks good to me. Ken -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marc.girod@gmail.com Wed Sep 30 14:39:00 2009 From: marc.girod@gmail.com (Marc Girod) Date: Wed, 30 Sep 2009 14:39:00 -0000 Subject: GNU emacs fonts again In-Reply-To: <4AC3644E.6010909@cornell.edu> References: <25678987.post@talk.nabble.com> <416096c60909300426n1ddc414ew95325489db8a1cb5@mail.gmail.com> <25680512.post@talk.nabble.com> <4AC3644E.6010909@cornell.edu> Message-ID: <25682419.post@talk.nabble.com> Thanks Ken, Ken Brown-6 wrote: > > I think emacs is selecting Bitstream Vera Sans Mono by default. It looks > good to me. > I had to install it, but indeed, emacs picked it. There must be some preference order. This is what must have changed recently as somebody else decided that Lucida Sans was not looking so good; and preferred to use Courier New instead if found. But, when found, Bitstream Vera preempts this choice... It looks good to me too. Marc -- View this message in context: http://www.nabble.com/GNU-emacs-fonts-again-tp25678987p25682419.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Wed Sep 30 15:01:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 30 Sep 2009 15:01:00 -0000 Subject: GNU emacs fonts again In-Reply-To: <25678987.post@talk.nabble.com> References: <25678987.post@talk.nabble.com> Message-ID: <4AC372B0.4070703@dronecode.org.uk> On 30/09/2009 12:04, Marc Girod wrote: > > Hello, > > My last cygwin upgrade changed the fonts used in GNU emacs. > This is: > xorg-server 1.6.3-1 OK > emacs 23.1-10 OK > cygwin 1.7.0-61 OK > font-alias 1.0.1-1 OK A big change with emacs 23 is that it now uses Fontconfig and Xft for font rendering. All other things being equal this should improve things, allowing anti-aliasing etc. > Until now, I belive I was using: > font-bh-lucidatypewriter-dpi75 1.0.0-1 OK > > I get now under emacs: > > (list-fontsets) > Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default > Fontset: -*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard > Fontset: -monotype-Courier > New-normal-normal-normal-*-12-*-*-*-*-0-fontset-startup I'm not sure where monotype-Courier New font is coming from, I don't think it's one of the fonts we provide. However, I believe the latest fontconfig package had a tweak by Yaakov to allow it to find the fonts in the Windows fonts directory as well. How emacs selects it's default font is a mystery to me. > In fact, I might be happy with 'Courier New' (fixed fonts anyway!) if it > wasn't for one glitch: > the bold font is narrower than the normal one!? > > In my emacs shell, the command is in bold once you have run it, but not > while you edit it. > It means that the command you edit doesn't align with the previous one which > failed, > and which you are just fixing. > > Of the two widths, I prefer the narrower one (I find the width/height ratio > of the medium > Courier New less readable). > > So, may I align the widths? > > Thanks, > Marc Perhaps try 'emacs -fn "bitstream vera sans mono"' -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Wed Sep 30 15:50:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 30 Sep 2009 15:50:00 -0000 Subject: X Support Message-ID: <4AC37E31.2030208@users.sourceforge.net> From yselkowitz@users.sourceforge.net Wed Sep 30 16:10:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 30 Sep 2009 16:10:00 -0000 Subject: X Support In-Reply-To: <4AC37E31.2030208@users.sourceforge.net> References: <4AC37E31.2030208@users.sourceforge.net> Message-ID: <4AC382EE.6050004@users.sourceforge.net> On 30/09/2009 10:50, Yaakov (Cygwin/X) wrote: > Corinna Vinschen wrote: Oops, this was not supposed to go to the list. Auto-complete pilot error. Yaakov -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From domen.rj@gmail.com Wed Sep 30 16:43:00 2009 From: domen.rj@gmail.com (diego menezes) Date: Wed, 30 Sep 2009 16:43:00 -0000 Subject: xauth data + X connection to localhost:10.0 broken problem In-Reply-To: <6e2d1b810909300251j543731cck950bae8dd0fcc794@mail.gmail.com> References: <25675981.post@talk.nabble.com> <6e2d1b810909300251j543731cck950bae8dd0fcc794@mail.gmail.com> Message-ID: <25684836.post@talk.nabble.com> Hi there, First let me thank you guys for your reply. Now, when checking here I don't see any config file in ~/.ssh, what means it was not generated when cygwin was installed I guess. So, how can get in here? Also, I believe the line "XAuthLocation /usr/bin/xauth" is actually "XAuthLocation /usr/bin/xauth.exe" sice xauth is an executable. Instead I have a file named "xauth_switch_to_sun-des-1". Cheers, Diego. Florent Fievez-2 wrote: > > Hi, > > It means that ssh does not found xauth binary. To get it working, try > adding to your ~/.ssh/config a line like : > > Host * > ??????? XAuthLocation /usr/bin/xauth > > (It works with my cygwin installation, otherwise try locating xauth : > which xauth in a cygwin console) > > Best regards, > > 2009/9/30 diego menezes >> >> Dear all, >> >> After installing Cygwin (default installation and then full installation) >> and trying to connect to my machine at Fermilab I got this message: >> >> Starting SSH connection to senna-clued0.fnal.gov... >> Warning: no xauth data; using fake authentication data for X11 forwarding >> >> When I try a simple thing like typing xterm& for instance, it tells me >> >> X connection to localhost:10.0 broken > shutdown>. >> >> Does anyone have any idea on what's going on? >> >> Cheers all, >> >> Diego. >> -- >> View this message in context: >> http://www.nabble.com/xauth-data-%2B-X-connection-to-localhost%3A10.0-broken-problem-tp25675981p25675981.html >> Sent from the cygwin-xfree mailing list archive at Nabble.com. >> >> >> -- >> Unsubscribe info: ? ? ?http://cygwin.com/ml/#unsubscribe-simple >> Problem reports: ? ? ? http://cygwin.com/problems.html >> Documentation: ? ? ? ? http://x.cygwin.com/docs/ >> FAQ: ? ? ? ? ? ? ? ? ? http://x.cygwin.com/docs/faq/ >> > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > > -- View this message in context: http://www.nabble.com/xauth-data-%2B-X-connection-to-localhost%3A10.0-broken-problem-tp25675981p25684836.html Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/