From corinna-cygwin@cygwin.com Wed Jul 1 15:43:00 2009 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Wed, 01 Jul 2009 15:43:00 -0000 Subject: Question for Corinna (was Re: Novice Question) In-Reply-To: <20090629145050.GF19123@ednor.casa.cgf.cx> References: <4A47AE0C.2020406@dronecode.org.uk> <4a47c674.29578c0a.7016.4a66@mx.google.com> <4A47D354.6060704@dronecode.org.uk> <4a488ba9.1f538c0a.1d28.ffff917c@mx.google.com> <4A48A0D8.4090300@dronecode.org.uk> <20090629145050.GF19123@ednor.casa.cgf.cx> Message-ID: <20090701154250.GF30864@calimero.vinschen.de> On Jun 29 10:50, Christopher Faylor wrote: > On Mon, Jun 29, 2009 at 12:09:12PM +0100, Jon TURNEY wrote: > >Andy wrote: > >> /opt/wip/cygport-svn/xorg-server/xorg-server-1.6.0-10/src/xorg-server-1.6.0/ > >> os/access.c > >> (gdb) p *ifr > >> $1 = {ifa_next = 0x1447798, ifa_name = 0x14474c4 > >> "{B8B51884-C69A-4592-B65D-89ABB3DCF18D}", ifa_flags = 69635, > >> ifa_addr = 0x14474f0, ifa_netmask = 0x14475f0, ifa_dstaddr = 0x0, ifa_data > >> = 0x0} > > > >:-) > > > >It seems that the (new for Cygwin 1.7) getifaddr() function can return > >interfaces with IFF_BROADCAST & IFF_UP set, but no broadcast address, which > >the X server assumes never happens > > I was going to say that this sounds wrong but I see interfaces on my > linux box which have no broadcast addresses but still have IFF_BROADCAST > set. > > Corinna, what do you think? Thanks for nudging me by PM. I didn't notice this question, sorry. As for the broadcast address, you *have* to expect that an interface is broadcast capable and the ifa_broadaddr pointer is NULL. This is at least true for all IPv6 entries. For IPv4 that shouldn't occur under Cygwin. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin AT cygwin DOT com Red Hat -- 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 Jul 1 18:46:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 01 Jul 2009 18:46:00 -0000 Subject: Question for Corinna (was Re: Novice Question) In-Reply-To: <20090701154250.GF30864@calimero.vinschen.de> References: <4A47AE0C.2020406@dronecode.org.uk> <4a47c674.29578c0a.7016.4a66@mx.google.com> <4A47D354.6060704@dronecode.org.uk> <4a488ba9.1f538c0a.1d28.ffff917c@mx.google.com> <4A48A0D8.4090300@dronecode.org.uk> <20090629145050.GF19123@ednor.casa.cgf.cx> <20090701154250.GF30864@calimero.vinschen.de> Message-ID: <4A4BAF04.4080409@dronecode.org.uk> On 01/07/2009 16:42, Corinna Vinschen wrote: > On Jun 29 10:50, Christopher Faylor wrote: >> On Mon, Jun 29, 2009 at 12:09:12PM +0100, Jon TURNEY wrote: >>> Andy wrote: >>>> /opt/wip/cygport-svn/xorg-server/xorg-server-1.6.0-10/src/xorg-server-1.6.0/ >>>> os/access.c >>>> (gdb) p *ifr >>>> $1 = {ifa_next = 0x1447798, ifa_name = 0x14474c4 >>>> "{B8B51884-C69A-4592-B65D-89ABB3DCF18D}", ifa_flags = 69635, >>>> ifa_addr = 0x14474f0, ifa_netmask = 0x14475f0, ifa_dstaddr = 0x0, ifa_data >>>> = 0x0} >>> :-) >>> >>> It seems that the (new for Cygwin 1.7) getifaddr() function can return >>> interfaces with IFF_BROADCAST& IFF_UP set, but no broadcast address, which >>> the X server assumes never happens >> I was going to say that this sounds wrong but I see interfaces on my >> linux box which have no broadcast addresses but still have IFF_BROADCAST >> set. >> >> Corinna, what do you think? > > Thanks for nudging me by PM. I didn't notice this question, sorry. > > As for the broadcast address, you *have* to expect that an interface > is broadcast capable and the ifa_broadaddr pointer is NULL. This > is at least true for all IPv6 entries. For IPv4 that shouldn't occur > under Cygwin. The code in question (before I patched it) looks like this: #if defined(IPv6) && defined(AF_INET6) if (family == FamilyInternet6) /* IPv6 doesn't support broadcasting, so we drop out here */ continue; #endif if ((ifr->ifa_flags & IFF_BROADCAST) && (ifr->ifa_flags & IFF_UP)) broad_addr = *ifr->ifa_broadaddr; else continue; XdmcpRegisterBroadcastAddress((struct sockaddr_in *) &broad_addr); Staring at the code a bit, I think this means we have either an IPv4 interface, or an IPv6 interface with a mapped IPv4 address when the broadcast address is looked at. -- 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 corinna-cygwin@cygwin.com Wed Jul 1 19:24:00 2009 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Wed, 01 Jul 2009 19:24:00 -0000 Subject: Question for Corinna (was Re: Novice Question) In-Reply-To: <4A4BAF04.4080409@dronecode.org.uk> References: <4A47AE0C.2020406@dronecode.org.uk> <4a47c674.29578c0a.7016.4a66@mx.google.com> <4A47D354.6060704@dronecode.org.uk> <4a488ba9.1f538c0a.1d28.ffff917c@mx.google.com> <4A48A0D8.4090300@dronecode.org.uk> <20090629145050.GF19123@ednor.casa.cgf.cx> <20090701154250.GF30864@calimero.vinschen.de> <4A4BAF04.4080409@dronecode.org.uk> Message-ID: <20090701192404.GA2266@calimero.vinschen.de> On Jul 1 19:46, Jon TURNEY wrote: > On 01/07/2009 16:42, Corinna Vinschen wrote: >>> On Mon, Jun 29, 2009 at 12:09:12PM +0100, Jon TURNEY wrote: >>>> It seems that the (new for Cygwin 1.7) getifaddr() function can return >>>> interfaces with IFF_BROADCAST& IFF_UP set, but no broadcast address, which >>>> the X server assumes never happens >> [...] >> As for the broadcast address, you *have* to expect that an interface >> is broadcast capable and the ifa_broadaddr pointer is NULL. This >> is at least true for all IPv6 entries. For IPv4 that shouldn't occur >> under Cygwin. > > The code in question (before I patched it) looks like this: > > #if defined(IPv6) && defined(AF_INET6) > if (family == FamilyInternet6) > /* IPv6 doesn't support broadcasting, so we drop out here */ > continue; > #endif > if ((ifr->ifa_flags & IFF_BROADCAST) && > (ifr->ifa_flags & IFF_UP)) > broad_addr = *ifr->ifa_broadaddr; > else > continue; > XdmcpRegisterBroadcastAddress((struct sockaddr_in *) > &broad_addr); > > Staring at the code a bit, I think this means we have either an IPv4 > interface, or an IPv6 interface with a mapped IPv4 address when the > broadcast address is looked at. A v4inv6 address would also not have a broadcast info since it's still a v6 address. For real v4 addresses the broadcast address is not provided by Windows, but computed from address and netmask by Cygwin, so it's always available. However, without the actual interface data I can't tell. Maybe an `ipconfig /all' sheds some light on this. Oh, wait. Andy, please build and run the below test app under 1.7 with $ gcc -o getifaddrs getifaddrs.c $ ./getifaddrs and paste the output into your reply, together with the `ipconfig /all' output. Thanks, Corinna === START getifaddrs.c === #include #include #include #include #include #include #include #define mk_addr(a) ((a) ? inet_ntop (AF_INET, &((struct sockaddr_in *) (a))->sin_addr, buf, 256) : "") #define mk_addr6(a) ((a) ? inet_ntop (AF_INET6, &((struct sockaddr_in6 *) (a))->sin6_addr, buf, 256) : "") int main () { struct ifaddrs *ifs, *ifp; char buf[256]; if (getifaddrs (&ifs)) { perror ("getifaddrs: "); return 1; } for (ifp = ifs; ifp; ifp = ifp->ifa_next) { if (ifp->ifa_addr->sa_family != AF_INET && ifp->ifa_addr->sa_family != AF_INET6) continue; printf ("Name : %s\n", ifp->ifa_name); printf ("Flags: %x\n", ifp->ifa_flags); switch (ifp->ifa_addr->sa_family) { case AF_INET: printf ("Addr : %s\n", mk_addr (ifp->ifa_addr)); printf ("Mask : %s\n", mk_addr (ifp->ifa_netmask)); if (ifp->ifa_flags & IFF_POINTOPOINT) printf ("Dest : %s\n", mk_addr (ifp->ifa_dstaddr)); else printf ("Bcast: %s\n", mk_addr (ifp->ifa_broadaddr)); break; case AF_INET6: printf ("Addr : %s\n", mk_addr6 (ifp->ifa_addr)); printf ("Mask : %s\n", mk_addr6 (ifp->ifa_netmask)); if (ifp->ifa_flags & IFF_POINTOPOINT) printf ("Dest : %s\n", mk_addr6 (ifp->ifa_dstaddr)); else printf ("Bcast: %s\n", mk_addr6 (ifp->ifa_broadaddr)); break; } putchar ('\n'); } freeifaddrs (ifs); } === END getifaddrs.c === -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin AT cygwin DOT com Red Hat -- 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 Peter@psdt.com Thu Jul 2 04:48:00 2009 From: Peter@psdt.com (Peter Scott) Date: Thu, 02 Jul 2009 04:48:00 -0000 Subject: Mouse chording question Message-ID: Hello. I would like to migrate from eXceed to Cygwin for the performance improvement, but there is a feature I currently have that I have not figured out in Cygwin yet. I want MB1+MB3 to generate paste (as in MB2). Bear with me. I have a Logitech 3-button mouse on Windows XP and the Logitech Windows software that maps MB2 to double click - this happens for XP windows and X windows alike. So in order to paste with the mouse in the X windows, I tell eXceed to map the MB1+MB3 chord to MB2. This works; I can paste with that chord. But I have not been able to do this with Cygwin yet. I tried -emulate3buttons with and without a timeout argument, and it has no effect (tried all combinations of mouse buttons). If I turn off the Logitech MB2 mapping to double click, then MB2 pastes, but that won't do. This may seem like a small thing, but my fingers are used to these patterns and I use them many hundreds of times a day. Shift+Insert does paste in Cygwin, but I don't want to use keyboard only for paste - in a pinch I might be relearn to do with Shift+MB1 or Ctrl+MB3 for paste, say. Should I be looking more closely at xmodmap? Any suggestions? -- 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 Thu Jul 2 06:51:00 2009 From: Phil.Betts@ascribe.com (Phil Betts) Date: Thu, 02 Jul 2009 06:51:00 -0000 Subject: Mouse chording question In-Reply-To: References: Message-ID: <5E25AF06EFB9EA4A87C19BC98F5C875303C10F67@core-email.int.ascribe.com> Peter Scott wrote: > Hello. I would like to migrate from eXceed to Cygwin for the > performance improvement, but there is a feature I currently have that > I have not figured out in Cygwin yet. I want MB1+MB3 to generate > paste (as in MB2). You need the -emulate3buttons option for XWin (exactly how you set it depends on how you start XWin) 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 jon.turney@dronecode.org.uk Thu Jul 2 10:42:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 02 Jul 2009 10:42:00 -0000 Subject: Mouse chording question In-Reply-To: References: Message-ID: <4A4C8F19.4060406@dronecode.org.uk> On 02/07/2009 05:50, Peter Scott wrote: > Hello. I would like to migrate from eXceed to Cygwin for the > performance improvement, What performance improvement? The performance/price ratio is infinitely better, ofc :-) > but there is a feature I currently have that I > have not figured out in Cygwin yet. I want MB1+MB3 to generate paste (as > in MB2). > > Bear with me. I have a Logitech 3-button mouse on Windows XP and the > Logitech Windows software that maps MB2 to double click - this happens > for XP windows and X windows alike. So in order to paste with the mouse > in the X windows, I tell eXceed to map the MB1+MB3 chord to MB2. This > works; I can paste with that chord. > > But I have not been able to do this with Cygwin yet. I tried > -emulate3buttons with and without a timeout argument, and it has no > effect (tried all combinations of mouse buttons). If I turn off the > Logitech MB2 mapping to double click, then MB2 pastes, but that won't do. The -emulate3buttons option should be doing precisely what you want; it emulates a middle-mouse button press when the left and right mouse buttons are pressed 'near simultaneously' (i.e. within the timeout specified). This works for me. How are you supplying -emulate3buttons to the server? Remember you will need -clipboard as well if you are trying to paste something copied from a Windows window The other possibility is perhaps that the Logitech mouse software you have installed is somehow interfering with the timing of mouse events to prevent -emulate3buttons working, although I can't quite imagine how. -- 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 kicko@kicko.sk Thu Jul 2 12:54:00 2009 From: kicko@kicko.sk (Martin Kicko) Date: Thu, 02 Jul 2009 12:54:00 -0000 Subject: Donate for text link Message-ID: <05ECF5E107020E3606AD00D01A@Kicko-Dell> Hi Cygwin, Thank you for great OSS project. I would like to make donation for you. Could you please place my text link on your homepage (http://www.cygwin.com/). It would link to my software downloads website, anchor text "Software Download". Please let me know. Regards, Martin -- 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 Peter@PSDT.com Thu Jul 2 14:59:00 2009 From: Peter@PSDT.com (Peter Scott) Date: Thu, 02 Jul 2009 14:59:00 -0000 Subject: Mouse chording question In-Reply-To: <4A4C8F19.4060406@dronecode.org.uk> References: <4A4C8F19.4060406@dronecode.org.uk> Message-ID: <6.2.3.4.2.20090702071740.04143eb0@mail.webquarry.com> At 03:42 AM 7/2/2009, Jon TURNEY wrote: >On 02/07/2009 05:50, Peter Scott wrote: >>Hello. I would like to migrate from eXceed to Cygwin for the >>performance improvement, > >What performance improvement? > >The performance/price ratio is infinitely better, ofc :-) Good point :) eXceed is remarkably slow at drawing certain windows and menus in some applications I use, even after tuning saveunders and backing store. Unfortunately one of them is eclipse. I suspect it has something to do with pixmaps. Cygwin is fast. I tried Xming but it crashes on some apps. >The -emulate3buttons option should be doing precisely what you want; >it emulates a middle-mouse button press when the left and right mouse >buttons are pressed 'near simultaneously' (i.e. within the timeout specified). > >This works for me. I believe you... I am used to giving my users that answer :) And it seems the role reversal is complete... because now (after a reboot) it works for me, too. Investigation reveals a case of RTFM deficiency. After each server option edit I exited the xterm that came up from the server start script and figured the server went away too (this is common in some X configurations, and my systray was shrunk without the X icon showing). So subsequent server restarts weren't taking because the first server invocation was still running. Problem solved. Sorry to bother you. -- Peter Scott Pacific Systems Design Technologies http://www.perldebugged.com/ http://www.perlmedic.com/ http://www.informit.com/store/product.aspx?isbn=0137001274 -- 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 tye.zdrojewski@lmco.com Thu Jul 2 18:10:00 2009 From: tye.zdrojewski@lmco.com (Zdrojewski, Tye) Date: Thu, 02 Jul 2009 18:10:00 -0000 Subject: XWin freezes on xkbcomp Message-ID: <55759A3B7FA44342AD43B6832DDB310711CFD2BA@EMSS04M23.us.lmco.com> After recently reinstalling cygwin, XWin freezes when I try to run it. There are two XWin processes running when it is frozen. When the XWin process with the smaller memory footprint was killed, the following went into the log, and it appeared to unfreeze for a moment. (EE) XKB: Could not invoke xkbcomp (EE) XKB: Couldn't compile keymap (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap I started XWin with the -kb option, which stopped the freezing, but I don't use the standard US keyboard, so this isn't really on option for me. I also notice that /etc/X11/xkb/ is not there, along with several other directories that ARE there on another PC with a working cygwin install: $ ls /etc/X11 app-defaults/ system.XWinrc* xinit/ Seems like there ought to be more there, because this is what that dir looks like on the working install: app-defaults/ fs/ lbxproxy/ proxymngr/ rstart/ twm/ xdm/ xinit/ xkb/ xserver/ xsm/ I've gotten the same results installing just "xinit" and installing EVERYTHING under the X category. This seems like a BIG problem. Hopefully this is something already being worked on or already fixed. Please let me know if I'm missing a step, but I'm installing as I've always done. Regards, Tye Cygcheck output: =============== Cygwin Configuration Diagnostics Current System Time: Thu Jul 02 13:53:45 2009 Windows XP Professional Ver 5.1 Build 2600 Service Pack 3 Path: . \cygwin\bin . \cygwin\bin c:\perl\bin\ C:\WINDOWS\system32 C:\WINDOWS C:\WINDOWS\system32\wbem c:\Program Files\Common Files\Roxio Shared\DLLShared\ "C:\Program Files\Hummingbird\Connectivity\7.00\Accessories\" c:\Program Files\Microsoft SQL Server\90\Tools\binn\ C:\Program Files\Rational\common C:\Program Files\CA\SC\CAWIN C:\Program Files\Rational\ClearCase\bin C:\Program Files\QuickTime\QTSystem\ c:\cygwin\bin c:\cygwin\usr\bin c:\cygwin\usr\X11R6\bin C:\Sun\SDK\bin C:\Sun\SDK\imq\lib c:/Sun/SDK/javadb/bin Output from C:\cygwin\bin\id.exe (nontsec) UID: 305364(TZDROJEW) GID: 10545(mkgroup-l-d) 0(root) 544(Administrators) 556(Network Configuration Operators) 547(Power Users) 545(Users) 10545(mkgroup-l-d) Output from C:\cygwin\bin\id.exe (ntsec) UID: 305364(TZDROJEW) GID: 10545(mkgroup-l-d) 0(root) 544(Administrators) 556(Network Configuration Operators) 547(Power Users) 545(Users) 10545(mkgroup-l-d) SysDir: C:\WINDOWS\system32 WinDir: C:\WINDOWS PWD = '/w' HOME = '/home/tzdrojew' HOMEPATH = '\' APPDATA = 'C:\Documents and Settings\tzdrojew\Application Data' X_BOOTBUS = 'IDE' IBM_JAVA_HOME = 'C:\Program Files\Rational\common\java\jre\bin' ENVSDK_REGKEY = '8.0;7.0' TERM = 'cygwin' ROXIOCENTRAL = 'c:\Program Files\Common Files\Roxio Shared\9.0\Roxio Central33\' PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 14 Stepping 8, GenuineIntel' WINDIR = 'C:\WINDOWS' VS80COMNTOOLS = 'C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\' DERBY_HOME = 'c:/Sun/SDK/javadb' X_CPUFAM = 'Intel(R) Pentium(R) M processor 1600MHz' TISDIR = 'C:\Program Files\Rational\common' X_MANUFACT = 'Dell' X_BIOSVER = 'A16' USERDOMAIN = 'ACCT04' X_MODEL = 'D600' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\Documents and Settings\All Users' X_SPEED = '1594' X_DETECTEDMODEL = 'D620' DEVMGR_SHOW_NONPRESENT_DEVICES = '1' TEMP = '/c/DOCUME~1/tzdrojew/LOCALS~1/Temp' DEFLOGDIR = 'C:\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' IBMLDAP_ALTHOME = 'C:\Program Files\Rational\common\codeset' COM.ADOBE.VERSIONCUE.CLIENT.APPNAME = 'AdobeDrive' !W: = 'W:\' QTJAVA = 'C:\Program Files\Java\jre1.5.0_18\lib\ext\QTJava.zip' USERNAME = 'TZDROJEW' PROCESSOR_LEVEL = '6' X_SNUM = '7VMJZ21' X_LOB = 'Latitude' MODEL = 'Dx20' JAVA_HOME_SDK = 'c:/Sun/SDK/jdk' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' JAVA_HOME = 'C:\Program Files\Java\jre6' CYGWIN_ROOT = '\cygwin' USERPROFILE = 'C:\Documents and Settings\tzdrojew' LOGONSERVER = '\\A04DC97' CLEARCASE_PRIMARY_GROUP = 'mtn.tools.cc.tpsx' PROCESSOR_ARCHITECTURE = 'x86' LM_LICENSE_FILE = '10000@lic1vspa,10000@lic2vspa,10000@lic3vspa;' SYSTYPE = 'PORTABLE' SHLVL = '1' JRE150LOC = 'C:\Program Files\Java\jre1.5.0_18\' USERDNSDOMAIN = 'ACCT04.US.LMCO.COM' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' HOMEDRIVE = 'H:' PROMPT = '$P$G' COMSPEC = 'C:\WINDOWS\system32\cmd.exe' TMP = '/c/DOCUME~1/tzdrojew/LOCALS~1/Temp' SYSTEMROOT = 'C:\WINDOWS' PROCESSOR_REVISION = '0e08' CLASSPATH = '.;C:\Program Files\Rational\ClearQuest\cqjni.jar;C:\Program Files\Java\jre1.5.0_18\lib\ext\QTJava.zip' RUN = '\cygwin\bin\run -p /usr/bin' TYPE = 'Notebook' PROGRAMFILES = 'C:\Program Files' DRVDIR = 'C:\DRV' HOMESHARE = '\\syrsrv06\tzdrojew$' DISPLAY = '127.0.0.1:0.0' NUMBER_OF_PROCESSORS = '2' COM.ADOBE.VERSIONCUE.CLIENT.APPVERSION = '1.0.0' COM.ADOBE.VERSIONCUE.CLIENT.APPLOCALE = 'en_US' VSEDEFLOGDIR = 'C:\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection' SESSIONNAME = 'Console' COMPUTERNAME = 'SYRLXGF4CGY' !EXITCODE = '00000000' _ = '/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 (default) = '/' cygdrive flags = 0x00000022 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 flags = 0x0000002a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = 'C:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = 'C:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = 'C:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options c: hd NTFS 114470Mb 25% CP CS UN PA FC d: cd UDF 693Mb 100% CS UN Trance20081003 h: net NTFS 511871Mb 91% CP CS UN PA FC SYR-VOL-01 m: net MVFS 80000Mb 38% CP CS CCase u: net NTFS 358400Mb 89% CP CS PA tzdrojew v: net MVFS 80000Mb 38% CP CS CCase w: hd NTFS 114470Mb 25% CP CS UN PA FC x: net NTFS 543487Mb 87% CP CS UN PA FC SYR-VOL-07 . / user binmode,cygdrive C:\cygwin / system binmode C:\cygwin/bin /usr/bin system binmode C:\cygwin/lib /usr/lib system binmode . / system binmode,cygdrive Found: c:\cygwin\bin\awk.exe Found: c:\cygwin\bin\bash.exe Found: c:\cygwin\bin\cat.exe Found: c:\cygwin\bin\cp.exe Not Found: cpp (good!) Not Found: crontab Found: c:\cygwin\bin\find.exe Not Found: gcc Not Found: gdb Found: c:\cygwin\bin\grep.exe Found: c:\cygwin\bin\kill.exe Not Found: ld Found: c:\cygwin\bin\ls.exe Not Found: make Found: c:\cygwin\bin\mv.exe Not Found: patch Found: c:\perl\bin\perl.exe Found: c:\cygwin\bin\perl.exe Warning: c:\perl\bin\perl.exe hides c:\cygwin\bin\perl.exe Found: c:\cygwin\bin\rm.exe Found: c:\cygwin\bin\sed.exe Not Found: ssh Found: c:\cygwin\bin\sh.exe Found: c:\cygwin\bin\tar.exe Found: c:\cygwin\bin\test.exe Not Found: vi Not Found: vim 61k 2009/03/02 c:\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 7k 2003/10/19 c:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 c:\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 943k 2007/12/17 c:\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 1296k 2007/12/17 c:\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 118k 2008/05/09 c:\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 161k 2008/06/01 c:\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 c:\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 c:\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 c:\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 430k 2009/01/28 c:\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 42k 2009/03/12 c:\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 19k 2009/02/26 c:\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 8k 2009/02/26 c:\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 2297k 2008/10/29 c:\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 24k 2009/06/23 c:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 72k 2008/10/26 c:\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 c:\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 c:\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 37k 2003/08/10 c:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 c:\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 c:\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 21k 2009/03/01 c:\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 c:\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 66k 2009/03/01 c:\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 c:\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 c:\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 c:\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 11k 2009/03/01 c:\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 c:\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 181k 2008/09/07 c:\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 c:\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 c:\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 c:\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 273k 2008/10/23 c:\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 22k 2002/06/09 c:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/9 1:45 155k 2009/06/23 c:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2009/6/23 8:20 26k 2008/10/26 c:\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 232k 2009/03/25 c:\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 66k 2009/03/27 c:\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 885k 2009/01/29 c:\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 8k 2008/10/24 c:\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 351k 2008/11/21 c:\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 77k 2009/02/09 c:\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 5k 2009/02/09 c:\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 16k 2008/10/24 c:\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 49k 2008/10/26 c:\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 62k 2008/10/26 c:\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 121k 2008/11/04 c:\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 74k 2008/10/26 c:\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 c:\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 53k 2008/10/26 c:\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 31k 2008/10/26 c:\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 281k 2008/10/26 c:\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 65k 2009/03/02 c:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 1829k 2008/06/12 c:\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 Can't find the cygrunsrv utility, skipping services check. Cygwin Package Information Last downloaded files to: X:\Working\Zdrojewski\software\cygwin Last downloaded files from: http://mirrors.kernel.org/sourceware/cygwin/ Package Version _update-info-dir 00826-1 alternatives 1.3.30c-3 ash 20040127-4 base-files 3.7-1 base-passwd 2.2-1 bash 3.2.49-22 bzip2 1.0.5-3 coreutils 6.10-2 crypt 1.1-1 cygutils 1.3.4-1 cygwin 1.5.25-15 cygwin-doc 1.4-4 diffutils 2.8.7-1 e2fsprogs 1.35-3 editrights 1.01-2 expat 2.0.1-1 findutils 4.4.0-3 font-adobe-dpi75 1.0.0-1 font-alias 1.0.1-1 font-encodings 1.0.2-1 font-misc-misc 1.0.0-1 fontconfig 2.6.0-1 gawk 3.1.6-1 grep 2.5.3-1 groff 1.19.2-2 gzip 1.3.12-2 less 382-1 libbz2_1 1.0.5-3 libdb4.5 4.5.20.2-2 libexpat1 2.0.1-1 libexpat1-devel 2.0.1-1 libfontconfig1 2.6.0-1 libfontenc1 1.0.4-2 libfreetype26 2.3.8-1 libfreetype6 2.3.8-1 libgcc1 4.3.2-2 libgdbm4 1.8.3-9 libGL1 7.2-2 libICE6 1.0.4-2 libiconv2 1.13-1 libintl2 0.12.1-3 libintl3 0.14.5-1 libintl8 0.17-4 libncurses8 5.5-4 libncurses9 5.7-5 libpcre0 7.8-1 libpixman1_0 0.12.0-1 libpopt0 1.6.4-4 libreadline6 5.2.14-12 libSM6 1.1.0-1 libX11_6 1.1.5-2 libXau6 1.0.4-1 libXaw7 1.0.5-1 libxcb-xlib0 1.1-3 libxcb1 1.1-3 libXdmcp6 1.0.2-3 libXext6 1.0.4-1 libXft2 2.1.13-1 libxkbfile1 1.0.5-2 libXmu6 1.0.4-1 libXmuu1 1.0.4-1 libXpm4 3.5.7-2 libXrender1 0.9.4-2 libXt6 1.0.5-2 login 1.10-1 luit 1.0.3-1 man 1.6e-1 mkfontdir 1.0.4-1 mkfontscale 1.0.5-1 openssl 0.9.8k-1 perl 5.10.0-5 rebase 3.0-2 rgb 1.0.3-1 run 1.1.10-1 rxvt 20050409-11 sed 4.1.5-2 tar 1.21-1 termcap 20050421-1 terminfo 5.7_20090228-1 terminfo0 5.5_20061104-2 texinfo 4.13-3 tzcode 2008h-1 util-linux 2.14.1-1 which 2.20-1 xauth 1.0.3-1 xcursor-themes 1.0.1-1 xinit 1.1.1-2 xkbcomp 1.0.5-1 xkeyboard-config 1.4-1 xmodmap 1.0.3-1 xorg-server 1.5.3-7 xrdb 1.0.5-1 xterm 242-1 zlib 1.2.3-3 zlib-devel 1.2.3-3 zlib0 1.2.3-3 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 cgf-use-the-mailinglist-please@cygwin.com Thu Jul 2 18:35:00 2009 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Thu, 02 Jul 2009 18:35:00 -0000 Subject: Donate for text link In-Reply-To: <05ECF5E107020E3606AD00D01A@Kicko-Dell> References: <05ECF5E107020E3606AD00D01A@Kicko-Dell> Message-ID: <20090702183454.GK9839@ednor.casa.cgf.cx> On Thu, Jul 02, 2009 at 02:54:05PM +0200, Martin Kicko wrote: >Hi Cygwin, > >Thank you for great OSS project. I would like to make donation for you. >Could you please place my text link on your homepage >(http://www.cygwin.com/). It would link to my software downloads >website, anchor text "Software Download". > >Please let me know. This guy has been sending email to random addresses at sourceware.org. I've blocked his ability to send any further email here. Please don't respond to him. 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 bagleyd@gwyn.tux.org Sat Jul 4 16:49:00 2009 From: bagleyd@gwyn.tux.org (David A Bagley) Date: Sat, 04 Jul 2009 16:49:00 -0000 Subject: Cygwin 1.7 hangs with my .xinitrc Message-ID: Hi I like to start X with a whole bunch of windows instead of creating each time. In Cygwin 1.5 I did this with no problem. In 1.7 this hangs. It hangs in a way where I can't open anything else and have to pull the power to computer. If I comment out all the xterm's it works fine. Anyway, thanks for all your hard work with Cygwin... I use it all the time and would be lost without it. -- Cheers, /X\ David A. Bagley (( X bagleyd@tux.org http://www.tux.org/~bagleyd/ \X/ xlockmore and more -------------- next part -------------- Cygwin Configuration Diagnostics Current System Time: Sat Jul 04 12:30:57 2009 Windows XP Home Edition Ver 5.1 Build 2600 Service Pack 3 Path: .\ C:\cygwin\home\bagleyd\bin C:\Program Files\Java\jdk1.6.0\bin C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin .\ C:\cygwin\home\bagleyd\bin C:\Program Files\Java\jdk1.6.0\bin C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin C:\GTK\bin C:\WINDOWS\system32 C:\PROGRA~1\Borland\CBUILD~1\Bin C:\PROGRA~1\Borland\CBUILD~1\Projects\Bpl C:\WINDOWS\system32 C:\WINDOWS C:\WINDOWS\System32\Wbem C:\Program Files\Common Files\Adaptec Shared\System C:\Program Files\Microsoft SQL Server\80\Tools\Binn\ C:\cygwin\bin C:\Program Files\QuickTime\QTSystem\ C:\WATCOM\BINNT C:\WATCOM\BINW C:\Documents and Settings\bagleyd\My Documents\Borland Studio Projects\Bpl C:\Program Files\jwsdp-1.1\jwsdp-shared\bin C:\cygwin\usr\j2se\bin C:\Program Files\Ant\apache-ant-1.6.3\bin C:\Program Files\Netscape\Netscape\bin C:\Program Files\CVSNT\ C:\eclipse C:\cygwin\lib\lapack Output from C:\cygwin\bin\id.exe (nontsec) UID: 1010(bagleyd) GID: 513(None) 0(root) 544(Administrators) 545(Users) 1014(Debugger Users) 513(None) Output from C:\cygwin\bin\id.exe (ntsec) UID: 1010(bagleyd) GID: 513(None) 0(root) 544(Administrators) 545(Users) 1014(Debugger Users) 513(None) SysDir: C:\WINDOWS\system32 WinDir: C:\WINDOWS USER = 'bagleyd' PWD = '/home/bagleyd' CYGWIN = 'ntsec' HOME = '/home/bagleyd' HOMEPATH = '\Documents and Settings\bagleyd' MANPATH = '/usr/local/man:/usr/share/man:/usr/man:/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man:/usr/ssl/man' APPDATA = 'C:\Documents and Settings\bagleyd\Application Data' HOSTNAME = 'nom' TERM = 'xterm' PROCESSOR_IDENTIFIER = 'x86 Family 15 Model 2 Stepping 4, GenuineIntel' WINDIR = 'C:\WINDOWS' WATCOM = 'C:\WATCOM' FVWM_USERDIR = '/home/bagleyd/.fvwm' HOSTDISPLAY = 'nom:0.0' CVSROOT = '/home/bagleyd/cvsroot' WINDOWID = '12582950' OLDPWD = '/home/bagleyd' USERDOMAIN = 'NOM' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\Documents and Settings\All Users' ANT_HOME = 'C:\Program Files\Ant\apache-ant-1.6.3' CDPATH = '.:..:/home/bagleyd:/home/bagleyd/java:/home/bagleyd/xt:/home/bagleyd/xlock:/home/bagleyd/npc:/home/bagleyd/dbas' XTERM_SHELL = '/bin/bash' VS90COMNTOOLS = 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\' TEMP = '/cygdrive/c/DOCUME~1/bagleyd/LOCALS~1/Temp' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' LIB = 'C:\GTK\LIB;' GTK_BASEPATH = 'C:\GTK' TERMCAP = 'xterm-r6|xterm|xterm X11R6 version:am:km:mi:ms:xn:co#80:it#8:li#24:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:is=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:te=\E[2J\E[?47l\E8:ti=\E7\E[?47h:ue=\E[m:up=\E[A:us=\E[4m:kb=\010:' QTJAVA = 'C:\Program Files\Java\jre1.5.0_07\lib\ext\QTJava.zip' USERNAME = 'bagleyd' PROCESSOR_LEVEL = '15' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' JAVA_HOME = '/cygdrive/c/Program Files/Java/jdk1.6.0' EDITOR = 'vi' USERPROFILE = 'C:\Documents and Settings\bagleyd' CLIENTNAME = 'Console' PS1 = 'bagleyd@nom$ ' LOGONSERVER = '\\NOM' PROCESSOR_ARCHITECTURE = 'x86' !C: = 'C:\cygwin\bin' XTERM_LOCALE = 'C' XTERM_VERSION = 'Cygwin 6.8.99.903(242)' SHLVL = '4' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' HOMEDRIVE = 'C:' PROMPT = '$P$G' COMSPEC = 'C:\WINDOWS\system32\cmd.exe' LOGNAME = 'bagleyd' TMP = '/cygdrive/c/DOCUME~1/bagleyd/LOCALS~1/Temp' SYSTEMROOT = 'C:\WINDOWS' PRINTER = 'Canon Bubble-Jet BJC-2100' CVS_RSH = '/bin/ssh' PROCESSOR_REVISION = '0204' CLASSPATH = '.;C:\Program Files\Java\jre1.5.0_07\lib\ext\QTJava.zip' MOZILLA_HOME = 'C:\Program Files\Netscape\Netscape' FVWM_MODULEDIR = '/usr/lib/fvwm/2.5.21' INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:/usr/local/info:/usr/share/info:/usr/info:' PROGRAMFILES = 'C:\Program Files' DISPLAY = ':0.0' NUMBER_OF_PROCESSORS = '1' INCLUDE = '/cygdrive/c/GTK/INCLUDE;C:/GTK/INCLUDE/GTK-2.0;C:/GTK/INCLUDE/GLIB-2.0;C:/GTK/INCLUDE/PANGO-1.0;C:/GTK/INCLUDE/CAIRO;C:/GTK/INCLUDE/ATK-1.0;C:/GTK/LIB/GTK-2.0/INCLUDE;C:/GTK/LIB/GLIB-2.0/INCLUDE;C:/GTK/INCLUDE/LIBXML2' SESSIONNAME = 'Console' EDPATH = 'C:\WATCOM\EDDAT' COMPUTERNAME = 'NOM' XAUTHORITY = '/home/bagleyd/.Xauthority' _ = '/usr/bin/cygcheck' HKEY_CURRENT_USER\Console\Cygwin (default) = 0x00000007 PopupColors = 0x000000f5 ColorTable00 = 0x00000000 ColorTable01 = 0x00800000 ColorTable02 = 0x00008000 ColorTable03 = 0x00808000 ColorTable04 = 0x00000080 ColorTable05 = 0x00800080 ColorTable06 = 0x00008080 ColorTable07 = 0x00c0c0c0 ColorTable08 = 0x00808080 ColorTable09 = 0x00ff0000 ColorTable10 = 0x0000ff00 ColorTable11 = 0x00ffff00 ColorTable12 = 0x000000ff ColorTable13 = 0x00ff00ff ColorTable14 = 0x0000ffff ColorTable15 = 0x00ffffff InsertMode = 0x00000001 QuickEdit = 0x00000000 FullScreen = 0x00000000 ScreenBufferSize = 0x270f0050 WindowSize = 0x00190050 FontSize = 0x000c0008 FontFamily = 0x00000030 FontWeight = 0x00000190 FaceName = 'Terminal' CursorSize = 0x00000019 HistoryBufferSize = 0x000003e7 NumberOfHistoryBuffers = 0x00000004 HistoryNoDup = 0x00000000 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_CURRENT_USER\Software\Cygwin HKEY_CURRENT_USER\Software\Cygwin\Program Options HKEY_CURRENT_USER\Software\Cygwin\setup HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/ HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/\OpenWithList (default) = 'iexplore.exe' MRUList = 'a' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/gimp2/ HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/gimp2/\OpenWithList (default) = 'iexplore.exe' MRUList = 'a' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/X11/ HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/X11/\OpenWithList (default) = 'iexplore.exe' MRUList = 'a' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/X11/xscreensaver/ HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dk/projects/cygwinports/release/X11/xscreensaver/\OpenWithList (default) = 'iexplore.exe' MRUList = 'a' HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X\Editors (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X\Games (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X\Information (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X\Tools (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-X\Toys (default) = (unsupported type) HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86\Editors HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86\Games HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86\Information HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86\Tools HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu\Programs\Cygwin-XFree86\Toys HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\Cygwin HKEY_CURRENT_USER\Software\TortoiseCVS\Cache\Modules\file://c:/cygwin/home/bagleyd/cvsroot/cvsroot (default) = (unsupported type) HKEY_CURRENT_USER\Software\TortoiseCVS\Cache\Modules\localhost:/cygwin/home/bagleyd/cvsroot/cvsroot (default) = (unsupported type) HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) = '/cygdrive' cygdrive flags = 0x00000022 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = 'C:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = 'C:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = 'C:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/lib/X11/fonts (default) = 'C:\cygwin\usr\X11R6\lib\X11\fonts' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup (default) = 'C:\cygwin' obcaseinsensitive set to 1 a: fd N/A N/A c: hd NTFS 76308Mb 80% CP CS UN PA FC NTFS d: cd N/A N/A e: cd N/A N/A f: hd FAT 31Mb 25% CP UN FAT C:\cygwin / system binary,auto C:\cygwin\usr\X11R6\lib\X11\fonts /usr/X11R6/lib/X11/fonts system binary C:/cygwin/bin /usr/bin system binary C:/cygwin/lib /usr/lib system binary cygdrive prefix /cygdrive user binary,auto Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\awk.exe -> C:\cygwin\bin\gawk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\cpp.exe Found: C:\cygwin\bin\cpp.exe -> C:\cygwin\etc\alternatives\cpp -> C:\cygwin\bin\cpp-4.exe Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\find.exe Found: C:\WINDOWS\system32\find.exe Warning: C:\cygwin\bin\find.exe hides C:\WINDOWS\system32\find.exe Found: C:\WINDOWS\system32\find.exe Warning: C:\cygwin\bin\find.exe hides C:\WINDOWS\system32\find.exe Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gcc.exe Found: C:\cygwin\bin\gcc.exe -> C:\cygwin\etc\alternatives\gcc -> C:\cygwin\bin\gcc-4.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\gdb.exe Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\ls.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\mv.exe Found: C:\cygwin\bin\patch.exe Found: C:\cygwin\bin\patch.exe Found: C:\cygwin\bin\patch.exe Found: C:\cygwin\bin\patch.exe Found: C:\WINDOWS\patch.exe Warning: C:\cygwin\bin\patch.exe hides C:\WINDOWS\patch.exe Found: C:\cygwin\bin\patch.exe Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\ssh.exe Found: C:\cygwin\bin\ssh.exe Found: C:\cygwin\bin\ssh.exe Found: C:\cygwin\bin\ssh.exe Found: C:\cygwin\bin\ssh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\test.exe Found: C:\cygwin\bin\test.exe Found: C:\cygwin\bin\test.exe Found: C:\cygwin\bin\test.exe Found: C:\cygwin\bin\test.exe Found: C:\cygwin\bin\vi Found: C:\cygwin\bin\vi Found: C:\cygwin\bin\vi Found: C:\cygwin\bin\vi Found: C:\cygwin\bin\vi Found: C:\WATCOM\BINNT\vi.exe Warning: C:\cygwin\bin\vi hides C:\WATCOM\BINNT\vi.exe -> C:\cygwin\bin\vim.exe Found: C:\cygwin\bin\vim.exe Found: C:\cygwin\bin\vim.exe Found: C:\cygwin\bin\vim.exe Found: C:\cygwin\bin\vim.exe Found: C:\cygwin\bin\vim.exe 121k 2007/04/06 C:\cygwin\usr\local\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0 "cygesd-0.dll" v0.0 ts=2007/4/6 15:54 84k 2007/04/06 C:\cygwin\usr\local\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-3.dll" v0.0 ts=2007/4/6 8:58 128k 2006/10/31 C:\cygwin\usr\local\bin\cygnetpbm10.dll - os=4.0 img=1.0 sys=4.0 "cygnetpbm10.dll" v0.0 ts=2006/10/31 16:07 80k 2008/11/22 C:\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 C:\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 111k 2009/01/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/1/18 15:33 89k 2009/06/04 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/4 16:54 77k 2008/12/12 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 C:\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 87k 2006/02/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 C:\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 C:\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 C:\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 29k 2009/05/16 C:\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 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 22:11 448k 2009/02/24 C:\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 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 15:05 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 C:\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 251k 2009/04/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2009/4/1 12:24 703k 2007/12/17 C:\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 943k 2007/12/17 C:\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 1036k 2007/12/17 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1296k 2007/12/17 C:\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 12k 2009/01/07 C:\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 C:\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 C:\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 C:\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 55k 2009/01/14 C:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2009/1/14 11:02 118k 2007/04/06 C:\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 C:\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 C:\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 286k 2006/08/06 C:\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 C:\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 C:\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 79k 2007/09/17 C:\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 C:\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 161k 2008/06/01 C:\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 C:\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 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/3/1 1:32 41k 2009/03/27 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/27 1:02 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 C:\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 C:\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 42k 2009/03/12 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58 8k 2009/02/26 C:\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:58 194k 2008/07/04 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:20 77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 6:11 54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 7:03 954k 2009/04/03 C:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/4/2 21:21 218k 2009/04/03 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/4/2 21:29 203k 2009/04/03 C:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/4/2 21:24 651k 2009/03/12 C:\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/12/08 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/12/7 18:59 45k 2008/12/08 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/12/7 20:09 9k 2008/12/08 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/12/7 20:31 28k 2008/09/08 C:\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/12/08 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/12/7 19:00 10k 2009/03/12 C:\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 2297k 2008/10/29 C:\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 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 C:\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 C:\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 447k 2008/10/29 C:\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 C:\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 11k 2008/07/04 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23 14k 2009/06/06 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-4.dll" v0.0 ts=2009/6/6 7:23 156k 2005/11/30 C:\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 571k 2008/09/07 C:\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 26k 2008/09/07 C:\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 36k 2008/09/07 C:\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 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 C:\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 C:\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 5491k 2008/11/27 C:\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 8k 2008/07/04 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:43 528k 2005/10/09 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\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 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 9:25 11k 2007/08/27 C:\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 24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 25k 2009/06/23 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0 "cyghistory7.dll" v0.0 ts=2009/6/23 11:38 337k 2007/09/16 C:\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 C:\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/05/07 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/5/6 20:58 977k 2009/01/01 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/1/1 1:12 10918k 2008/11/10 C:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/11/10 6:06 1246k 2008/11/10 C:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/11/10 5:59 243k 2008/11/10 C:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/11/10 6:06 256k 2008/11/10 C:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/11/10 6:01 70k 2008/11/10 C:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/11/10 6:01 1066k 2008/11/10 C:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/11/10 5:53 136k 2005/08/01 C:\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 C:\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 C:\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 C:\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 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 C:\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/01/01 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2008/12/31 15:59 241k 2008/04/02 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 C:\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 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 22:10 125k 2009/03/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:48 6k 2009/03/12 C:\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 C:\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 C:\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 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/8/14 13:48 39k 2008/09/07 C:\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 173k 2008/03/23 C:\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 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/8/29 7:14 189k 2008/09/07 C:\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 188k 2005/08/29 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/8/29 7:14 201k 2008/09/07 C:\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 5k 2009/06/18 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0 "cyglsa.dll" v0.0 ts=2009/6/18 6:52 9k 2009/06/18 C:\cygwin\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 24k 2008/04/14 C:\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 27k 2009/06/19 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/6/19 16:27 124k 2009/03/15 C:\cygwin\bin\cyglzma-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-0.dll" v0.0 ts=2009/3/15 2:01 124k 2009/06/20 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/6/19 22:49 12k 2009/03/15 C:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 2:16 94k 2009/02/13 C:\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 98k 2009/03/16 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2009/3/16 12:32 395k 2008/04/17 C:\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 C:\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 1709k 2006/11/05 C:\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 1915k 2008/04/17 C:\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 C:\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 C:\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 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31 21k 2009/03/27 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/27 1:01 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 278k 2008/03/23 C:\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 C:\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 C:\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 211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2009/6/6 7:23 269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/6/7 17:10 74k 2008/10/28 C:\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 66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39 334k 2009/03/27 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/27 1:12 237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28 164k 2009/03/27 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/27 0:58 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 103k 2008/09/07 C:\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 C:\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 15k 2007/07/29 C:\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 C:\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 C:\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 217k 2005/08/01 C:\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 C:\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 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 C:\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 C:\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 C:\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 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30 11k 2009/03/27 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/27 1:00 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 7:26 134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 7:28 33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 7:29 36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 7:27 22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 7:29 190k 2009/04/17 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2009/4/17 12:07 7k 2009/04/17 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2009/4/17 12:07 1543k 2008/07/03 C:\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 273k 2008/10/23 C:\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 C:\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 C:\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 C:\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 C:\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 695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0 "cygppl-7.dll" v0.0 ts=2009/4/18 8:44 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0 "cygppl_c-2.dll" v0.0 ts=2009/4/18 8:47 103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 4k 2007/12/18 C:\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 C:\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 18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0 "cygpwl-4.dll" v0.0 ts=2009/4/18 8:44 277k 2008/05/12 C:\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 C:\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 C:\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 155k 2008/11/29 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2008/11/29 9:30 162k 2009/06/23 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0 "cygreadline7.dll" v0.0 ts=2009/6/23 11:38 761k 2008/09/30 C:\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 C:\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/06 C:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/6 12:04 26k 2008/10/26 C:\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 C:\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 C:\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 C:\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 C:\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 116k 2009/04/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2009/3/31 20:11 232k 2009/03/25 C:\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 12:45 8k 2009/03/12 C:\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 493k 2009/03/12 C:\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 229k 2008/12/28 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/27 0:54 312k 2009/03/08 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 18:31 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 18:31 63k 2008/10/28 C:\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 C:\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 41k 2007/03/31 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2007/3/31 17:00 150k 2008/05/14 C:\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 C:\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 C:\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 C:\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 289k 2008/11/26 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 24k 2009/03/29 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:28 885k 2009/01/29 C:\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 8k 2008/10/24 C:\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 250k 2009/03/20 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2009/3/13 0:35 351k 2008/11/21 C:\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 C:\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 C:\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 C:\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 22k 2009/03/20 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/3/12 17:54 11k 2009/03/20 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2009/3/15 1:02 5k 2009/02/09 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2009/3/13 12:41 34k 2008/07/12 C:\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 C:\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 3300k 2009/05/23 C:\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 3:05 3821k 2008/07/19 C:\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 C:\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 49k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2009/3/13 12:39 62k 2008/10/26 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2009/3/13 3:12 8k 2009/03/20 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/3/12 22:07 121k 2009/03/20 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2009/3/12 22:11 1173k 2008/10/28 C:\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 C:\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 C:\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 1082k 2009/01/28 C:\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 C:\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 11k 2009/03/20 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2009/3/13 0:10 26k 2005/10/27 C:\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 C:\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 25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05 31k 2008/10/26 C:\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 200k 2008/08/07 C:\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 2009/03/20 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2009/3/13 0:01 281k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2009/3/13 3:07 65k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 2438k 2009/04/14 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2009/4/14 11:25 Cygwin DLL version info: DLL version: 1.7.0 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 210 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Cygdrive default prefix: Build date: Tue Apr 14 17:25:01 CEST 2009 Shared id: cygwin1S5 80k 2008/11/22 C:\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 C:\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 111k 2009/01/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/1/18 15:33 89k 2009/06/04 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/4 16:54 77k 2008/12/12 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 C:\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 87k 2006/02/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 C:\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 C:\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 C:\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 29k 2009/05/16 C:\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 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 22:11 448k 2009/02/24 C:\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 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 15:05 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 C:\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 251k 2009/04/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2009/4/1 12:24 703k 2007/12/17 C:\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 943k 2007/12/17 C:\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 1036k 2007/12/17 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1296k 2007/12/17 C:\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 12k 2009/01/07 C:\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 C:\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 C:\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 C:\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 55k 2009/01/14 C:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2009/1/14 11:02 118k 2007/04/06 C:\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 C:\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 C:\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 286k 2006/08/06 C:\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 C:\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 C:\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 79k 2007/09/17 C:\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 C:\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 161k 2008/06/01 C:\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 C:\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 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/3/1 1:32 41k 2009/03/27 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/27 1:02 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 C:\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 C:\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 42k 2009/03/12 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58 8k 2009/02/26 C:\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:58 194k 2008/07/04 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:20 77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 6:11 54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 7:03 954k 2009/04/03 C:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/4/2 21:21 218k 2009/04/03 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/4/2 21:29 203k 2009/04/03 C:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/4/2 21:24 651k 2009/03/12 C:\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/12/08 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/12/7 18:59 45k 2008/12/08 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/12/7 20:09 9k 2008/12/08 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/12/7 20:31 28k 2008/09/08 C:\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/12/08 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/12/7 19:00 10k 2009/03/12 C:\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 2297k 2008/10/29 C:\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 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 C:\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 C:\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 447k 2008/10/29 C:\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 C:\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 11k 2008/07/04 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23 14k 2009/06/06 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-4.dll" v0.0 ts=2009/6/6 7:23 156k 2005/11/30 C:\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 571k 2008/09/07 C:\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 26k 2008/09/07 C:\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 36k 2008/09/07 C:\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 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 C:\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 C:\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 5491k 2008/11/27 C:\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 8k 2008/07/04 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:43 528k 2005/10/09 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\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 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 9:25 11k 2007/08/27 C:\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 24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 25k 2009/06/23 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0 "cyghistory7.dll" v0.0 ts=2009/6/23 11:38 337k 2007/09/16 C:\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 C:\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/05/07 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/5/6 20:58 977k 2009/01/01 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/1/1 1:12 10918k 2008/11/10 C:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/11/10 6:06 1246k 2008/11/10 C:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/11/10 5:59 243k 2008/11/10 C:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/11/10 6:06 256k 2008/11/10 C:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/11/10 6:01 70k 2008/11/10 C:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/11/10 6:01 1066k 2008/11/10 C:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/11/10 5:53 136k 2005/08/01 C:\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 C:\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 C:\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 C:\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 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 C:\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/01/01 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2008/12/31 15:59 241k 2008/04/02 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 C:\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 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 22:10 125k 2009/03/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:48 6k 2009/03/12 C:\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 C:\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 C:\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 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/8/14 13:48 39k 2008/09/07 C:\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 173k 2008/03/23 C:\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 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/8/29 7:14 189k 2008/09/07 C:\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 188k 2005/08/29 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/8/29 7:14 201k 2008/09/07 C:\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 5k 2009/06/18 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0 "cyglsa.dll" v0.0 ts=2009/6/18 6:52 9k 2009/06/18 C:\cygwin\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 24k 2008/04/14 C:\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 27k 2009/06/19 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/6/19 16:27 124k 2009/03/15 C:\cygwin\bin\cyglzma-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-0.dll" v0.0 ts=2009/3/15 2:01 124k 2009/06/20 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/6/19 22:49 12k 2009/03/15 C:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 2:16 94k 2009/02/13 C:\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 98k 2009/03/16 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2009/3/16 12:32 395k 2008/04/17 C:\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 C:\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 1709k 2006/11/05 C:\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 1915k 2008/04/17 C:\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 C:\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 C:\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 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31 21k 2009/03/27 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/27 1:01 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 278k 2008/03/23 C:\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 C:\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 C:\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 211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2009/6/6 7:23 269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/6/7 17:10 74k 2008/10/28 C:\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 66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39 334k 2009/03/27 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/27 1:12 237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28 164k 2009/03/27 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/27 0:58 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 103k 2008/09/07 C:\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 C:\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 15k 2007/07/29 C:\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 C:\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 C:\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 217k 2005/08/01 C:\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 C:\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 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 C:\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 C:\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 C:\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 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30 11k 2009/03/27 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/27 1:00 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 7:26 134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 7:28 33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 7:29 36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 7:27 22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 7:29 190k 2009/04/17 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2009/4/17 12:07 7k 2009/04/17 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2009/4/17 12:07 1543k 2008/07/03 C:\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 273k 2008/10/23 C:\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 C:\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 C:\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 C:\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 C:\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 695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0 "cygppl-7.dll" v0.0 ts=2009/4/18 8:44 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0 "cygppl_c-2.dll" v0.0 ts=2009/4/18 8:47 103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 4k 2007/12/18 C:\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 C:\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 18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0 "cygpwl-4.dll" v0.0 ts=2009/4/18 8:44 277k 2008/05/12 C:\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 C:\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 C:\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 155k 2008/11/29 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2008/11/29 9:30 162k 2009/06/23 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0 "cygreadline7.dll" v0.0 ts=2009/6/23 11:38 761k 2008/09/30 C:\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 C:\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/06 C:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/6 12:04 26k 2008/10/26 C:\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 C:\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 C:\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 C:\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 C:\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 116k 2009/04/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2009/3/31 20:11 232k 2009/03/25 C:\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 12:45 8k 2009/03/12 C:\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 493k 2009/03/12 C:\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 229k 2008/12/28 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/27 0:54 312k 2009/03/08 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 18:31 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 18:31 63k 2008/10/28 C:\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 C:\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 41k 2007/03/31 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2007/3/31 17:00 150k 2008/05/14 C:\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 C:\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 C:\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 C:\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 289k 2008/11/26 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 24k 2009/03/29 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:28 885k 2009/01/29 C:\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 8k 2008/10/24 C:\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 250k 2009/03/20 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2009/3/13 0:35 351k 2008/11/21 C:\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 C:\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 C:\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 C:\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 22k 2009/03/20 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/3/12 17:54 11k 2009/03/20 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2009/3/15 1:02 5k 2009/02/09 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2009/3/13 12:41 34k 2008/07/12 C:\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 C:\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 3300k 2009/05/23 C:\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 3:05 3821k 2008/07/19 C:\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 C:\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 49k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2009/3/13 12:39 62k 2008/10/26 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2009/3/13 3:12 8k 2009/03/20 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/3/12 22:07 121k 2009/03/20 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2009/3/12 22:11 1173k 2008/10/28 C:\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 C:\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 C:\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 1082k 2009/01/28 C:\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 C:\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 11k 2009/03/20 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2009/3/13 0:10 26k 2005/10/27 C:\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 C:\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 25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05 31k 2008/10/26 C:\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 200k 2008/08/07 C:\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 2009/03/20 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2009/3/13 0:01 281k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2009/3/13 3:07 65k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 2438k 2009/04/14 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2009/4/14 11:25 Cygwin DLL version info: DLL version: 1.7.0 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 210 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Cygdrive default prefix: Build date: Tue Apr 14 17:25:01 CEST 2009 Shared id: cygwin1S5 121k 2007/04/06 C:\cygwin\usr\local\bin\cygesd-0.dll - os=4.0 img=1.0 sys=4.0 "cygesd-0.dll" v0.0 ts=2007/4/6 15:54 84k 2007/04/06 C:\cygwin\usr\local\bin\cygltdl-3.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-3.dll" v0.0 ts=2007/4/6 8:58 128k 2006/10/31 C:\cygwin\usr\local\bin\cygnetpbm10.dll - os=4.0 img=1.0 sys=4.0 "cygnetpbm10.dll" v0.0 ts=2006/10/31 16:07 80k 2008/11/22 C:\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 C:\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 111k 2009/01/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/1/18 15:33 89k 2009/06/04 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/4 16:54 77k 2008/12/12 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 C:\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 87k 2006/02/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 C:\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 C:\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 C:\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 29k 2009/05/16 C:\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 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 22:11 448k 2009/02/24 C:\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 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 15:05 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 C:\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 251k 2009/04/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2009/4/1 12:24 703k 2007/12/17 C:\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 943k 2007/12/17 C:\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 1036k 2007/12/17 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1296k 2007/12/17 C:\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 12k 2009/01/07 C:\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 C:\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 C:\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 C:\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 55k 2009/01/14 C:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2009/1/14 11:02 118k 2007/04/06 C:\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 C:\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 C:\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 286k 2006/08/06 C:\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 C:\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 C:\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 79k 2007/09/17 C:\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 C:\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 161k 2008/06/01 C:\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 C:\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 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/3/1 1:32 41k 2009/03/27 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/27 1:02 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 C:\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 C:\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 42k 2009/03/12 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58 8k 2009/02/26 C:\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:58 194k 2008/07/04 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:20 77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 6:11 54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 7:03 954k 2009/04/03 C:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/4/2 21:21 218k 2009/04/03 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/4/2 21:29 203k 2009/04/03 C:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/4/2 21:24 651k 2009/03/12 C:\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/12/08 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/12/7 18:59 45k 2008/12/08 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/12/7 20:09 9k 2008/12/08 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/12/7 20:31 28k 2008/09/08 C:\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/12/08 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/12/7 19:00 10k 2009/03/12 C:\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 2297k 2008/10/29 C:\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 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 C:\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 C:\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 447k 2008/10/29 C:\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 C:\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 11k 2008/07/04 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23 14k 2009/06/06 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-4.dll" v0.0 ts=2009/6/6 7:23 156k 2005/11/30 C:\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 571k 2008/09/07 C:\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 26k 2008/09/07 C:\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 36k 2008/09/07 C:\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 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 C:\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 C:\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 5491k 2008/11/27 C:\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 8k 2008/07/04 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:43 528k 2005/10/09 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\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 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 9:25 11k 2007/08/27 C:\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 24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 25k 2009/06/23 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0 "cyghistory7.dll" v0.0 ts=2009/6/23 11:38 337k 2007/09/16 C:\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 C:\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/05/07 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/5/6 20:58 977k 2009/01/01 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/1/1 1:12 10918k 2008/11/10 C:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/11/10 6:06 1246k 2008/11/10 C:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/11/10 5:59 243k 2008/11/10 C:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/11/10 6:06 256k 2008/11/10 C:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/11/10 6:01 70k 2008/11/10 C:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/11/10 6:01 1066k 2008/11/10 C:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/11/10 5:53 136k 2005/08/01 C:\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 C:\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 C:\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 C:\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 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 C:\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/01/01 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2008/12/31 15:59 241k 2008/04/02 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 C:\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 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 22:10 125k 2009/03/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:48 6k 2009/03/12 C:\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 C:\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 C:\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 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/8/14 13:48 39k 2008/09/07 C:\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 173k 2008/03/23 C:\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 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/8/29 7:14 189k 2008/09/07 C:\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 188k 2005/08/29 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/8/29 7:14 201k 2008/09/07 C:\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 5k 2009/06/18 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0 "cyglsa.dll" v0.0 ts=2009/6/18 6:52 9k 2009/06/18 C:\cygwin\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 24k 2008/04/14 C:\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 27k 2009/06/19 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/6/19 16:27 124k 2009/03/15 C:\cygwin\bin\cyglzma-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-0.dll" v0.0 ts=2009/3/15 2:01 124k 2009/06/20 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/6/19 22:49 12k 2009/03/15 C:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 2:16 94k 2009/02/13 C:\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 98k 2009/03/16 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2009/3/16 12:32 395k 2008/04/17 C:\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 C:\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 1709k 2006/11/05 C:\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 1915k 2008/04/17 C:\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 C:\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 C:\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 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31 21k 2009/03/27 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/27 1:01 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 278k 2008/03/23 C:\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 C:\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 C:\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 211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2009/6/6 7:23 269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/6/7 17:10 74k 2008/10/28 C:\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 66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39 334k 2009/03/27 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/27 1:12 237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28 164k 2009/03/27 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/27 0:58 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 103k 2008/09/07 C:\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 C:\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 15k 2007/07/29 C:\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 C:\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 C:\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 217k 2005/08/01 C:\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 C:\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 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 C:\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 C:\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 C:\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 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30 11k 2009/03/27 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/27 1:00 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 7:26 134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 7:28 33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 7:29 36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 7:27 22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 7:29 190k 2009/04/17 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2009/4/17 12:07 7k 2009/04/17 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2009/4/17 12:07 1543k 2008/07/03 C:\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 273k 2008/10/23 C:\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 C:\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 C:\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 C:\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 C:\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 695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0 "cygppl-7.dll" v0.0 ts=2009/4/18 8:44 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0 "cygppl_c-2.dll" v0.0 ts=2009/4/18 8:47 103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 4k 2007/12/18 C:\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 C:\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 18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0 "cygpwl-4.dll" v0.0 ts=2009/4/18 8:44 277k 2008/05/12 C:\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 C:\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 C:\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 155k 2008/11/29 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2008/11/29 9:30 162k 2009/06/23 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0 "cygreadline7.dll" v0.0 ts=2009/6/23 11:38 761k 2008/09/30 C:\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 C:\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/06 C:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/6 12:04 26k 2008/10/26 C:\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 C:\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 C:\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 C:\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 C:\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 116k 2009/04/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2009/3/31 20:11 232k 2009/03/25 C:\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 12:45 8k 2009/03/12 C:\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 493k 2009/03/12 C:\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 229k 2008/12/28 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/27 0:54 312k 2009/03/08 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 18:31 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 18:31 63k 2008/10/28 C:\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 C:\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 41k 2007/03/31 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2007/3/31 17:00 150k 2008/05/14 C:\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 C:\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 C:\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 C:\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 289k 2008/11/26 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 24k 2009/03/29 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:28 885k 2009/01/29 C:\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 8k 2008/10/24 C:\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 250k 2009/03/20 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2009/3/13 0:35 351k 2008/11/21 C:\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 C:\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 C:\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 C:\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 22k 2009/03/20 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/3/12 17:54 11k 2009/03/20 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2009/3/15 1:02 5k 2009/02/09 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2009/3/13 12:41 34k 2008/07/12 C:\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 C:\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 3300k 2009/05/23 C:\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 3:05 3821k 2008/07/19 C:\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 C:\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 49k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2009/3/13 12:39 62k 2008/10/26 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2009/3/13 3:12 8k 2009/03/20 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/3/12 22:07 121k 2009/03/20 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2009/3/12 22:11 1173k 2008/10/28 C:\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 C:\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 C:\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 1082k 2009/01/28 C:\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 C:\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 11k 2009/03/20 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2009/3/13 0:10 26k 2005/10/27 C:\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 C:\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 25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05 31k 2008/10/26 C:\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 200k 2008/08/07 C:\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 2009/03/20 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2009/3/13 0:01 281k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2009/3/13 3:07 65k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 2438k 2009/04/14 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2009/4/14 11:25 Cygwin DLL version info: DLL version: 1.7.0 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 210 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Cygdrive default prefix: Build date: Tue Apr 14 17:25:01 CEST 2009 Shared id: cygwin1S5 80k 2008/11/22 C:\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 C:\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 111k 2009/01/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/1/18 15:33 89k 2009/06/04 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/4 16:54 77k 2008/12/12 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 C:\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 87k 2006/02/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 C:\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 C:\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 C:\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 29k 2009/05/16 C:\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 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 22:11 448k 2009/02/24 C:\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 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 15:05 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 C:\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 251k 2009/04/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2009/4/1 12:24 703k 2007/12/17 C:\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 943k 2007/12/17 C:\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 1036k 2007/12/17 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1296k 2007/12/17 C:\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 12k 2009/01/07 C:\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 C:\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 C:\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 C:\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 55k 2009/01/14 C:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2009/1/14 11:02 118k 2007/04/06 C:\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 C:\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 C:\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 286k 2006/08/06 C:\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 C:\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 C:\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 79k 2007/09/17 C:\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 C:\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 161k 2008/06/01 C:\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 C:\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 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/3/1 1:32 41k 2009/03/27 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/27 1:02 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 C:\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 C:\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 42k 2009/03/12 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58 8k 2009/02/26 C:\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:58 194k 2008/07/04 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:20 77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 6:11 54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 7:03 954k 2009/04/03 C:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/4/2 21:21 218k 2009/04/03 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/4/2 21:29 203k 2009/04/03 C:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/4/2 21:24 651k 2009/03/12 C:\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/12/08 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/12/7 18:59 45k 2008/12/08 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/12/7 20:09 9k 2008/12/08 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/12/7 20:31 28k 2008/09/08 C:\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/12/08 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/12/7 19:00 10k 2009/03/12 C:\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 2297k 2008/10/29 C:\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 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 C:\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 C:\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 447k 2008/10/29 C:\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 C:\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 11k 2008/07/04 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23 14k 2009/06/06 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-4.dll" v0.0 ts=2009/6/6 7:23 156k 2005/11/30 C:\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 571k 2008/09/07 C:\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 26k 2008/09/07 C:\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 36k 2008/09/07 C:\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 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 C:\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 C:\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 5491k 2008/11/27 C:\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 8k 2008/07/04 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:43 528k 2005/10/09 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\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 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 9:25 11k 2007/08/27 C:\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 24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 25k 2009/06/23 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0 "cyghistory7.dll" v0.0 ts=2009/6/23 11:38 337k 2007/09/16 C:\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 C:\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/05/07 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/5/6 20:58 977k 2009/01/01 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/1/1 1:12 10918k 2008/11/10 C:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/11/10 6:06 1246k 2008/11/10 C:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/11/10 5:59 243k 2008/11/10 C:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/11/10 6:06 256k 2008/11/10 C:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/11/10 6:01 70k 2008/11/10 C:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/11/10 6:01 1066k 2008/11/10 C:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/11/10 5:53 136k 2005/08/01 C:\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 C:\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 C:\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 C:\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 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 C:\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/01/01 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2008/12/31 15:59 241k 2008/04/02 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 C:\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 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 22:10 125k 2009/03/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:48 6k 2009/03/12 C:\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 C:\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 C:\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 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/8/14 13:48 39k 2008/09/07 C:\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 173k 2008/03/23 C:\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 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/8/29 7:14 189k 2008/09/07 C:\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 188k 2005/08/29 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/8/29 7:14 201k 2008/09/07 C:\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 5k 2009/06/18 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0 "cyglsa.dll" v0.0 ts=2009/6/18 6:52 9k 2009/06/18 C:\cygwin\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 24k 2008/04/14 C:\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 27k 2009/06/19 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/6/19 16:27 124k 2009/03/15 C:\cygwin\bin\cyglzma-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-0.dll" v0.0 ts=2009/3/15 2:01 124k 2009/06/20 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/6/19 22:49 12k 2009/03/15 C:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 2:16 94k 2009/02/13 C:\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 98k 2009/03/16 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2009/3/16 12:32 395k 2008/04/17 C:\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 C:\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 1709k 2006/11/05 C:\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 1915k 2008/04/17 C:\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 C:\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 C:\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 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31 21k 2009/03/27 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/27 1:01 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 278k 2008/03/23 C:\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 C:\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 C:\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 211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2009/6/6 7:23 269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/6/7 17:10 74k 2008/10/28 C:\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 66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39 334k 2009/03/27 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/27 1:12 237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28 164k 2009/03/27 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/27 0:58 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 103k 2008/09/07 C:\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 C:\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 15k 2007/07/29 C:\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 C:\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 C:\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 217k 2005/08/01 C:\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 C:\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 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 C:\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 C:\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 C:\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 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30 11k 2009/03/27 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/27 1:00 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 7:26 134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 7:28 33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 7:29 36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 7:27 22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 7:29 190k 2009/04/17 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2009/4/17 12:07 7k 2009/04/17 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2009/4/17 12:07 1543k 2008/07/03 C:\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 273k 2008/10/23 C:\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 C:\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 C:\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 C:\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 C:\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 695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0 "cygppl-7.dll" v0.0 ts=2009/4/18 8:44 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0 "cygppl_c-2.dll" v0.0 ts=2009/4/18 8:47 103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 4k 2007/12/18 C:\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 C:\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 18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0 "cygpwl-4.dll" v0.0 ts=2009/4/18 8:44 277k 2008/05/12 C:\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 C:\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 C:\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 155k 2008/11/29 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2008/11/29 9:30 162k 2009/06/23 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0 "cygreadline7.dll" v0.0 ts=2009/6/23 11:38 761k 2008/09/30 C:\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 C:\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/06 C:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/6 12:04 26k 2008/10/26 C:\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 C:\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 C:\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 C:\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 C:\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 116k 2009/04/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2009/3/31 20:11 232k 2009/03/25 C:\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 12:45 8k 2009/03/12 C:\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 493k 2009/03/12 C:\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 229k 2008/12/28 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/27 0:54 312k 2009/03/08 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 18:31 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 18:31 63k 2008/10/28 C:\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 C:\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 41k 2007/03/31 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2007/3/31 17:00 150k 2008/05/14 C:\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 C:\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 C:\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 C:\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 289k 2008/11/26 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 24k 2009/03/29 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:28 885k 2009/01/29 C:\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 8k 2008/10/24 C:\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 250k 2009/03/20 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2009/3/13 0:35 351k 2008/11/21 C:\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 C:\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 C:\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 C:\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 22k 2009/03/20 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/3/12 17:54 11k 2009/03/20 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2009/3/15 1:02 5k 2009/02/09 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2009/3/13 12:41 34k 2008/07/12 C:\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 C:\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 3300k 2009/05/23 C:\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 3:05 3821k 2008/07/19 C:\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 C:\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 49k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2009/3/13 12:39 62k 2008/10/26 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2009/3/13 3:12 8k 2009/03/20 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/3/12 22:07 121k 2009/03/20 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2009/3/12 22:11 1173k 2008/10/28 C:\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 C:\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 C:\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 1082k 2009/01/28 C:\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 C:\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 11k 2009/03/20 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2009/3/13 0:10 26k 2005/10/27 C:\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 C:\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 25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05 31k 2008/10/26 C:\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 200k 2008/08/07 C:\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 2009/03/20 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2009/3/13 0:01 281k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2009/3/13 3:07 65k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 2438k 2009/04/14 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2009/4/14 11:25 Cygwin DLL version info: DLL version: 1.7.0 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 210 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Cygdrive default prefix: Build date: Tue Apr 14 17:25:01 CEST 2009 Shared id: cygwin1S5 80k 2008/11/22 C:\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 C:\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 111k 2009/01/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygapr-1-0.dll" v0.0 ts=2009/1/18 15:33 89k 2009/06/04 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0 "cygaprutil-1-0.dll" v0.0 ts=2009/6/4 16:54 77k 2008/12/12 C:\cygwin\bin\cygart_lgpl_2-2.dll - os=4.0 img=1.0 sys=4.0 "cygart_lgpl_2-2.dll" v0.0 ts=2008/12/12 0:31 704k 2007/12/18 C:\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 87k 2006/02/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygatk-1.0-0.dll" v0.0 ts=2006/2/6 16:13 72k 2008/10/26 C:\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 C:\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 C:\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 29k 2009/05/16 C:\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 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2009/3/1 22:11 448k 2009/02/24 C:\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 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0 "cygcharset-1.dll" v0.0 ts=2009/5/30 15:05 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 3:57 1075k 2009/03/25 C:\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 251k 2009/04/01 C:\cygwin\bin\cygcurl-4.dll - os=4.0 img=1.0 sys=4.0 "cygcurl-4.dll" v0.0 ts=2009/4/1 12:24 703k 2007/12/17 C:\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 943k 2007/12/17 C:\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 1036k 2007/12/17 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2007/12/17 6:58 1296k 2007/12/17 C:\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 12k 2009/01/07 C:\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 C:\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 C:\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 C:\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 55k 2009/01/14 C:\cygwin\bin\cygevtlog-0.dll - os=4.0 img=1.0 sys=4.0 "cygevtlog-0.dll" v0.0 ts=2009/1/14 11:02 118k 2007/04/06 C:\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 C:\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 C:\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 286k 2006/08/06 C:\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 C:\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 C:\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 79k 2007/09/17 C:\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 C:\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 161k 2008/06/01 C:\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 C:\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 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2009/3/1 1:32 41k 2009/03/27 C:\cygwin\bin\cygform-9.dll - os=4.0 img=1.0 sys=4.0 "cygform-9.dll" v0.0 ts=2009/3/27 1:02 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 5:25 860k 2008/03/23 C:\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 C:\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 42k 2009/03/12 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 C:\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 19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2009/2/26 2:58 8k 2009/02/26 C:\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:58 194k 2008/07/04 C:\cygwin\bin\cyggdk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-1-2-0.dll" v0.0 ts=2008/7/4 2:19 451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:20 77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 6:11 54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 7:03 954k 2009/04/03 C:\cygwin\bin\cyggettextlib-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextlib-0-17.dll" v0.0 ts=2009/4/2 21:21 218k 2009/04/03 C:\cygwin\bin\cyggettextpo-0.dll - os=4.0 img=1.0 sys=4.0 "cyggettextpo-0.dll" v0.0 ts=2009/4/2 21:29 203k 2009/04/03 C:\cygwin\bin\cyggettextsrc-0-17.dll - os=4.0 img=1.0 sys=4.0 "cyggettextsrc-0-17.dll" v0.0 ts=2009/4/2 21:24 651k 2009/03/12 C:\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/12/08 C:\cygwin\bin\cyggg-1.dll - os=4.0 img=1.0 sys=4.0 "cyggg-1.dll" v0.0 ts=2008/12/7 18:59 45k 2008/12/08 C:\cygwin\bin\cygggi-2.dll - os=4.0 img=1.0 sys=4.0 "cygggi-2.dll" v0.0 ts=2008/12/7 20:09 9k 2008/12/08 C:\cygwin\bin\cygggiwmh-0.dll - os=4.0 img=1.0 sys=4.0 "cygggiwmh-0.dll" v0.0 ts=2008/12/7 20:31 28k 2008/09/08 C:\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/12/08 C:\cygwin\bin\cyggii-1.dll - os=4.0 img=1.0 sys=4.0 "cyggii-1.dll" v0.0 ts=2008/12/7 19:00 10k 2009/03/12 C:\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 2297k 2008/10/29 C:\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 C:\cygwin\bin\cygglade-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglade-2.0-0.dll" v0.0 ts=2005/8/18 14:51 135k 2008/07/04 C:\cygwin\bin\cygglib-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-1-2-0.dll" v0.0 ts=2008/7/3 17:01 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 18:32 148k 2006/10/27 C:\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 C:\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 447k 2008/10/29 C:\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 C:\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 11k 2008/07/04 C:\cygwin\bin\cyggmodule-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-1-2-0.dll" v0.0 ts=2008/7/3 17:19 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 18:36 315k 2009/06/06 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0 "cyggmp-3.dll" v0.0 ts=2009/6/6 7:23 14k 2009/06/06 C:\cygwin\bin\cyggmpxx-4.dll - os=4.0 img=1.0 sys=4.0 "cyggmpxx-4.dll" v0.0 ts=2009/6/6 7:23 156k 2005/11/30 C:\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 571k 2008/09/07 C:\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 26k 2008/09/07 C:\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 36k 2008/09/07 C:\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 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 18:35 23k 2009/03/12 C:\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 C:\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 5491k 2008/11/27 C:\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 8k 2008/07/04 C:\cygwin\bin\cyggthread-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-1-2-0.dll" v0.0 ts=2008/7/3 17:20 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 18:36 1262k 2008/07/04 C:\cygwin\bin\cyggtk-1-2-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-1-2-0.dll" v0.0 ts=2008/7/4 2:53 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 6:43 528k 2005/10/09 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-13-14-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-13-14-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\cygwin\bin\cygguile-srfi-srfi-4-v-1-1.dll - os=4.0 img=1.0 sys=4.0 "cygguile-srfi-srfi-4-v-1-1.dll" v0.0 ts=2005/10/9 9:25 4k 2007/08/27 C:\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 C:\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 C:\cygwin\bin\cygguilereadline-v-12-12.dll - os=4.0 img=1.0 sys=4.0 "cygguilereadline-v-12-12.dll" v0.0 ts=2005/10/9 9:25 11k 2007/08/27 C:\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 24k 2009/06/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2009/6/23 8:20 25k 2009/06/23 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0 "cyghistory7.dll" v0.0 ts=2009/6/23 11:38 337k 2007/09/16 C:\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 C:\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/05/07 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2009/5/6 20:58 977k 2009/01/01 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2009/1/1 1:12 10918k 2008/11/10 C:\cygwin\bin\cygicudata38.dll - os=4.0 img=1.0 sys=4.0 "cygicudata38.dll" v0.0 ts=2008/11/10 6:06 1246k 2008/11/10 C:\cygwin\bin\cygicui18n38.dll - os=4.0 img=1.0 sys=4.0 "cygicui18n38.dll" v0.0 ts=2008/11/10 5:59 243k 2008/11/10 C:\cygwin\bin\cygicuio38.dll - os=4.0 img=1.0 sys=4.0 "cygicuio38.dll" v0.0 ts=2008/11/10 6:06 256k 2008/11/10 C:\cygwin\bin\cygicule38.dll - os=4.0 img=1.0 sys=4.0 "cygicule38.dll" v0.0 ts=2008/11/10 6:01 70k 2008/11/10 C:\cygwin\bin\cygiculx38.dll - os=4.0 img=1.0 sys=4.0 "cygiculx38.dll" v0.0 ts=2008/11/10 6:01 1066k 2008/11/10 C:\cygwin\bin\cygicuuc38.dll - os=4.0 img=1.0 sys=4.0 "cygicuuc38.dll" v0.0 ts=2008/11/10 5:53 136k 2005/08/01 C:\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 C:\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 C:\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 C:\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 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 17:50 31k 2005/11/20 C:\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/01/01 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2008/12/31 15:59 241k 2008/04/02 C:\cygwin\bin\cygjasper-1-701-1.dll - os=4.0 img=1.0 sys=4.0 "cygjasper-1-701-1.dll" v0.0 ts=2008/4/2 11:19 246k 2008/04/02 C:\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 C:\cygwin\bin\cygjbig-2.dll - os=4.0 img=1.0 sys=4.0 "cygjbig-2.dll" v0.0 ts=2009/3/9 22:10 125k 2009/03/08 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2009/3/7 22:48 6k 2009/03/12 C:\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 C:\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 C:\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 C:\cygwin\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cyglber-2-2-7.dll" v0.0 ts=2005/8/14 13:48 39k 2008/09/07 C:\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 173k 2008/03/23 C:\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 C:\cygwin\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap-2-2-7.dll" v0.0 ts=2005/8/29 7:14 189k 2008/09/07 C:\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 188k 2005/08/29 C:\cygwin\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygldap_r-2-2-7.dll" v0.0 ts=2005/8/29 7:14 201k 2008/09/07 C:\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 5k 2009/06/18 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0 "cyglsa.dll" v0.0 ts=2009/6/18 6:52 9k 2009/06/18 C:\cygwin\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 24k 2008/04/14 C:\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 27k 2009/06/19 C:\cygwin\bin\cygltdl-7.dll - os=4.0 img=1.0 sys=4.0 "cygltdl-7.dll" v0.0 ts=2009/6/19 16:27 124k 2009/03/15 C:\cygwin\bin\cyglzma-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-0.dll" v0.0 ts=2009/3/15 2:01 124k 2009/06/20 C:\cygwin\bin\cyglzma-1.dll - os=4.0 img=1.0 sys=4.0 "cyglzma-1.dll" v0.0 ts=2009/6/19 22:49 12k 2009/03/15 C:\cygwin\bin\cyglzmadec-0.dll - os=4.0 img=1.0 sys=4.0 "cyglzmadec-0.dll" v0.0 ts=2009/3/15 2:16 94k 2009/02/13 C:\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 98k 2009/03/16 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0 "cygmagic-1.dll" v0.0 ts=2009/3/16 12:32 395k 2008/04/17 C:\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 C:\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 1709k 2006/11/05 C:\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 1915k 2008/04/17 C:\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 C:\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 C:\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 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2009/3/1 1:31 21k 2009/03/27 C:\cygwin\bin\cygmenu-9.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-9.dll" v0.0 ts=2009/3/27 1:01 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 5:25 278k 2008/03/23 C:\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 C:\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 C:\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 211k 2009/06/06 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0 "cygmp-3.dll" v0.0 ts=2009/6/6 7:23 269k 2009/06/07 C:\cygwin\bin\cygmpfr-1.dll - os=4.0 img=1.0 sys=4.0 "cygmpfr-1.dll" v0.0 ts=2009/6/7 17:10 74k 2008/10/28 C:\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 66k 2009/03/01 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2009/3/1 1:39 334k 2009/03/27 C:\cygwin\bin\cygncurses++-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-9.dll" v0.0 ts=2009/3/27 1:12 237k 2009/03/01 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2009/3/1 1:28 164k 2009/03/27 C:\cygwin\bin\cygncurses-9.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-9.dll" v0.0 ts=2009/3/27 0:58 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 5:24 103k 2008/09/07 C:\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 C:\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 15k 2007/07/29 C:\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 C:\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 C:\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 217k 2005/08/01 C:\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 C:\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 C:\cygwin\bin\cygORBit-imodule-2-0.dll - os=4.0 img=1.0 sys=4.0 "cygORBit-imodule-2-0.dll" v0.0 ts=2006/4/24 22:30 28k 2005/08/01 C:\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 C:\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 C:\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 1706k 2004/08/02 C:\cygwin\bin\cygosp-4.dll - os=4.0 img=1.0 sys=4.0 "cygosp-4.dll" v0.0 ts=2004/8/2 10:51 326k 2004/08/02 C:\cygwin\bin\cygospgrove-0.dll - os=4.0 img=1.0 sys=4.0 "cygospgrove-0.dll" v0.0 ts=2004/8/2 12:07 1922k 2004/08/02 C:\cygwin\bin\cygostyle-0.dll - os=4.0 img=1.0 sys=4.0 "cygostyle-0.dll" v0.0 ts=2004/8/2 12:07 11k 2009/03/01 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2009/3/1 1:30 11k 2009/03/27 C:\cygwin\bin\cygpanel-9.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-9.dll" v0.0 ts=2009/3/27 1:00 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 5:24 198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 7:26 134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 7:28 33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 7:29 36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 7:27 22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 7:29 190k 2009/04/17 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2009/4/17 12:07 7k 2009/04/17 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2009/4/17 12:07 1543k 2008/07/03 C:\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 273k 2008/10/23 C:\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 C:\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 C:\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 C:\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 C:\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 695k 2009/04/18 C:\cygwin\bin\cygppl-7.dll - os=4.0 img=1.0 sys=4.0 "cygppl-7.dll" v0.0 ts=2009/4/18 8:44 2481k 2009/04/18 C:\cygwin\bin\cygppl_c-2.dll - os=4.0 img=1.0 sys=4.0 "cygppl_c-2.dll" v0.0 ts=2009/4/18 8:47 103k 2009/01/07 C:\cygwin\bin\cygpq.dll - os=4.0 img=1.0 sys=4.0 "cygpq.dll" v0.0 ts=2009/1/7 11:46 4k 2007/12/18 C:\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 C:\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 18k 2009/04/18 C:\cygwin\bin\cygpwl-4.dll - os=4.0 img=1.0 sys=4.0 "cygpwl-4.dll" v0.0 ts=2009/4/18 8:44 277k 2008/05/12 C:\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 C:\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 C:\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 155k 2008/11/29 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2008/11/29 9:30 162k 2009/06/23 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0 "cygreadline7.dll" v0.0 ts=2009/6/23 11:38 761k 2008/09/30 C:\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 C:\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/06 C:\cygwin\bin\cygserf-0-0.dll - os=4.0 img=1.0 sys=4.0 "cygserf-0-0.dll" v0.0 ts=2009/2/6 12:04 26k 2008/10/26 C:\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 C:\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 C:\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 C:\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 C:\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 116k 2009/04/01 C:\cygwin\bin\cygssh2-1.dll - os=4.0 img=1.0 sys=4.0 "cygssh2-1.dll" v0.0 ts=2009/3/31 20:11 232k 2009/03/25 C:\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 12:45 8k 2009/03/12 C:\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 493k 2009/03/12 C:\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 229k 2008/12/28 C:\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 C:\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 C:\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 C:\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 C:\cygwin\bin\cygtic-9.dll - os=4.0 img=1.0 sys=4.0 "cygtic-9.dll" v0.0 ts=2009/3/27 0:54 312k 2009/03/08 C:\cygwin\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiff-5.dll" v0.0 ts=2009/3/8 18:31 282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0 "cygtiff4.dll" v0.0 ts=2003/8/10 22:32 281k 2009/03/08 C:\cygwin\bin\cygtiffxx-5.dll - os=4.0 img=1.0 sys=4.0 "cygtiffxx-5.dll" v0.0 ts=2009/3/8 18:31 63k 2008/10/28 C:\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 C:\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 41k 2007/03/31 C:\cygwin\bin\cygusb0.dll - os=4.0 img=1.0 sys=4.0 "cygusb0.dll" v0.0 ts=2007/3/31 17:00 150k 2008/05/14 C:\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 C:\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 C:\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 C:\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 289k 2008/11/26 C:\cygwin\bin\cygwmf-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmf-0-2-7.dll" v0.0 ts=2008/11/26 10:51 99k 2008/11/26 C:\cygwin\bin\cygwmflite-0-2-7.dll - os=4.0 img=1.0 sys=4.0 "cygwmflite-0-2-7.dll" v0.0 ts=2008/11/26 10:51 24k 2009/03/29 C:\cygwin\bin\cygwrap-0.dll - os=4.0 img=1.0 sys=4.0 "cygwrap-0.dll" v0.0 ts=2009/3/29 2:28 885k 2009/01/29 C:\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 8k 2008/10/24 C:\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 250k 2009/03/20 C:\cygwin\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2009/3/13 0:35 351k 2008/11/21 C:\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 C:\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 C:\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 C:\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 22k 2009/03/20 C:\cygwin\bin\cygxcb-render-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-0.dll" v0.0 ts=2009/3/12 17:54 11k 2009/03/20 C:\cygwin\bin\cygxcb-render-util-0.dll - os=4.0 img=1.0 sys=4.0 "cygxcb-render-util-0.dll" v0.0 ts=2009/3/15 1:02 5k 2009/02/09 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2009/3/13 12:41 34k 2008/07/12 C:\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 C:\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 3300k 2009/05/23 C:\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 3:05 3821k 2008/07/19 C:\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 C:\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 49k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2009/3/13 12:39 62k 2008/10/26 C:\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 30k 2009/03/20 C:\cygwin\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2009/3/13 3:12 8k 2009/03/20 C:\cygwin\bin\cygXinerama-1.dll - os=4.0 img=1.0 sys=4.0 "cygXinerama-1.dll" v0.0 ts=2009/3/12 22:07 121k 2009/03/20 C:\cygwin\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2009/3/12 22:11 1173k 2008/10/28 C:\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 C:\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 C:\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 1082k 2009/01/28 C:\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 C:\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 11k 2009/03/20 C:\cygwin\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2009/3/13 0:10 26k 2005/10/27 C:\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 C:\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 25k 2009/03/20 C:\cygwin\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2009/3/13 3:05 31k 2008/10/26 C:\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 200k 2008/08/07 C:\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 2009/03/20 C:\cygwin\bin\cygXss-1.dll - os=4.0 img=1.0 sys=4.0 "cygXss-1.dll" v0.0 ts=2009/3/13 0:01 281k 2008/10/26 C:\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 2009/03/20 C:\cygwin\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2009/3/13 3:07 65k 2009/03/02 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2009/3/1 20:19 2438k 2009/04/14 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2009/4/14 11:25 Cygwin DLL version info: DLL version: 1.7.0 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 210 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Cygdrive default prefix: Build date: Tue Apr 14 17:25:01 CEST 2009 Shared id: cygwin1S5 399k 2009/03/19 C:\cygwin\lib\lapack\cygblas-0.dll - os=4.0 img=1.0 sys=4.0 "cygblas-0.dll" v0.0 ts=2009/3/19 15:31 578k 2006/03/24 C:\cygwin\lib\lapack\cygblas.dll - os=4.0 img=1.0 sys=4.0 "cygblas.dll" v0.0 ts=2006/3/24 1:30 3721k 2009/03/19 C:\cygwin\lib\lapack\cyglapack-0.dll - os=4.0 img=1.0 sys=4.0 "cyglapack-0.dll" v0.0 ts=2009/3/19 15:46 4887k 2006/03/24 C:\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, Named file. 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 Service : sshd Display name : CYGWIN sshd Current State : Stopped Command : /usr/sbin/sshd -D stdin path : /dev/null stdout path : /var/log/sshd.log stderr path : /var/log/sshd.log Environment : CYGWIN="ntsec" Process Type : Own Process Startup : Automatic Dependencies : tcpip Account : LocalSystem Cygwin Package Information Last downloaded files to: C:\Documents and Settings\bagleyd\Desktop Last downloaded files from: http://mirror.cs.vt.edu/pub/cygwin/cygwin/ Package Version _update-info-dir 00826-1 alternatives 1.3.30c-10 apache2 2.2.6-1 asciidoc 8.4.5-1 ash 20040127-4 aspell 0.60.5-1 aspell-en 6.0.0-1 astyle 1.23-1 atk 1.10.3-1 audiofile 0.2.6-3 autoconf 6-10 autoconf2.1 2.13-10 autoconf2.5 2.63-10 automake 4-10 automake1.10 1.10.2-10 automake1.11 1.11-10 automake1.4 1.4p6-10 automake1.5 1.5-10 automake1.6 1.6.3-11 automake1.7 1.7.9-10 automake1.8 1.8.5-10 automake1.9 1.9.6-10 autossh 1.4b-1 base-cygwin 2.0-1 base-files 3.8-4 base-passwd 3.1-1 bash 3.2.49-22 bash-completion 1.0-1 bashdb 3.1_0.09-1 bc 1.06-2 beforelight 1.0.3-1 binutils 20080624-2 bison 2.3-1 bitmap 1.0.3-2 brltty 4.0-1 bzip2 1.0.5-10 cdda2wav 1.1.7.1-1 cdrkit 1.1.7.1-1 cgoban 1.9.14-6 colordiff 1.0.7-1 colorgcc 1.3.2-1 coreutils 7.0-2 cpio 2.9.90-5 cron 4.1-57 crypt 1.1-1 csih 0.9.0-1 ctags 5.7-1 ctris 0.42-1 curl 7.19.4-1 cygrunsrv 1.34-1 cygutils 1.4.0-1 cygwin 1.7.0-50 cygwin-doc 1.5-1 cygwin-x-doc 1.1.0-1 diffutils 2.8.7-1 docbook-xml412 4.1.2-1 docbook-xsl 1.69.1-1 e2fsprogs 1.35-3 editres 1.0.3-2 editrights 1.01-2 esound 0.2.41-1 eventlog 0.2.9-1 expat 2.0.1-1 expect 20030128-1 file 5.00-3 findutils 4.5.4-1 fixesproto 4.0-1 flac 1.2.1-1 flawfinder 1.27-1 fontconfig 2.6.0-1 fontsproto 2.0.2-1 fortune 1.99.1-2 fvwm 2.5.21-1 gawk 3.1.6-2 gcc-core 3.4.4-999 gcc-g++ 3.4.4-999 gcc-java 3.4.4-999 gcc-mingw-core 20050522-1 gcc-mingw-g++ 20050522-1 gcc-mingw-java 20050522-1 gcc-tools-autoconf 2.59-10 gcc-tools-automake 1.9.6-10 gcc4 4.3.2-2 gcc4-core 4.3.2-2 gcc4-g++ 4.3.2-2 gcc4-java 4.3.2-2 gcc4-runtime 4.3.2-1 gccmakedep 1.0.2-1 GConf2 2.14.0-2 gdb 6.8-2 gettext 0.17-11 ghostscript 8.63-2 ghostscript-fonts-other 6.0-1 ghostscript-fonts-std 8.11-1 glib 1.2.10-4 glib-devel 1.2.10-4 glib2 2.10.3-1 glib2-devel 2.10.3-1 glproto 1.4.9-1 gmp 4.3.1-3 gnubg 0.16-1 gnugo 3.8-2 gnupg 1.4.9-2 grace 5.1.19-1 greed 3.4-1 grep 2.5.3-1 groff 1.19.2-2 gtk+ 1.2.10-3 gtk2-x11 2.6.10-1 gtk2-x11-runtime 2.6.10-1 guile 1.8.2-1 gzip 1.3.12-2 hicolor-icon-theme 0.10-1 icedax 1.1.7.1-1 ico 1.0.2-1 icu 3.8-5 imake 1.0.2-2 indent 2.2.9-2 inetutils 1.5-6 initscripts 0.9-2 inputproto 1.5.1-1 ipc-utils 1.0-1 java-brlapi 4.0-1 jbigkit 2.0-10 jikes 1.22-2 jlint 3.1-1 jpeg 6b-20 kbproto 1.0.3-1 less 429-1 lesstif 0.95.0-2 libaa1 1.4rc5-3 libao 0.8.8-1 libao2 0.8.8-1 libapr1 1.3.3-4 libapr1-devel 1.3.3-4 libaprutil1 1.3.4-4 libaprutil1-devel 1.3.4-4 libart_lgpl_2_2 2.3.20-2 libaspell15 0.60.5-1 libaudio-devel 1.9.1-2 libaudio2 1.9.1-2 libaudiofile-devel 0.2.6-3 libaudiofile0 0.2.6-3 libautotrace3 0.31.1-2 libbrlapi 4.0-1 libbrlapi-devel 4.0-1 libbz2-devel 1.0.5-10 libbz2_1 1.0.5-10 libcairo2 1.8.6-2 libcharset1 1.13-10 libcurl4 7.19.4-1 libdb4.2 4.2.52.5-2 libdb4.2-devel 4.2.52.5-2 libdb4.5 4.5.20.2-2 libecpg-compat2 8.2.11-1 libEMF1 1.0.3-2 libesd-devel 0.2.41-1 libesd0 0.2.41-1 libesound0 0.2.41-1 libexpat0 1.95.8-2 libexpat1 2.0.1-1 libexpat1-devel 2.0.1-1 libfcgi0 2.4.0-2 libffi4 4.3.2-2 libFLAC++6 1.2.1-1 libFLAC8 1.2.1-1 libfontconfig-devel 2.6.0-1 libfontconfig1 2.6.0-1 libfontenc1 1.0.4-10 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 libgcc1 4.3.2-2 libgcj-common 4.3.2-2 libgcj9 4.3.2-2 libgcrypt 1.4.1-4 libgcrypt11 1.4.1-4 libgd-devel 2.0.36RC1-1 libgd2 2.0.36RC1-1 libgdbm-devel 1.8.3-20 libgdbm4 1.8.3-20 libgettextpo0 0.17-11 libgfortran3 4.3.2-2 libggi2 2.2.2-2 libggiwmh0 0.3.2-2 libgif-devel 4.1.6-2 libgif4 4.1.6-2 libgii1 1.0.2-2 libGL-devel 7.2-2 libGL1 7.2-2 libglade2 2.5.1-1 libglitz1 0.5.6-1 libGLU-devel 7.2-2 libGLU1 7.2-2 libglut3 2.4.0-1 libgmp3 4.3.1-3 libgmpxx4 4.3.1-3 libgnomecanvas2 2.12.0-1 libgnutls26 2.4.1-1 libgomp1 4.3.2-2 libgpg-error 1.6-1 libgs8 8.63-2 libguile12 1.6.7-4 libguile17 1.8.2-1 libICE-devel 1.0.5-10 libICE6 1.0.5-10 libiconv 1.13-10 libiconv2 1.13-10 libicu38 3.8-5 libIDL 0.5.17-2 libIDL2 0.8.6-1 libidn11 1.9-1 libImageMagick1 6.4.0.6-1 libintl2 0.12.1-3 libintl3 0.14.5-1 libintl8 0.17-11 libjasper-devel 1.900.1-1 libjasper1 1.900.1-1 libjasper1.701_0 1.701.0-3 libjbig-devel 2.0-10 libjbig2 2.0-10 libjpeg-devel 6b-20 libjpeg62 6b-20 libkpathsea3 2.0.2-15 libkpathsea4 3.0.0-3 liblapack 3.0-9 liblapack0 3.1.1-2 liblcms-devel 1.17-1 liblcms1 1.17-1 libltdl3 1.5.27a-1 libltdl7 2.2.7a-13 liblzma0 4.999.8beta-10 liblzma1 4.999.8beta_20090605-10 liblzmadec0 4.32.7-10 liblzo2_2 2.03-1 libMagick-devel 6.4.0.6-1 libMagick10 6.3.0.1-2 libmcrypt4 2.5.8-1 libming0 0.4.0.beta5-1 libmng1 1.0.10-1 libmpfr1 2.4.1-4 libncurses-devel 5.7-14 libncurses7 5.3-4 libncurses8 5.5-10 libncurses9 5.7-14 libneon27 0.28.3-1 libnetpbm10 10.44.2-1 libogg 1.1.3-1 libogg0 1.1.3-1 libopencdk10 0.6.6-1 libopenldap2_2_7 2.2.26-2 libopenldap2_3_0 2.3.43-1 libpcre0 7.9-1 libpixman1_0 0.14.0-10 libplot2 2.4.1-1 libplotter2 2.4.1-1 libpng12 1.2.35-10 libpng12-devel 1.2.35-10 libpopt0 1.6.4-4 libppl 0.10.2-1 libpq5 8.2.11-1 libpstoedit0 3.45-2 libpthread-stubs 0.1-1 libqhull 2003.1-1 libreadline6 5.2.14-12 libreadline7 6.0.3-1 libsasl2 2.1.19-3 libsasl2-devel 2.1.19-3 libserf0_0 0.3.0-2 libSM-devel 1.1.0-10 libSM6 1.1.0-10 libsmi2 0.4.8-1 libspeex1 1.2rc1-1 libsqlite3_0 3.6.2-1 libssh2_1 1.0-1 libssp0 4.3.2-2 libstdc++6 4.3.2-2 libstdc++6-devel 4.3.2-2 libtasn1_3 1.8-1 libtextcat 2.2-2 libtextcat0 2.2-2 libtiff-devel 3.8.2-10 libtiff4 3.6.0-5 libtiff5 3.8.2-10 libungif-devel 4.1.4-2 libungif4 4.1.4-2 libusb-win32 0.1.12.1-2 libvorbis 1.2.0-2 libvorbis0 1.2.0-2 libvorbisenc2 1.2.0-2 libvorbisfile3 1.2.0-2 libwmf-devel 0.2.8.4-3 libwmf027 0.2.8.4-3 libwrap0 7.6-20 libX11-devel 1.2-10 libX11_6 1.2-10 libXau-devel 1.0.4-10 libXau6 1.0.4-10 libXaw-devel 1.0.5-10 libXaw3d7 1.5D-8 libXaw6 1.0.5-10 libXaw7 1.0.5-10 libXaw8 6.8.99.901-1 libxcb-devel 1.2-10 libxcb-render-util0 0.3.3-10 libxcb-render0 1.2-10 libxcb-xlib-devel 1.1-3 libxcb-xlib0 1.1-3 libxcb1 1.2-10 libXcursor-devel 1.1.9-10 libXcursor1 1.1.9-10 libxdelta2 1.1.4-1 libXdmcp-devel 1.0.2-10 libXdmcp6 1.0.2-10 libxerces-c28 2.8.0-5 libxerces-c30 3.0.1-10 libXext-devel 1.0.5-10 libXext6 1.0.5-10 libXfixes-devel 4.0.3-10 libXfixes3 4.0.3-10 libXft-devel 2.1.13-10 libXft2 2.1.13-10 libXi-devel 1.2.1-10 libXi6 1.2.1-10 libXinerama1 1.0.3-10 libxkbfile1 1.0.5-10 libXm-devel 0.95.0-2 libXm2 0.95.0-2 libXmHTML0 1.1.7-3 libxmi0 2.4.1-1 libxml2 2.7.3-1 libxml2-devel 2.7.3-1 libXmu-devel 1.0.4-10 libXmu6 1.0.4-10 libXmuu1 1.0.4-10 libXp6 6.8.99.901-1 libXpm-devel 3.5.7-10 libXpm4 3.5.7-10 libXrandr-devel 1.3.0-10 libXrandr2 1.3.0-10 libXrender-devel 0.9.4-10 libXrender1 0.9.4-10 libxslt 1.1.24-2 libXss1 1.1.3-10 libXt-devel 1.0.5-10 libXt6 1.0.5-10 libXtst6 1.0.3-10 listres 1.0.1-2 lndir 1.0.1-2 login 1.10-10 luit 1.0.3-1 m4 1.4.13-1 make 3.81-2 makedepend 1.0.1-1 man 1.6e-1 mesa 7.2-2 mingw-bzip2 1.0.5-10 mingw-libbz2-devel 1.0.5-10 mingw-libbz2_1 1.0.5-10 mingw-runtime 3.15.2-1 mingw-zlib 1.2.3-10 mingw-zlib-devel 1.2.3-10 mingw-zlib0 1.2.3-10 minires 1.02-1 nas 1.9.1-2 netpbm 10.44.2-1 ninvaders 0.1.1-1 oclock 1.0.1-1 ogmtools 1.5-1 openjade 1.3.3-1 OpenSP 1.5.1-1 openssh 5.2p1-2 openssl 0.9.8k-2 ORBit 0.5.17-2 ORBit2 2.14.0-1 pango 1.8.1-1 pango-runtime 1.8.1-1 patch 2.5.8-9 perl 5.10.0-5 perl-Error 0.17014-1 perl-Locale-gettext 1.05-3 ping 1.0-1 popt 1.6.4-4 printproto 1.0.4-1 python 2.5.2-1 python-brlapi 4.0-1 qt3 3.3.4-2 randrproto 1.3.0-1 readline 6.0.3-1 rebase 3.0-2 renderproto 0.9.3-1 rgb 1.0.3-1 robots 2.0-4 rsync 3.0.5-1 ruby 1.8.7-p72-2 run 1.1.10-1 sed 4.1.5-2 sharutils 4.7-1 shutdown 1.7-1 speex 1.2rc1-1 sudoku 1.0.1-1 syslog-ng 3.0.1-1 sysvinit 2.86-3 t1lib 5.1.2-3 t1lib5 5.1.2-3 t1libx5 5.1.2-3 tar 1.22-1 tcl-brlapi 4.0-1 tcltk 20080420-1 tcp_wrappers 7.6-20 termcap 20050421-1 terminfo 5.7_20090228-10 terminfo0 5.5_20061104-10 texinfo 4.13-3 transfig 3.2.5-1 twm 1.0.4-1 typespeed 0.6.4-1 tzcode 2008h-1 unzip 5.52-10 upx 3.01-1 util-linux 2.14.1-1 uw-imap 2007-2 vim 7.2.148-1 vorbis-tools 1.2.0-2 w32api 3.13-1 wdiff 0.5-1 wget 1.11.4-4 which 2.20-2 WindowMaker 0.90.0-2 X-start-menu-icons 1.0.4-1 xauth 1.0.3-1 xbitmaps 1.0.1-1 xbrlapi 4.0-1 xcalc 1.0.2-2 xclock 1.0.3-2 xconsole 1.0.3-2 xcursor-themes 1.0.1-1 xdpyinfo 1.0.3-3 xextproto 7.0.5-1 xeyes 1.0.1-1 xinetd 2.3.9-1 xinit 1.1.1-3 xkbcomp 1.0.5-1 xkeyboard-config 1.4-1 xlogo 1.0.1-2 xmag 1.0.2-2 XmHTML 1.1.7-3 xmodmap 1.0.3-1 xorg-cf-files 1.0.2-8 xorg-server 1.6.0-10 xorg-x11-base 7.4-1 xproto 7.0.15-1 xrandr 1.3.0-10 xrdb 1.0.5-1 xsetroot 1.0.2-1 xterm 242-1 xz 4.999.8beta_20090605-10 zip 3.0-10 zlib 1.2.3-10 zlib-devel 1.2.3-10 zlib0 1.2.3-10 Use -h to see help about each section -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: xinitrc.txt 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 info@latangoteca.com.ar Sun Jul 5 00:44:00 2009 From: info@latangoteca.com.ar (El Portal del Tango) Date: Sun, 05 Jul 2009 00:44:00 -0000 Subject: El Catalogo de Tangos Historicos mas completo Message-ID: La Selecci??n de Tangos hist??ricos, mas completa est?? en El Almacen del Tango. Una maravillosa colecci??n de tangos, extra??dos de antiguos discos de pasta de 78 RPM, la mayor??a de los cuales ya son imposibles de obtener. Versiones remasterizadas y con un sonido de gran calidad, por ser material grabado hace tantos a??os. El precio de cada C.D. de 14 temas, es muy accesible, para que Ud. pueda disponer de estas verdaderas joyas de nuestra m??sica, tan apreciada en todo el mundo. A su disposici??n el cat??logo en www.elportaldeltango.com/almacen_de_tango.html Gracias por seguir apoyando nuestra actividad de difusi??n de la cultura rioplatense. www.elportaldeltango.com www.eldiariodeltango.com www.elalmacendeltango.com.ar P./D. : Si a Ud. no le agrada el tango y recibe este mail por error, le suplicamos que nos disculpe; no es nuestra intenci??n molestar a nadie, solo es para difundir nuestra tarea. -- 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 smallnow@gmail.com Sun Jul 5 19:47:00 2009 From: smallnow@gmail.com (Ian Kelling) Date: Sun, 05 Jul 2009 19:47:00 -0000 Subject: new 1.7 install, no xorg start menu shortcut created Message-ID: <4A51032F.7090907@gmail.com> This is a newly installed cygwin on vista 64. I installed X by simply selecting X-start-menu-icons. In the start menu there is a Cygwin-X folder, and inside are a few folders and Xterm, but no Xorg shortcut for startxwin.bat. I had to create one myself. Attached is cygcheck -s -v -r output. - Ian Kelling -------------- 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 bdbaddog@gmail.com Sun Jul 5 22:56:00 2009 From: bdbaddog@gmail.com (William Deegan) Date: Sun, 05 Jul 2009 22:56:00 -0000 Subject: 1.7 no start menu entry to launch X Server? Message-ID: <8540148a0907051556t789a0931ia122985b1ceaffd1@mail.gmail.com> Greetings, Some time in the last few months the "X Win Server" start menu item was removed. I just did a fresh install on a new machine and it's not longer there. It was really useful. Any chance of getting it reinstated? Thanks Bill -- 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 gecicigec@fastmail.fm Mon Jul 6 06:00:00 2009 From: gecicigec@fastmail.fm (kartal) Date: Mon, 06 Jul 2009 06:00:00 -0000 Subject: Ssh login problem, no proper command line is present Message-ID: <24350202.post@talk.nabble.com> Hi I have setup Cygwin+ssh on my laptop, somewhat successfully. SSH seems to work finally but I have one problem. Whenever I connect to my laptop via ssh it says Last login : "Some date" from "some computer" and it is not giving me any visible other command line at all. I can type there but there does not seem to be regular bash command look. No $ is listed. Does anyone know how to solve this weird problem? None of my other computers with cygwin+ssh shows this issues. I have tried logging into ssh locally as well and the issue there regardless of ssh client I use, Putty or mintty ssh login seems to produce the same visual(I hope) problem thanks -- View this message in context: http://www.nabble.com/Ssh-login-problem%2C-no-proper-command-line-is-present-tp24350202p24350202.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 Mon Jul 6 14:33:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 06 Jul 2009 14:33:00 -0000 Subject: 1.7 no start menu entry to launch X Server? In-Reply-To: <8540148a0907051556t789a0931ia122985b1ceaffd1@mail.gmail.com> References: <8540148a0907051556t789a0931ia122985b1ceaffd1@mail.gmail.com> Message-ID: <4A520B21.9090201@dronecode.org.uk> On 05/07/2009 23:56, William Deegan wrote: > Greetings, > > Some time in the last few months the "X Win Server" start menu item was removed. > I just did a fresh install on a new machine and it's not longer there. > It was really useful. > > Any chance of getting it reinstated? I think this is a packaging error with xinit-1.1.1-3, which seems to be missing the postinstall/preremove scripts which maintain this shortcut, which were present in xinit-1.1.1-2 -- 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 Jul 6 15:15:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 06 Jul 2009 15:15:00 -0000 Subject: Cygwin 1.7 hangs with my .xinitrc In-Reply-To: References: Message-ID: <4A521526.7060402@dronecode.org.uk> On 04/07/2009 17:48, David A Bagley wrote: > Hi > > I like to start X with a whole bunch of windows instead of creating each > time. In Cygwin 1.5 I did this with no problem. > > In 1.7 this hangs. It hangs in a way where I can't open anything else > and have to pull the power to computer. If I comment out all the xterm's > it works fine. What an interesting .xinitrc :-) I can reproduce the problem using it. I seem to end up with a few of the xterms spinning somewhere and trying to use 100% CPU, and outputting the following: No protocol specified xterm Xt error: Can't open display: :0 After inserting 'sleep 1' into the .xinitrc before each xterm seems to start up without trouble, so I guess there's some sort of timing condition somewhere, although I've no idea where... -- 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 Jul 6 15:40:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 06 Jul 2009 15:40:00 -0000 Subject: XWin freezes on xkbcomp In-Reply-To: <55759A3B7FA44342AD43B6832DDB310711CFD2BA@EMSS04M23.us.lmco.com> References: <55759A3B7FA44342AD43B6832DDB310711CFD2BA@EMSS04M23.us.lmco.com> Message-ID: <4A521ADE.3060603@dronecode.org.uk> On 02/07/2009 19:08, Zdrojewski, Tye wrote: > After recently reinstalling cygwin, XWin freezes when I try to run it. > There are two XWin processes running when it is frozen. When the XWin > process with the smaller memory footprint was killed, the following went > into the log, and it appeared to unfreeze for a moment. > > (EE) XKB: Could not invoke xkbcomp > > (EE) XKB: Couldn't compile keymap > > (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap > > I started XWin with the -kb option, which stopped the freezing, but I > don't use the standard US keyboard, so this isn't really on option for > me. I suggest you test if you can run xkbcomp at all, e.g. xkbcomp --help setxkbmap de -print | xkbcomp -w3 -xkm - localhost:0.0 (replace 'de' with the secret keyboard layout you want to use) > I also notice that /etc/X11/xkb/ is not there, along with several other > directories that ARE there on another PC with a working cygwin install: > > $ ls /etc/X11 > > app-defaults/ system.XWinrc* xinit/ This is normal > Seems like there ought to be more there, because this is what that dir > looks like on the working install: > > app-defaults/ fs/ lbxproxy/ proxymngr/ rstart/ twm/ xdm/ xinit/ > xkb/ xserver/ xsm/ This looks like an older (pre-X11R7.4) installation (or has directories left over from an older installation. For all I know that xkb/ is empty :-) ) > This seems like a BIG problem. Hopefully this is something already > being worked on or already fixed. I think you are the only person who has reported a problem like this, so I'm afraid I can't agree with any of those statements. -- 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 tye.zdrojewski@lmco.com Mon Jul 6 17:38:00 2009 From: tye.zdrojewski@lmco.com (Zdrojewski, Tye) Date: Mon, 06 Jul 2009 17:38:00 -0000 Subject: XWin freezes on xkbcomp In-Reply-To: <4A521ADE.3060603@dronecode.org.uk> References: <55759A3B7FA44342AD43B6832DDB310711CFD2BA@EMSS04M23.us.lmco.com> <4A521ADE.3060603@dronecode.org.uk> Message-ID: <55759A3B7FA44342AD43B6832DDB310711DA0781@EMSS04M23.us.lmco.com> I only say that this is a "big" problem because it cripples my ability to run cygwin/X. I guess I'm surprised no one else has reported this, because I haven't done anything unusual (that I know of). Yes, my *working* installation is a bit older. I use the dvorak layout (not trying to be secretive). Setxkbmap was not installed (missing dependency in setup?). So, I installed it, but the problem persisted. After starting XWin and killing the hung process, I am able to run the command you suggested, but it just causes another hung XWin process to be created. If I run an X client (xfontsel, rxvt, etc), THEN run the setxkbmap command, it works! But as soon as I kill the last X client window, X is frozen again with that hung process. If I wait, X does eventually come back, but it seems to take about 5 minutes. -Tye > -----Original Message----- > From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Sent: Monday, July 06, 2009 11:40 AM > To: cygwin-xfree@cygwin.com > Cc: Zdrojewski, Tye > Subject: Re: XWin freezes on xkbcomp > > On 02/07/2009 19:08, Zdrojewski, Tye wrote: > > After recently reinstalling cygwin, XWin freezes when I try to run it. > > There are two XWin processes running when it is frozen. When the XWin > > process with the smaller memory footprint was killed, the following went > > into the log, and it appeared to unfreeze for a moment. > > > > (EE) XKB: Could not invoke xkbcomp > > > > (EE) XKB: Couldn't compile keymap > > > > (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap > > > > I started XWin with the -kb option, which stopped the freezing, but I > > don't use the standard US keyboard, so this isn't really on option for > > me. > > I suggest you test if you can run xkbcomp at all, e.g. > > xkbcomp --help > setxkbmap de -print | xkbcomp -w3 -xkm - localhost:0.0 > > (replace 'de' with the secret keyboard layout you want to use) > > > I also notice that /etc/X11/xkb/ is not there, along with several other > > directories that ARE there on another PC with a working cygwin install: > > > > $ ls /etc/X11 > > > > app-defaults/ system.XWinrc* xinit/ > > This is normal > > > Seems like there ought to be more there, because this is what that dir > > looks like on the working install: > > > > app-defaults/ fs/ lbxproxy/ proxymngr/ rstart/ twm/ xdm/ xinit/ > > xkb/ xserver/ xsm/ > > This looks like an older (pre-X11R7.4) installation (or has directories > left > over from an older installation. For all I know that xkb/ is empty :-) ) > > > This seems like a BIG problem. Hopefully this is something already > > being worked on or already fixed. > > I think you are the only person who has reported a problem like this, so > I'm > afraid I can't agree with any of those statements. -- 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 Jul 6 18:25:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 06 Jul 2009 18:25:00 -0000 Subject: fastpath 0 -> xterm? In-Reply-To: <20090629182930.A85E11405BAAA@cedar.isis.unc.edu> References: <20090629182930.A85E11405BAAA@cedar.isis.unc.edu> Message-ID: <4A52419F.4000509@dronecode.org.uk> On 29/06/2009 19:29, Tom Roche wrote: > Since I'm not seeing this in the FAQ, I wanted to propose the > following item: what would be required to go "from zero to xterm"? > I.e. from a Cygwin-less windows box (windows>= 2k) to getting a > Cygwin/X xterm up on one's screen? > > From my recent experience, it seems to me the "minimal install" > would be > > 0 > 1 font-misc-misc > 2 font-alias > 3 ncurses > 4 xinit > 5 xterm I've adjusted the package dependencies for xterm so now the needed things to start it without warnings should be installed automatically > Perhaps someone else can test the following underdetailed (fastpath/ > debug-free) 10-step procedure to "go from zero to xterm": Yes, as pointed out elsewhere, something like this is probably most appropriate in the Cygwin/X User's Guide. Patches welcome :-) -- 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 Jul 6 18:49:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 06 Jul 2009 18:49:00 -0000 Subject: Current directory '.' included in startxwin.bat PATH bad practice In-Reply-To: References: Message-ID: <4A52473F.9050604@dronecode.org.uk> On 26/06/2009 17:53, Rob Gillen wrote: > PROPOSAL: please remove the current directory from the PATH setting in > startxwin.bat. Yes, that's not right. Thanks for pointing it out. I've queued up a patch to fix that. -- 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 Jul 7 00:23:00 2009 From: mike_ayers@tvworks.com (Mike Ayers) Date: Tue, 07 Jul 2009 00:23:00 -0000 Subject: Cygwin 1.7 hangs with my .xinitrc In-Reply-To: <4A521526.7060402@dronecode.org.uk> References: <4A521526.7060402@dronecode.org.uk> Message-ID: <83E753BE7B6A324ABB336245BAF1DAAC0C93E956@mailserver.metatv-ds.metatv.com> > From: cygwin-xfree-owner@cygwin.com > [mailto:cygwin-xfree-owner@cygwin.com] On Behalf Of Jon TURNEY > Sent: Monday, July 06, 2009 8:16 AM > I can reproduce the problem using it. I seem to end up with > a few of the > xterms spinning somewhere and trying to use 100% CPU, and > outputting the > following: > > No protocol specified > xterm Xt error: Can't open display: :0 > > After inserting 'sleep 1' into the .xinitrc before each xterm > seems to start > up without trouble, so I guess there's some sort of timing condition > somewhere, although I've no idea where... I have had `sleep 1` statements after each xterm launch in my .xinitrc for years, having encountered a similar problem. At least I'm pretty sure it was a similar problem... yes, I should have reported it then. HTH, Mike -- 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 Pietro.Bianchi@Sun.COM Tue Jul 7 08:50:00 2009 From: Pietro.Bianchi@Sun.COM (Pietro Federico Bianchi) Date: Tue, 07 Jul 2009 08:50:00 -0000 Subject: X11 server Message-ID: <73e0f5dd6227.4a53284e@sun.com> I'm trying to install x11 for Windows but the site ask me for a "Server Authorization Password" Why. Do I have to register something somewhere?? thanks in advance Pietro F. Bianchi SUN Microsystem Italia SpA Project Manager cell.: 335-7683522 mail: pietro.bianchi@Sun.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 millahn@arcor.de Tue Jul 7 10:56:00 2009 From: millahn@arcor.de (Guenter Millahn) Date: Tue, 07 Jul 2009 10:56:00 -0000 Subject: broken checkx on mirrors Message-ID: <4A5329CC.3010004@arcor.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, just now I tried an update of my CygWin. I realized that checkx-0.2.1-1.tar.bz is broken on all mirrors. Please, can the maintainer correct this? Thanks! - -- Kindest Regards Guenter Millahn -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (MingW32) iQIcBAEBAgAGBQJKUynMAAoJEHJuTLcCOtoFDC8P/3um4TWBgqLBI2PtHcUrbCfa eyO2mahuLe4Ta6TLaPV7u8TW8fe8ULFArWC7vwuvVlnx1AYDH7LdPmTLWHaXpgix m6t08gipg772ZxuPIS7LPO/NOtGk4VG+gH9rYcyFhKi5V+9g1BPsaGjzxWg2SD4y eRG/l3aO8fnmOkmyjIRTjcKvjoIcybFH6qO8mdRbecEDoQH9/qnQbbETtyilfu8d IC9IFu8+u9s/XAJQALs6W2L2EKoYRE9Wb+7k7NAmhG7ajyxnKVvAtXm0ddiqWtuC mNyoLdmPMtLuM6yYzNMzVfg/JqBaOXbgaKGEghCuKoJNIPKH/iquIainaCHeSkdJ HKvSRoswONyQGtKm8dRU6DHvA5gc1hkg/uiXdFMG7KkvJkE3kLwCq+Hg1/bJrOwx 4AM6qgXc7xfo3hF31DZkxLoB09lFcgbWUl9R5+MuZUhhsv3Xd8avbDerZkiJZxBg JnN4TQgMy5wozBDuJ6bYuO+t5y6bVgfKbBxrOuo+h7y6npYwOFfZ4eW5GOZ17Bg5 NKATnzeXZTnTxtQi/p8J+WkCemv/0ownMn0Ky3j85B0lvMu0+Zh3j6/ou6scy7HY DF4hZ/mepBnEDoKKwGubAPqXzyLxqso9/STgu6tRVxz4tLm81lYyIo2MSxJool+Y NiqdR1Q9hBZbBLn5gkOG =gm+E -----END PGP SIGNATURE----- -- 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 Tue Jul 7 15:01:00 2009 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Tue, 07 Jul 2009 15:01:00 -0000 Subject: broken checkx on mirrors In-Reply-To: <4A5329CC.3010004@arcor.de> References: <4A5329CC.3010004@arcor.de> Message-ID: <20090707150112.GA4259@ednor.casa.cgf.cx> On Tue, Jul 07, 2009 at 12:56:12PM +0200, Guenter Millahn wrote: >just now I tried an update of my CygWin. I realized that >checkx-0.2.1-1.tar.bz is broken on all mirrors. You haven't explained why you think this package is broken. You really need to do that. 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 reply-to-list-only-lh-x@cygwin.com Tue Jul 7 16:49:00 2009 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Tue, 07 Jul 2009 16:49:00 -0000 Subject: X11 server In-Reply-To: <73e0f5dd6227.4a53284e@sun.com> References: <73e0f5dd6227.4a53284e@sun.com> Message-ID: <4A537B59.40006@cygwin.com> Pietro Federico Bianchi wrote: > I'm trying to install x11 for Windows but the site ask me for a "Server > Authorization Password" Why. Do I have to register something somewhere?? Cygwin-X requires no authorization password. Please read and follow the problem reporting guidelines found at the URL below. > Problem reports: http://cygwin.com/problems.html -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 429-6305 - FAX Holliston, MA 01746 -- 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 jicman@cinops.xerox.com Tue Jul 7 20:36:00 2009 From: jicman@cinops.xerox.com (jose isaias cabrera) Date: Tue, 07 Jul 2009 20:36:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 Message-ID: Greetings. I updated from the old cygwin to the new 1.7 by installing the new 1.7 in c:\cygwinx directory. The reason why was because I wanted to see if a problem that I previously had was fixed with a SunOS 10 server. When I run this command, XWin -once -query the X windows opens and quickly disappear. The log is attached. I went to, http://x.cygwin.com/docs/faq/cygwin-x-faq.html and tried to find any hints, but, nothing... By the way, this is the same problem that the previous version of cygwin had. But, since Mr. Turney said to give it a try with the new version, I did. :-) Is this going to ever be fixed? thanks, jos?? -- 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 cabrera@wrc.xerox.com Tue Jul 7 20:37:00 2009 From: cabrera@wrc.xerox.com (jose isaias cabrera) Date: Tue, 07 Jul 2009 20:37:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 Message-ID: Greetings. I updated from the old cygwin to the new 1.7 by installing the new 1.7 in c:\cygwinx directory. The reason why was because I wanted to see if a problem that I previously had was fixed with a SunOS 10 server. When I run this command, XWin -once -query the X windows opens and quickly disappear. The log is attached. I went to, http://x.cygwin.com/docs/faq/cygwin-x-faq.html and tried to find any hints, but, nothing... By the way, this is the same problem that the previous version of cygwin had. But, since Mr. Turney said to give it a try with the new version, I did. :-) Is this going to ever be fixed? thanks, jos?? -- 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 Tue Jul 7 22:53:00 2009 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Tue, 07 Jul 2009 22:53:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 In-Reply-To: References: Message-ID: <4A53D0A6.5030700@cygwin.com> jose isaias cabrera wrote: > By the way, this is the same problem that the previous version of cygwin > had. But, since Mr. Turney said to give it a try with the new version, I > did. :-) Is this going to ever be fixed? Nah. It's been there so long that it feels like an old friend. Getting rid of an old friend would... well, that would just be wrong! And, of course, if you don't agree, you're stuck. After all, we have the source and you don't... wait a minute. Ah, never mind. ;-) -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 429-6305 - FAX Holliston, MA 01746 -- 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 cabrera@wrc.xerox.com Wed Jul 8 03:22:00 2009 From: cabrera@wrc.xerox.com (jose isaias cabrera) Date: Wed, 08 Jul 2009 03:22:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 In-Reply-To: <4A53D0A6.5030700@cygwin.com> References: <4A53D0A6.5030700@cygwin.com> Message-ID: <120689EDEEEB4B0BBBA283FE23B1F963@jicman> "Larry Hall (Cygwin X)" trying to be funny, wrote... > jose isaias cabrera wrote: > > > >> By the way, this is the same problem that the previous version of cygwin >> had. But, since Mr. Turney said to give it a try with the new version, I >> did. :-) Is this going to ever be fixed? > > Nah. It's been there so long that it feels like an old friend. Getting > rid of an old friend would... well, that would just be wrong! And, of > course, if you don't agree, you're stuck. After all, we have the source > and you don't... wait a minute. Ah, never mind. ;-) He he he he... I guess not... son-ovah! I wish I had the time... :-( Anyway, just wanted to try it. By the way, it was funny. :-) jos?? -- 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 Jul 8 14:20:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 08 Jul 2009 14:20:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 In-Reply-To: References: Message-ID: <4A54AB3F.5040507@dronecode.org.uk> On 07/07/2009 21:36, jose isaias cabrera wrote: > I updated from the old cygwin to the new 1.7 by installing the new 1.7 in > c:\cygwinx directory. The reason why was because I wanted to see if a > problem that I previously had was fixed with a SunOS 10 server. When I run > this command, > > XWin -once -query > > the X windows opens and quickly disappear. The log is attached. What log? So, back in http://cygwin.com/ml/cygwin-xfree/2008-11/msg00141.html, you said: > Now, I get the login screen, but when try to enter the login ID, when I > type the first letter, the login screen refreshes and I can never enter > login id. Now you say: > the X windows opens and quickly disappear. So: same problem? similar problem? different problem? I could guess, but I'd rather not... > By the way, this is the same problem that the previous version of cygwin > had. But, since Mr. Turney said to give it a try with the new version, I > did. :-) Back here http://cygwin.com/ml/cygwin-xfree/2008-11/msg00184.html, I asked if you could ssh -Y to the Solaris host and run X apps that way, or if they also fail on a keypress. I don't see a response. > Is this going to ever be fixed? This is, of course, an imponderable. -- 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 Jul 8 14:45:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 08 Jul 2009 14:45:00 -0000 Subject: Blank title bars In-Reply-To: <1ef5a52f0906170219x50fb81b0sb0498ae4a834718b@mail.gmail.com> References: <1ef5a52f0906170219x50fb81b0sb0498ae4a834718b@mail.gmail.com> Message-ID: <4A54B123.4000903@dronecode.org.uk> On 17/06/2009 10:19, Csaba Raduly wrote: > For some reason, changes to the title bar text result in a blank title > bar instead until the window loses focus. > > For example, a new NEdit window will have a blank title bar until I > click on another window or the desktop. Then the filename appears. If > I modify the file, the title bar becomes blank again; when the window > loses focus the expected text, "filename (modified)", becomes visible. > > The same blank title bar happens when switching tabs in NEdit or Eclipse. > > According to the About box, the X server is version 1.5.3 (20090222) > Cygwin1.DLL 1005.25.0.0 (1.5.25-cr-0x5f1) > > Has anybody seen anything like this? Any ideas? I'm afraid I can't quite visualize what you are describing. Can you upload some screenshots somewhere? -- 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 bagleyd@gwyn.tux.org Wed Jul 8 15:02:00 2009 From: bagleyd@gwyn.tux.org (David A Bagley) Date: Wed, 08 Jul 2009 15:02:00 -0000 Subject: Cygwin 1.7 hangs with my .xinitrc In-Reply-To: <83E753BE7B6A324ABB336245BAF1DAAC0C93E956@mailserver.metatv-ds.metatv.com> from "Mike Ayers" at Jul 06, 2009 05:22:50 PM Message-ID: <200907081502.n68F2VAS003983@gwyn.tux.org> Hi Thanks for the work around, seems to work ok. One more detail about this I just remembered... On Cygwin 1.5 version, some of the windows that I bring up don't seem to know their own size. I always seem to have to resize some of the windows (particularly on the second virtual screen) and then run 'ls' to see if the resize took. The sleep may help somewhat here but I still have to resize a window or two. -- Cheers, /X\ David A. Bagley (( X bagleyd@tux.org http://www.tux.org/~bagleyd/ \X/ xlockmore and more > > > From: cygwin-xfree-owner@cygwin.com > > [mailto:cygwin-xfree-owner@cygwin.com] On Behalf Of Jon TURNEY > > Sent: Monday, July 06, 2009 8:16 AM > > > I can reproduce the problem using it. I seem to end up with > > a few of the > > xterms spinning somewhere and trying to use 100% CPU, and > > outputting the > > following: > > > > No protocol specified > > xterm Xt error: Can't open display: :0 > > > > After inserting 'sleep 1' into the .xinitrc before each xterm > > seems to start > > up without trouble, so I guess there's some sort of timing condition > > somewhere, although I've no idea where... > > I have had `sleep 1` statements after each xterm launch in my .xinitrc for years, having encountered a similar problem. At least I'm pretty sure it was a similar problem... yes, I should have reported it then. > > > HTH, > > Mike > -- 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 Wed Jul 8 17:03:00 2009 From: cygwin@cwilson.fastmail.fm (Charles Wilson) Date: Wed, 08 Jul 2009 17:03:00 -0000 Subject: broken checkx on mirrors Message-ID: <1247072597.16431.1324111375@webmail.messagingengine.com> Guenter Millahn wrote: > just now I tried an update of my CygWin. I realized > that checkx-0.2.1-1.tar.bz is broken on all mirrors. The checkx-0.2.1-1 package is an empty "upgrade helper". It is present only to force an update to the new package, which is called "run2" -- this should have happened automatically. If it didn't, then just use setup to install the run2 package manually. run2 contains the old checkx program, as well as a new, enhanced version of run.exe, that combines the capabilities of checkx, run, and some new features. -- 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 yselkowitz@users.sourceforge.net Wed Jul 8 23:11:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 08 Jul 2009 23:11:00 -0000 Subject: [1.7] Updated: lesstif-0.95.2-1 Message-ID: <4A552780.3060908@users.sourceforge.net> The following packages have been updated for Cygwin 1.7: * lesstif-0.95.2-1 * libXm2-0.95.2-1 * libXm-devel-0.95.2-1 This is an update to the latest upstream version of lesstif. 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 Wed Jul 8 23:16:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 08 Jul 2009 23:16:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: libXt-1.0.6-1, libXaw-1.0.6-1 Message-ID: The following packages have been updated for Cygwin 1.7: * libXaw6-1.0.6-1 * libXaw7-1.0.6-1 * libXaw-devel-1.0.6-1 * libXt6-1.0.6-1 * libXt-devel-1.0.6-1 This is an update to the latest version of the X.Org Xt and Xaw libraries. makestrs, previously a separate package, is now part of libXt-devel; the move will occur automatically. 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 Wed Jul 8 23:17:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 08 Jul 2009 23:17:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xinit-1.1.1-4 Message-ID: The following package has been updated for Cygwin 1.7: * xinit-1.1.1-4 This releases fixes a few bugs reported to the list: * Don't add '.' to $PATH in startxwin.bat. * startxwin.bat should set CYGWIN_ROOT correctly now, regardless of where Cygwin is installed. It can be overriden by setting it in the environment as a DOS path to the top of the Cygwin installation. * Updated comments in startxwin.{bat,sh}. * Create Windows Start Menu shortcuts again. 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 Wed Jul 8 23:17:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 08 Jul 2009 23:17:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: lesstif-0.95.2-1 Message-ID: The following packages have been updated for Cygwin 1.7: * lesstif-0.95.2-1 * libXm2-0.95.2-1 * libXm-devel-0.95.2-1 This is an update to the latest upstream version of lesstif. 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 Wed Jul 8 23:17:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 08 Jul 2009 23:17:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xorg-server-1.6.2-1 Message-ID: The following package has been updated for Cygwin 1.7: * xorg-server-1.6.2-1 This is an update to the latest upstream version. The following new patch has been applied to this release: * Use bash login shell to execute commands started via the Xwin tray icon menu. 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 cabrera@wrc.xerox.com Thu Jul 9 05:05:00 2009 From: cabrera@wrc.xerox.com (jose isaias cabrera) Date: Thu, 09 Jul 2009 05:05:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 References: <4A54AB3F.5040507@dronecode.org.uk> Message-ID: Jon TURNEY wrote... > On 07/07/2009 21:36, jose isaias cabrera wrote: >> I updated from the old cygwin to the new 1.7 by installing the new 1.7 in >> c:\cygwinx directory. The reason why was because I wanted to see if a >> problem that I previously had was fixed with a SunOS 10 server. When I >> run >> this command, >> >> XWin -once -query >> >> the X windows opens and quickly disappear. The log is attached. > > What log? weird... Attached > So, back in http://cygwin.com/ml/cygwin-xfree/2008-11/msg00141.html, you > said: > >> Now, I get the login screen, but when try to enter the login ID, when I >> type the first letter, the login screen refreshes and I can never enter >> login id. > > Now you say: > > > the X windows opens and quickly disappear. Yep. This is correct. > So: same problem? similar problem? different problem? I could guess, but > I'd rather not... Ok, so, you are right. This is a different problem. I don't even get to type anything. Also, if I take the -once option out, it will continue to connect and disconnect forever. > >> By the way, this is the same problem that the previous version of cygwin >> had. But, since Mr. Turney said to give it a try with the new version, I >> did. :-) > > Back here http://cygwin.com/ml/cygwin-xfree/2008-11/msg00184.html, I asked > if you could ssh -Y to the Solaris host and run X apps that way, or if > they also fail on a keypress. I don't see a response. Sorry, I thought that I had responded. Here is what happens: jic 01:01:02-> ssh -Y cnpsip@13.142.1.83 Password: Warning: No xauth data; using fake authentication data for X11 forwarding. Last login: Thu Jul 9 01:55:18 2009 from jic.na.xerox.ne Sun Microsystems Inc. SunOS 5.10 Generic January 2005 [cnpsip@e6psip ~]: xclock and then, the prompt locks an no xclock display. On the cygwin dos screen, I see the following message: jic 01:00:48-> xinit Xlib: extension "MIT-SHM" missing on display ":0.0". Xlib: extension "MIT-SHM" missing on display ":0.0". All questions have been answered. :-) thanks for all the help. jos?? -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 1680 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 towo@computer.org Thu Jul 9 10:50:00 2009 From: towo@computer.org (towo@computer.org) Date: Thu, 09 Jul 2009 10:50:00 -0000 Subject: [1.7] Updated: xorg-server-1.6.2-1 In-Reply-To: <4A55275C.9050809@users.sourceforge.net> References: <4A55275C.9050809@users.sourceforge.net> Message-ID: <200907091050.n69Ao7I5023838@mail.bln1.bf.nsn-intra.net> > The following package has been updated for Cygwin 1.7: > * xorg-server-1.6.2-1 Could you be so kind to make a final update for Cygwin 1.5 as well, in order to catch the problem with the numeric keypad input, please? Thomas -- 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 wakker@nrg.eu Fri Jul 10 08:20:00 2009 From: wakker@nrg.eu (Wakker, P.H. (Pieter)) Date: Fri, 10 Jul 2009 08:20:00 -0000 Subject: 1.5.25: Problem with XtAppAddWorkProc and OptionMenu Message-ID: <88D3DC9BA889AA40B268DC9974D57000437466@NRGAEX.arh.nrgnet.intra> Hi, I am running CYGWIN 1.5.25 on Windows XP pack 2. I have a XWindows graphics program that uses several XmOptionMenu widgets. The problem is that whenever the user clicks frequently (sometimes a double-click is enough) on these OptionMenu's the program crashes with a segmentation error. This behaviour is not noticeable with the same program on HP-UX. I reproduced the problem in the test program below. It seems as if the combination of the WorkProc and the OptionMenu causes the problem. If I remove the XtAppAddWorkProc statement there is no problem, but the only widget that causes the crash is an OptionMenu (for example with a PushButton I can't reproduce the crash). Another thing I noticed is that when I reduce the number of microseconds in the usleep command, I have to click faster to make the program crash. It seems as if there is a relationship with how long the program is busy in the WorkProc. In the actual program the usleep is replaced by something useful of course. Any help is appreciated. Thanks, Pieter #include #include #include Boolean ViewerCheck() { usleep(100000); return False; } int main() { Widget TopLevel,form,wdg1,wdg2,wdg3,wdg4; XtAppContext app; int argc=0; char *argv[1]; XtSetLanguageProc(NULL,NULL,NULL); TopLevel = XtVaAppInitialize(&app,"Test",NULL,0,&argc,argv,NULL,NULL); form = XtVaCreateManagedWidget( "Test", xmFormWidgetClass, TopLevel, XmNwidth, 100, XmNheight, 60); wdg1 = XmCreatePulldownMenu(form, "pulldown", NULL, 0); wdg2 = XtVaCreateManagedWidget("1", xmPushButtonWidgetClass, wdg1, XmNwidth, 60); wdg3 = XtVaCreateManagedWidget("2", xmPushButtonWidgetClass, wdg1, XmNwidth, 60); wdg4 = XmCreateOptionMenu(form, "TEST", NULL, 0); XtVaSetValues(wdg4, XmNsubMenuId, wdg1); XtManageChild(wdg4); XtRealizeWidget(TopLevel); XtAppAddWorkProc(app, (XtWorkProc) ViewerCheck, (XtPointer) NULL); XtAppMainLoop(app); return 0; } -- 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 rurban@x-ray.at Fri Jul 10 08:42:00 2009 From: rurban@x-ray.at (Reini Urban) Date: Fri, 10 Jul 2009 08:42:00 -0000 Subject: XCloseDisplay + XOpenDisplay fails Message-ID: <6910a60907100142j461a8edled891a10357c5122@mail.gmail.com> With the latest server and cygwin-1.7 my previous xlib test form clisp new-clx fail. XCloseDisplay() => okay but all subsequent XOpenDisplay() to the same display fail now with "No protocol specified". This worked before. I've also enabled IPV6, which might be related. xorg-server-1.6.2-1 Release: 1.6.2.0 (20090707) libX11-devel-1.2.1-1 clisp might be challenging, so I rather want confirmations from the xserver side before I post details. -- Reini Urban http://phpwiki.org/ http://murbreak.at/ -- 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 Sat Jul 11 16:35:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Sat, 11 Jul 2009 16:35:00 -0000 Subject: XCloseDisplay + XOpenDisplay fails In-Reply-To: <6910a60907100142j461a8edled891a10357c5122@mail.gmail.com> References: <6910a60907100142j461a8edled891a10357c5122@mail.gmail.com> Message-ID: <4A58BF76.5010809@dronecode.org.uk> On 10/07/2009 09:42, Reini Urban wrote: > With the latest server and cygwin-1.7 my previous xlib test form clisp > new-clx fail. > > XCloseDisplay() => okay > but all subsequent XOpenDisplay() to the same display fail now with > "No protocol specified". > This worked before. I've also enabled IPV6, which might be related. The "No protocol specified" message seems to be a bit obtuse. I looked into it when it was reported here [1] (which of course I can't reproduce now :-( ) It comes back from the server when an attempt is made to open a connection, and really means something like "No authorization method specified" - the client didn't offer any authorization data and the peer address wasn't available or wasn't on the host access list. I'm afraid I don't know why it happens. I assume you are starting the server using startx or otherwise providing an -auth argument? A workaround might be to not to do that. It might be informative to see if anything relevant is logged with '-audit 2' > xorg-server-1.6.2-1 Release: 1.6.2.0 (20090707) > libX11-devel-1.2.1-1 > > clisp might be challenging, so I rather want confirmations from the > xserver side before I post details. [1] http://cygwin.com/ml/cygwin-xfree/2009-07/msg00016.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 jon.turney@dronecode.org.uk Sun Jul 12 12:13:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Sun, 12 Jul 2009 12:13:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 In-Reply-To: References: <4A54AB3F.5040507@dronecode.org.uk> Message-ID: <4A59D355.4000403@dronecode.org.uk> >> On 07/07/2009 21:36, jose isaias cabrera wrote: >>> I updated from the old cygwin to the new 1.7 by installing the new >>> 1.7 in >>> c:\cygwinx directory. The reason why was because I wanted to see if a >>> problem that I previously had was fixed with a SunOS 10 server. When >>> I run >>> this command, >>> >>> XWin -once -query >>> XWin.0.log: > XWin was started with the following command line: > > X :0 > Hmmm.... are you sure that is the right 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 ggw_@wolves.homeip.net Sun Jul 12 23:20:00 2009 From: ggw_@wolves.homeip.net (G.Wolfe Woodbury) Date: Sun, 12 Jul 2009 23:20:00 -0000 Subject: Cygwin having trouble with Fedora 11 gnome-terminal Message-ID: Just upgraded my main Linux box to Fedora 11 and my cygwin installation on the laptop and windows boxen are having trouble with: ssh -Y -f gnome-terminal @wolves.private They report missing "General Event Extension" missing errors and then fail to start gnome-terminal with a "unable to contact Gconf daemon". The problem seems to be specific to gnome-terminal in that I can install Terminal from XFCE and it starts up fine. Is this a cygwin problem or a Fedora11 problem? Any ideas? G.Wolfe Woodbury -- 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 Jul 13 00:23:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 13 Jul 2009 00:23:00 -0000 Subject: Cygwin having trouble with Fedora 11 gnome-terminal In-Reply-To: References: Message-ID: <4A5A7E71.4000806@users.sourceforge.net> On 12/07/2009 18:03, G.Wolfe Woodbury wrote: > Just upgraded my main Linux box to Fedora 11 and my cygwin installation > on the laptop and windows boxen are having trouble with: > > ssh -Y -f gnome-terminal@wolves.private > > They report missing "General Event Extension" missing errors and then > fail to start gnome-terminal with a "unable to contact Gconf daemon". > The problem seems to be specific to gnome-terminal in that I can install > Terminal from XFCE and it starts up fine. > > Is this a cygwin problem or a Fedora11 problem? Any ideas? Neither; I have the same issue with my Cygwin-built gnome-terminal. It's actually an upstream bug: http://bugzilla.gnome.org/show_bug.cgi?id=564649 IOW, unlike most GConf client apps, gnome-terminal just exits if it can't find a running GConf daemon (instead of launching one). The workaround is to run "gconftool-2 --spawn" *before* gnome-terminal. 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 Mon Jul 13 00:25:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Mon, 13 Jul 2009 00:25:00 -0000 Subject: [1.7] Updated: xorg-server-1.6.2-1 In-Reply-To: <200907091050.n69Ao7I5023838@mail.bln1.bf.nsn-intra.net> References: <4A55275C.9050809@users.sourceforge.net> <200907091050.n69Ao7I5023838@mail.bln1.bf.nsn-intra.net> Message-ID: <4A5A7EF6.5000104@users.sourceforge.net> On 09/07/2009 05:50, towo@computer.org wrote: > Could you be so kind to make a final update for Cygwin 1.5 as well, > in order to catch the problem with the numeric keypad input, please? There will be no further X11 releases for Cygwin 1.5, as 1.7 is scheduled to go stable later this month. 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 microsoft.microsoft92@gmail.com Mon Jul 13 08:05:00 2009 From: microsoft.microsoft92@gmail.com (=?ISO-8859-1?Q?Microsoft=AE?=) Date: Mon, 13 Jul 2009 08:05:00 -0000 Subject: Information Assistance Message-ID: Dear Sir or Madame: On July 3, 2009 I purchased a Hewlett-Packard HDX18t Premium Series Notebook PC with free upgrade for Windows 7. (Customized). Product: Hewlett-Packard HDX18t Premium Series Notebook PC ? Genuine Windows Vista Home Premium with Service Pack 1 (32-bit) ? Intel(R) Core(TM)2 Duo Processor P8700 (2.53 GHz, 3 MB L2 Cache, 1066MHz FSB) ? 3GB DDR2 System Memory (2 Dimm) - For 512MB NVIDIA GeForce 9600M GT graphics ? FREE Upgrade to 500GB 7200RPM SATA Hard Drive from 320GB 7200RPM SATA Hard Drive ? 512MB NVIDIA GeForce 9600M GT - For DDR2 Memory ? 18.4" diagonal High Definition HP Ultra BrightView Infinity Display (1920x1080p) ? Blu-Ray ROM with SuperMulti DVD+/-R/RW Double Layer ? Webcam + Fingerprint Reader with HP Imprint Finish (Fluid) ? Intel Next-Gen Wireless-N Mini-card ? No TV Tuner w/remote control ? Full Size Backlit Keyboard ? HP Long Life Battery ? No Productivity Software ? HP Home & Home Office Store in-box envelope Hewlett-Packard could not locate or have any information regarding the ?Target Hardware? for the above product. Meaning if the ?Target Hardware? for this product have or include the following and from which manufacturer: H8/300, H8/300H, H8/300L, H8/S, H8/SX, M16C, M32C, RX, SH-2A, SH-2E, SH-3E, SH-4A, SH1, SH2, SH3, SH4, or other. Required information that I need to also register with KPIT GNU Tools & Support (http://www.kpitgnutools.com/signUp.php). Please, if in your power, assist me in locating which, where, who, or how I can obtain said information, part, installation or download for my product. It is my understanding that the H8/300 Series products are the best for downloading and developing open-source software ? GNU projects. Please also indicate if it is proper or possible to download Gnu + Cygnus + Windows = Cygwin Project Cygwin/X without any damage to the existing programs and structure on this newly Hewlett-Packard product and best method to do such addition to the operating system. Thank you, Angel Manuel Cancel micro.soft.micro.soft@msn.com microsoft.microsoft92@gmail.com -- Microsoft? -- 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 cabrera@wrc.xerox.com Mon Jul 13 17:03:00 2009 From: cabrera@wrc.xerox.com (jose isaias cabrera) Date: Mon, 13 Jul 2009 17:03:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 References: <4A54AB3F.5040507@dronecode.org.uk> <4A59D355.4000403@dronecode.org.uk> Message-ID: <2915D27035254632837D4D7B53A995C7@stso.mc.xerox.com> >>>> I updated from the old cygwin to the new 1.7 by installing the new >>>> 1.7 in >>>> c:\cygwinx directory. The reason why was because I wanted to see if a >>>> problem that I previously had was fixed with a SunOS 10 server. When >>>> I run >>>> this command, >>>> >>>> XWin -once -query >>>> > > XWin.0.log: >> XWin was started with the following command line: >> >> X :0 >> > > Hmmm.... are you sure that is the right log? :-) > now I am. :-) -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 1627 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 jon.turney@dronecode.org.uk Mon Jul 13 17:50:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 13 Jul 2009 17:50:00 -0000 Subject: [1.7] XWin still fails with SunOS 10 In-Reply-To: <4A59D355.4000403@dronecode.org.uk> References: <4A54AB3F.5040507@dronecode.org.uk> <4A59D355.4000403@dronecode.org.uk> Message-ID: <4A5B73C7.6000205@dronecode.org.uk> On 12/07/2009 13:13, Jon TURNEY wrote: >>> On 07/07/2009 21:36, jose isaias cabrera wrote: >>>> I updated from the old cygwin to the new 1.7 by installing the new >>>> 1.7 in >>>> c:\cygwinx directory. The reason why was because I wanted to see if a >>>> problem that I previously had was fixed with a SunOS 10 server. When >>>> I run >>>> this command, >>>> >>>> XWin -once -query >>>> > > XWin.0.log: >> XWin was started with the following command line: >> >> X :0 >> > > Hmmm.... are you sure that is the right log? :-)(pr Ah, in addition to an Xwin.0.log which actually corresponds to the command you are using, the contents of /var/dt/Xerrors on the Solaris machine may prove informative as well. It seems that Sun have fixed the brain-damage in their website which was previously preventing me from downloading Solaris 10, so I now have a Solaris 10 Update 7 (5/09) VM to do some testing with. Unfortunately, while I did find a few issues (patches to follow), I'm not able to reproduce the one you see: XWin -query starts up an XDMCP session for me and I can log in successfully. -- 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 Jul 13 18:07:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 13 Jul 2009 18:07:00 -0000 Subject: [PATCH 0/2] Patches to fix some issues connecting to Solaris 10 Message-ID: <1247508455-4392-1-git-send-email-jon.turney@dronecode.org.uk> 1/2: Workaround for assumption that WM_STATE atom exists in XIM (possibly the cause of [1]) 2/2: With the change to XCSECURITY extension being disabled by default, this has exposed a problem that the code for using authorization cookies for internal clients was condiitonal on that. In fact we should always be using an authorization cookie for internal clients so assure that they can connect in XDMCP sessions (where localhost access to the server may not be permitted). (I think this is the underlying issue in [2]) [1] http://sourceware.org/ml/cygwin-xfree/2008-12/msg00028.html [2] http://sourceware.org/ml/cygwin-xfree/2009-03/msg00008.html Jon TURNEY (2): Cygwin/X: Always use an authorization cookie for internal clients Cygwin/X: Ensure WM_STATE atom exists in multiwindow mode hw/xwin/InitOutput.c | 2 - hw/xwin/win.h | 3 +- hw/xwin/winauth.c | 103 +++++++++++++++++++++++++++++++++++------- hw/xwin/winclipboardthread.c | 19 +------- hw/xwin/winmultiwindowwm.c | 29 ++++++------ include/os.h | 2 + 6 files changed, 106 insertions(+), 52 deletions(-) -- 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 Jul 13 18:07:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 13 Jul 2009 18:07:00 -0000 Subject: [PATCH 2/2] Cygwin/X: Ensure WM_STATE atom exists in multiwindow mode In-Reply-To: <1247508455-4392-2-git-send-email-jon.turney@dronecode.org.uk> References: <1247508455-4392-1-git-send-email-jon.turney@dronecode.org.uk> <1247508455-4392-2-git-send-email-jon.turney@dronecode.org.uk> Message-ID: <1247508455-4392-3-git-send-email-jon.turney@dronecode.org.uk> Workaround a bug in iiimxcf (assuming the WM_STATE atom exists), which can cause many Solaris clients to simply fail with a BadAtom error Signed-off-by: Jon TURNEY --- hw/xwin/winmultiwindowwm.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/hw/xwin/winmultiwindowwm.c b/hw/xwin/winmultiwindowwm.c index c2d506a..81b9d7f 100644 --- a/hw/xwin/winmultiwindowwm.c +++ b/hw/xwin/winmultiwindowwm.c @@ -1005,6 +1005,16 @@ winMultiWindowXMsgProc (void *pArg) "WM_CHANGE_STATE", False); + /* + iiimxcf had a bug until 2009-04-27, assuming that the + WM_STATE atom exists, causing clients to fail with + a BadAtom X error if it doesn't. + + Since this is on in the default Solaris 10 install, + workaround this by making sure it does exist... + */ + XInternAtom(pProcArg->pDisplay, "WM_STATE", 0); + /* Loop until we explicitly break out */ while (1) { -- 1.6.3.2 -- 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 Jul 13 18:07:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 13 Jul 2009 18:07:00 -0000 Subject: [PATCH 1/2] Cygwin/X: Always use an authorization cookie for internal clients In-Reply-To: <1247508455-4392-1-git-send-email-jon.turney@dronecode.org.uk> References: <1247508455-4392-1-git-send-email-jon.turney@dronecode.org.uk> Message-ID: <1247508455-4392-2-git-send-email-jon.turney@dronecode.org.uk> Don't conditionalize use of a authorization cookie for internal client threads on XCSECURITY, always use one (this avoids certain problems with XDMCP setups where the XDMCP host removes localhost from the access list etc.) Conditionalize the use of a XCSECURITY authorization descriptor on XCSECURITY Consolidate the various places where the authorization cookie is set for internal threads into a new function, winSetAuthorization() Use authorization cookie for multiwindow WM X message thread as well Signed-off-by: Jon TURNEY --- hw/xwin/InitOutput.c | 2 - hw/xwin/win.h | 3 +- hw/xwin/winauth.c | 103 +++++++++++++++++++++++++++++++++++------- hw/xwin/winclipboardthread.c | 19 +------- hw/xwin/winmultiwindowwm.c | 19 ++------ include/os.h | 2 + 6 files changed, 96 insertions(+), 52 deletions(-) diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c index 97e27eb..4c8c0fd 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -1013,11 +1013,9 @@ InitOutput (ScreenInfo *screenInfo, int argc, char *argv[]) #if defined(XWIN_CLIPBOARD) || defined(XWIN_MULTIWINDOW) -#if defined(XCSECURITY) /* Generate a cookie used by internal clients for authorization */ if (g_fXdmcpEnabled || g_fAuthEnabled) winGenerateAuthorization (); -#endif /* Perform some one time initialization */ if (1 == serverGeneration) diff --git a/hw/xwin/win.h b/hw/xwin/win.h index 271bb20..10290f2 100644 --- a/hw/xwin/win.h +++ b/hw/xwin/win.h @@ -768,10 +768,9 @@ winAllocateCmapPrivates (ColormapPtr pCmap); */ #if defined(XWIN_CLIPBOARD) || defined(XWIN_MULTIWINDOW) -# if defined(XCSECURITY) Bool winGenerateAuthorization (void); -# endif +void winSetAuthorization(void); #endif diff --git a/hw/xwin/winauth.c b/hw/xwin/winauth.c index b57a35a..fcd1872 100644 --- a/hw/xwin/winauth.c +++ b/hw/xwin/winauth.c @@ -1,7 +1,3 @@ -#ifdef HAVE_XWIN_CONFIG_H -#include -#endif -#if defined(XCSECURITY) /* *Copyright (C) 2003-2004 Harold L Hunt II All Rights Reserved. * @@ -32,12 +28,14 @@ * Authors: Harold L Hunt II */ +#ifdef HAVE_XWIN_CONFIG_H +#include +#endif + #include "win.h" /* Includes for authorization */ -#include #include "securitysrv.h" -#include /* @@ -48,13 +46,76 @@ /* - * Globals + * Locals + */ + +static XID g_authId = 0; +static unsigned int g_uiAuthDataLen = 0; +static char *g_pAuthData = NULL; + +/* + * Code to generate a MIT-MAGIC-COOKIE-1, copied from under XCSECURITY */ -XID g_authId = 0; -unsigned int g_uiAuthDataLen = 0; -char *g_pAuthData = NULL; +#ifndef XCSECURITY +static +void +GenerateRandomData (int len, char *buf) +{ + int fd; + + fd = open("/dev/urandom", O_RDONLY); + read(fd, buf, len); + close(fd); +} + + +static char cookie[16]; /* 128 bits */ + +XID +static MitGenerateCookie ( + unsigned data_length, + char *data, + XID id, + unsigned *data_length_return, + char **data_return) +{ + int i = 0; + int status; + + while (data_length--) + { + cookie[i++] += *data++; + if (i >= sizeof (cookie)) i = 0; + } + GenerateRandomData(sizeof (cookie), cookie); + status = MitAddCookie(sizeof (cookie), cookie, id); + if (!status) + { + id = -1; + } + else + { + *data_return = cookie; + *data_length_return = sizeof (cookie); + } + return id; +} +static +XID +GenerateAuthorization( + unsigned name_length, + char *name, + unsigned data_length, + char *data, + unsigned *data_length_return, + char **data_return) +{ + return MitGenerateCookie(data_length, data, + FakeClientID(0), data_length_return, data_return); +} +#endif /* * Generate authorization cookie for internal server clients @@ -78,15 +139,15 @@ winGenerateAuthorization () ErrorF ("winGenerateAuthorization - GenerateAuthorization failed\n"); goto auth_bailout; } -#if 0 + else { - ErrorF ("winGenerateAuthorization - GenerateAuthorization success!\n" + winDebug("winGenerateAuthorization - GenerateAuthorization success!\n" "AuthDataLen: %d AuthData: %s\n", g_uiAuthDataLen, g_pAuthData); } -#endif - + +#ifdef XCSECURITY /* Allocate structure for additional auth information */ pAuth = (SecurityAuthorizationPtr) xalloc (sizeof (SecurityAuthorizationRec)); @@ -119,7 +180,8 @@ winGenerateAuthorization () /* Don't free the auth data, since it is still used internally */ pAuth = NULL; - +#endif + return TRUE; auth_bailout: @@ -128,4 +190,13 @@ winGenerateAuthorization () return FALSE; } -#endif + +/* Use our generated cookie for authentication */ +void +winSetAuthorization(void) +{ + XSetAuthorization (AUTH_NAME, + strlen (AUTH_NAME), + g_pAuthData, + g_uiAuthDataLen); +} diff --git a/hw/xwin/winclipboardthread.c b/hw/xwin/winclipboardthread.c index 7eabb0f..3b81e90 100644 --- a/hw/xwin/winclipboardthread.c +++ b/hw/xwin/winclipboardthread.c @@ -38,27 +38,15 @@ #ifdef __CYGWIN__ #include #endif -#include "X11/Xauth.h" #include /* - * Constants - */ - -#define AUTH_NAME "MIT-MAGIC-COOKIE-1" - - -/* * References to external symbols */ extern Bool g_fUnicodeClipboard; extern unsigned long serverGeneration; -#if defined(XCSECURITY) -extern unsigned int g_uiAuthDataLen; -extern char *g_pAuthData; -#endif extern Bool g_fClipboardStarted; extern HWND g_hwndClipboard; extern void *g_pClipboardDisplay; @@ -154,13 +142,8 @@ winClipboardProc (void *pvNotUsed) pthread_exit (NULL); } -#if defined(XCSECURITY) /* Use our generated cookie for authentication */ - XSetAuthorization (AUTH_NAME, - strlen (AUTH_NAME), - g_pAuthData, - g_uiAuthDataLen); -#endif + winSetAuthorization(); /* Set error handler */ XSetErrorHandler (winClipboardErrorHandler); diff --git a/hw/xwin/winmultiwindowwm.c b/hw/xwin/winmultiwindowwm.c index 2567a78..c2d506a 100644 --- a/hw/xwin/winmultiwindowwm.c +++ b/hw/xwin/winmultiwindowwm.c @@ -86,8 +86,6 @@ extern void winUpdateRgnMultiWindow(WindowPtr pWin); #endif #define WIN_JMP_OKAY 0 #define WIN_JMP_ERROR_IO 2 -#define AUTH_NAME "MIT-MAGIC-COOKIE-1" - /* * Local structures @@ -136,11 +134,6 @@ typedef struct _XMsgProcArgRec { extern char *display; extern void ErrorF (const char* /*f*/, ...); -#if defined(XCSECURITY) -extern unsigned int g_uiAuthDataLen; -extern char *g_pAuthData; -#endif - /* * Prototypes for local functions @@ -930,6 +923,9 @@ winMultiWindowXMsgProc (void *pArg) /* Print the display connection string */ ErrorF ("winMultiWindowXMsgProc - DISPLAY=%s\n", pszDisplay); + + /* Use our generated cookie for authentication */ + winSetAuthorization(); /* Initialize retry count */ iRetries = 0; @@ -1284,14 +1280,9 @@ winInitMultiWindowWM (WMInfoPtr pWMInfo, WMProcArgPtr pProcArg) /* Print the display connection string */ ErrorF ("winInitMultiWindowWM - DISPLAY=%s\n", pszDisplay); -#if defined(XCSECURITY) /* Use our generated cookie for authentication */ - XSetAuthorization (AUTH_NAME, - strlen (AUTH_NAME), - g_pAuthData, - g_uiAuthDataLen); -#endif - + winSetAuthorization(); + /* Open the X display */ do { diff --git a/include/os.h b/include/os.h index 77e9448..43ea210 100644 --- a/include/os.h +++ b/include/os.h @@ -388,6 +388,7 @@ extern int AddAuthorization( unsigned int /*data_length*/, char * /*data*/); +#ifdef XCSECURITY extern XID GenerateAuthorization( unsigned int /* name_length */, char * /* name */, @@ -395,6 +396,7 @@ extern XID GenerateAuthorization( char * /* data */, unsigned int * /* data_length_return */, char ** /* data_return */); +#endif extern int ddxProcessArgument(int /*argc*/, char * /*argv*/ [], int /*i*/); -- 1.6.3.2 -- 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 dk068x@att.com Mon Jul 13 19:35:00 2009 From: dk068x@att.com (KARR, DAVID (ATTCINW)) Date: Mon, 13 Jul 2009 19:35:00 -0000 Subject: Often lose window decoration when restore from standby Message-ID: I'm using Cygwin 1.5.25 on WinXPSP2, along with Cygwin-built GNU Emacs 23.0.92.1. I run startxwin.bat on system startup. After it comes up, I run Emacs, and I get a good window with normal Windows-based window decorations. My Windows shortcut does this: C:\cygwin\bin\rxvt.exe -geometry 1x1 -ls -cd c:\cygwin\home\dk068x -e /usr/bin/bash -l -c /usr/bin/emacs I often find that after I restore from Standby, I see an odd symptom, in that the Emacs window no longer has any window decorations. The edge of the Emacs menu bar is the edge of the window. If I kill the Emacs process and start it again from the shortcut, even that doesn't fix it. What fixes it is killing the Xwin process, rerunning startxwin.bat, and then rerunning Emacs. -- 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 Jul 15 17:52:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 15 Jul 2009 17:52:00 -0000 Subject: Often lose window decoration when restore from standby In-Reply-To: References: Message-ID: <4A5E1750.3030807@dronecode.org.uk> On 13/07/2009 20:35, KARR, DAVID (ATTCINW) wrote: > I'm using Cygwin 1.5.25 on WinXPSP2, along with Cygwin-built GNU Emacs > 23.0.92.1. > > I run startxwin.bat on system startup. After it comes up, I run Emacs, > and I get a good window with normal Windows-based window decorations. > My Windows shortcut does this: > > C:\cygwin\bin\rxvt.exe -geometry 1x1 -ls -cd c:\cygwin\home\dk068x -e > /usr/bin/bash -l -c /usr/bin/emacs > > I often find that after I restore from Standby, I see an odd symptom, in > that the Emacs window no longer has any window decorations. The edge of > the Emacs menu bar is the edge of the window. If I kill the Emacs > process and start it again from the shortcut, even that doesn't fix it. > What fixes it is killing the Xwin process, rerunning startxwin.bat, and > then rerunning Emacs. Very interesting, but I'm afraid I can't reproduce this problem. Does this only affect emacs? or all X windows? This might be caused by the internal WM thread not being able to talk to the server anymore after a resume, but I would have thought that would cause the whole process to terminate... Can I see a /var/log/Xwin.0.log, please? -- 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 Jul 15 21:44:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 15 Jul 2009 21:44:00 -0000 Subject: 1.5.25: Problem with XtAppAddWorkProc and OptionMenu In-Reply-To: <88D3DC9BA889AA40B268DC9974D57000437466@NRGAEX.arh.nrgnet.intra> References: <88D3DC9BA889AA40B268DC9974D57000437466@NRGAEX.arh.nrgnet.intra> Message-ID: <4A5E4DC5.5070805@dronecode.org.uk> On 10/07/2009 09:19, Wakker, P.H. (Pieter) wrote: > I am running CYGWIN 1.5.25 on Windows XP pack 2. I have a XWindows > graphics program that uses several XmOptionMenu widgets. The problem is > that whenever the user clicks frequently (sometimes a double-click is > enough) on these OptionMenu's the program crashes with a segmentation > error. This behaviour is not noticeable with the same program on HP-UX. I'm not sure what this means you tried? Building the same client program on HP-UX (which possibly has a completely different lesstif/motif library)? I am dubious this is a cygwin-specific issue (Cygwin's lesstif only has a couple of minor patches to the configury to make it build) > I reproduced the problem in the test program below. It seems as if the > combination of the WorkProc and the OptionMenu causes the problem. If I > remove the XtAppAddWorkProc statement there is no problem, but the only > widget that causes the crash is an OptionMenu (for example with a > PushButton I can't reproduce the crash). > Another thing I noticed is that when I reduce the number of microseconds > in the usleep command, I have to click faster to make the program crash. > It seems as if there is a relationship with how long the program is busy > in the WorkProc. In the actual program the usleep is replaced by > something useful of course. Thanks for the test-case. With a bit of frantic clicking, I can reproduce the problem with a crash in XmInputInGadget(). Unfortunately I have no clue about lesstif internals so you might get more help via [1] [1] http://www.lesstif.org/bugs.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 Syntra5@floralandgourmet.net Thu Jul 16 07:54:00 2009 From: Syntra5@floralandgourmet.net (Syntra-5 clinical results) Date: Thu, 16 Jul 2009 07:54:00 -0000 Subject: Blood sugar health discovery. Full clinical study results Message-ID: <1093116.1247730831.JavaMail.root@floralandgourmet.net> Use it to lower your blood sugar and a whole lot more: http://www.floralandgourmet.net/wonderful/syntra.html Syntra-5(TM) 90 Day Double-Blind Clinical Study Results: - Fasting Blood Sugar from 196 to 89 - A1c from 7.7 to 4.6 - Cholesterol - from 338 to 240 - Triglycerides - from 255 to 203 - Blood Pressure - from 171/75 to 146/70 Does not apply to you: http://www.floralandgourmet.net/wonderful/5.html 17011 Lincoln Ave, #352 mOlJaZO5g\XRYDNkI`YN5QdR Parker, CO 80134 To update your receiving settings from the Ultra Finding Family please visit http://www.floralandgourmet.net/wonderful/fan.jsp?=cygwin-xfree@cygwin.com or you can write us at 361 S Camino Del Rio Suite 162 Durango, CO 81303-7997 -- 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 Jul 16 18:45:00 2009 From: john@asyn.org (john@asyn.org) Date: Thu, 16 Jul 2009 18:45:00 -0000 Subject: Audible bell broken in bash/xterm Message-ID: I've installed Cygwin/X on both XP Pro and laVista Home Basic systems and the bell doesn't work. The bell does work in a console window but not in an xterm. Am I missing something or is this a bug? How is the char [supposed to be] routed through bash/xterm/XWin to create the audible response? Both systems are fresh installs (as of last week) with no config changes or errors during the installs. 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 Ecclesiasticus@bluemoonring.net Thu Jul 16 20:43:00 2009 From: Ecclesiasticus@bluemoonring.net (Jeff Carter) Date: Thu, 16 Jul 2009 20:43:00 -0000 Subject: We just found you a position Message-ID: Hey there! Did you know about this? I read it and I was like, can I do this? And then I tried - and it is great. http://bluemoonring.net/C/68/201/234320 It's the simplest way to earn a few extra bux on your time. Simple-Easy-Fun. If I can do it - you can do it. Start living for yourself and not some boss. You can get all the details here: http://bluemoonring.net/C/68/201/234320 Start today and leave the rats in the race. Jeff Carter ps - you'll never get ahead signing the backs of those paychecks. For Elimination follow here: http://Ecclesiasticus.bluemoonring.net/c/u/18/201/234320 CMI P.O. Box 150181 Altamonte Springs, FL 32715 To say goodbye to us forever and no longer hear from us, please follow this. http://Ecclesiasticus.bluemoonring.net/c/u/1/201/234320 Or, you can send us a line at 6005 S Eastern Ave #3 Las Vegas, Navada 89119, simply print this email and return or simply reply. -- 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 dickey@his.com Thu Jul 16 21:42:00 2009 From: dickey@his.com (Thomas Dickey) Date: Thu, 16 Jul 2009 21:42:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: References: Message-ID: <20090716174117.O25369@mail101.his.com> On Thu, 16 Jul 2009, john@asyn.org wrote: > > I've installed Cygwin/X on both XP Pro and laVista Home Basic systems and > the bell doesn't work. The bell does work in a console window but not in > an xterm. Am I missing something or is this a bug? How is the char > [supposed to be] routed through bash/xterm/XWin to create the audible > response? Both systems are fresh installs (as of last week) with no config > changes or errors during the installs. What's "xterm -v" say? Audible bell was broken in #242, and fixed in #243. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- 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 support@mostra.us Thu Jul 16 22:53:00 2009 From: support@mostra.us (=?UTF-8?B?66+46rWtMTFjb2xvcg==?=) Date: Thu, 16 Jul 2009 22:53:00 -0000 Subject: =?UTF-8?B?66+46rWt7Jy866GcIOygnO2SiOydhCDtjIzsi63si5zsmpQsICDrr7jqta0g?= =?UTF-8?B?MTFjb2xvciDsnoXri4jri6Qu?= Message-ID: <9bf6608138643696878a7c80f180a69f@mostra.us> ???????????? ???? ?????????????? ????????? ????????? ??????????????? ????????? 11??????(11color)?????? ?????????. ??????????????? ?????? ???????????? ?????? ????????? ???????????????. ?????? ??????????????? ????????? ???????????? ????????? ?????????????????????? ??????????????? ???????????? ???????????? ?????????, ????????? ??????????????? ????????? ????????? ?????? ??????????????????. ????????? ??????????????? ????????? ?????????????????? ?????? ???????? ??????. ????????? ??????????????? ????????? ????????? ???????????? ????????? ???????? ??????. 11??????(11color)??? ????????? ????????? ?????????, ???????????? ????????? ???????????? ???????????????????????? ???????????? ????????? ??????????????? ????????? ????????? ?? ??????. ????????? ????????? ???????????? ????????? ????????? ???????????? ?????? ?????? ?????????????? ??????. ?????????????????????????????? ???????????? ????????? ????????? ????????? ???????????? ???????????? ?????? ???????????? ?????? ???????????? ????????? ????? ??? ???????? ??????. ????????? ???????????? ?????? ????????? 11??????(11color)??? ????????? ????????? ?????? ???????????? ??????????????? ????????? ???????????? ??????????????? ??????, ???????????? ????????? ????????????, 11??????(11color)??? ??????????????? ???????????? 100% ????????????????????? ???????????? ?????? ???????????? ???????????? ???????????? ???????????? ??????????????? ????????? ???????????? ?????????. ????????????????????? ????????? ??????????????? ?????? ???????????? ????????? ??????????????? ????????????. ????????? ??????????????? ????? ??????; 1. ?????? ???????????? ?????? ??????????????? ????????? ????? ????????????, 2. ????????? ????????????????????? ????????????, 3, ??????????????? ???????????? ??????????????? ???????????? ????????? ??????, 4. ???????????? ????????? ?????? ????????? ??????????????? ???????????? ???????????? ????????????, 5. ??????????????? ????????? ????????? ??????????????? ?????????????????? ?????? ????????? ????????? ????? ??????. ?????? ????????? ?????????????????? ????????? ????????? ???????????????. ????????? ??????????????? ???? ???? ??????????????? ???????????? ????????? ????????? ????????? ?????? ?????? ??????????????????. ?????? ??????????????? 10?????? ????????? ????????? ????????? ??????????????? ?????????????????? ?????? ???????????? ????????? ?????????????? ??????. ????????? ??????????????? ????????????????????? ????????? ???????????? ?????? ??????????????? ????????? ??????????????? ?????????????????????. 11??????(11color)??? ???????????? ????????? ??????, ???????????? ???????????? ???????????? ?????? ????????????, ???????????? ?????????, ?????????, ?????????, ???????????? ?????????, ??????, ?????? ?????? ???????????? ????????? ?????????. ????????? ?????? ???????????? ???????????? ????????????. ?????? ?????? ???????????? ????? ?????? ???????????? ???????????????, ????????? ??????????????? ????????????. ???, ??????????????? ???????????? ??????, ????????????????????? ????????????. ????????? ????????? 11??????(11color)(http://www.11color.com)??? ??????????????? ????????? ????????? ?????? ??????????????? ?????? ??????????????? ???????????? ????????? ?????????. ??????????????? ???????????? ????????? ????????? 30???????????? ????????? ?????????????????????. ??????????????? ???????????? ???????????? ???? ???? ?????? ??????????????? 2???????? , ???????????? 30????????? ????????? ?????????????????? ????????? ?????? ????????????. ?????? ????????? ???????????????, ???????????? ????????????, ????????? ?????????, ?????????, ???????????? ???????????? ?????? ???????????? 6????? ?? ??????. ????????? ???????????? 1??? 4??? 7???????? , ????????? ???????????? 1??? 4??? 4???????? , ???????????????????????? 1??? 2??? 3???????? , ????????? ???????????? ???????????? 6??? 3??? 5???????? , ???????????? 4??? 7??? 4???????? ?? ??????. ?????? ????????? ?????? 5??? 2???5???9???????? ??? 4?????? ???????????? ??????, ????????? ???????????? ???????????? 11??????(11color)??? ????????? ?????? ??? 6????? ??? ??????????????? ????????? ?????????????????? ???????????? ????????????. ???, ??????????????? ?????? ???? ??????? ????????? 10?????? ????????? ????????????, ????????? ?????? ????????? ???????????? ?????? 300?????? ??????????????? ????????? ????????????. ???, ????????? ???????????? 30?????? ????????? ?????????????????? ????????? ????????? ????????????. ??????????????? ????????? ??????????????? ?????????? ???? ?????????????????? ????????????. ?????????????????? http://www.11color.com ?? ??????. ????????? ??????????????? ?????? ??????????????? ??????????????? ????????????. ???????????????. ?????? 11??????(11color)?????? ????????? ?????? -- 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 jjreisert@alum.mit.edu Thu Jul 16 22:59:00 2009 From: jjreisert@alum.mit.edu (Jim Reisert AD1C) Date: Thu, 16 Jul 2009 22:59:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: <20090716174117.O25369@mail101.his.com> References: <20090716174117.O25369@mail101.his.com> Message-ID: <806a89db0907161559r465613faj68071058128dff7e@mail.gmail.com> Mine says (242). There is no more recent (non-experimental) version available from Cygwin 1.7 setup. On Thu, Jul 16, 2009 at 3:42 PM, Thomas Dickey wrote: > On Thu, 16 Jul 2009, john@asyn.org wrote: > >> >> I've installed Cygwin/X on both XP Pro and laVista Home Basic systems and >> the bell doesn't work. The bell does work in a console window but not in >> an xterm. Am I missing something or is this a bug? How is the char >> [supposed to be] routed through bash/xterm/XWin to create the audible >> response? Both systems are fresh installs (as of last week) with no config >> changes or errors during the installs. > > What's "xterm -v" say? > > Audible bell was broken in #242, and fixed in #243. -- Jim Reisert AD1C, , http://www.ad1c.us -- 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 dickey@his.com Thu Jul 16 23:06:00 2009 From: dickey@his.com (Thomas Dickey) Date: Thu, 16 Jul 2009 23:06:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: <806a89db0907161559r465613faj68071058128dff7e@mail.gmail.com> References: <20090716174117.O25369@mail101.his.com> <806a89db0907161559r465613faj68071058128dff7e@mail.gmail.com> Message-ID: <20090716190106.K25369@mail101.his.com> On Thu, 16 Jul 2009, Jim Reisert AD1C wrote: > Mine says (242). There is no more recent (non-experimental) version > available from Cygwin 1.7 setup. I don't have any influence on Cygwin's setup. (You may be able to select an older version - I'd just compile my own copy of xterm though). > > On Thu, Jul 16, 2009 at 3:42 PM, Thomas Dickey wrote: >> On Thu, 16 Jul 2009, john@asyn.org wrote: >> >>> >>> I've installed Cygwin/X on both XP Pro and laVista Home Basic systems and >>> the bell doesn't work. The bell does work in a console window but not in >>> an xterm. Am I missing something or is this a bug? How is the char >>> [supposed to be] routed through bash/xterm/XWin to create the audible >>> response? Both systems are fresh installs (as of last week) with no config >>> changes or errors during the installs. >> >> What's "xterm -v" say? >> >> Audible bell was broken in #242, and fixed in #243. > > > -- > Jim Reisert AD1C, , http://www.ad1c.us > > -- > 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/ > > -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- 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 Jul 16 23:42:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Thu, 16 Jul 2009 23:42:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: <20090716174117.O25369@mail101.his.com> References: <20090716174117.O25369@mail101.his.com> Message-ID: <4A5FBB00.5070709@users.sourceforge.net> On 16/07/2009 16:42, Thomas Dickey wrote: > What's "xterm -v" say? > > Audible bell was broken in #242, and fixed in #243. Looks like I missed that. I'll upload 243-1 soon. 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 dickey@his.com Fri Jul 17 00:16:00 2009 From: dickey@his.com (Thomas Dickey) Date: Fri, 17 Jul 2009 00:16:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: <4A5FBB00.5070709@users.sourceforge.net> References: <20090716174117.O25369@mail101.his.com> <4A5FBB00.5070709@users.sourceforge.net> Message-ID: <20090716201509.I25369@mail101.his.com> On Thu, 16 Jul 2009, Yaakov (Cygwin/X) wrote: > On 16/07/2009 16:42, Thomas Dickey wrote: >> What's "xterm -v" say? >> >> Audible bell was broken in #242, and fixed in #243. > > Looks like I missed that. I'll upload 243-1 soon. thanks. The only other regression that I know of is a repainting bug (fixed after I'd started a large rewrite...). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- 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 Fri Jul 17 03:12:00 2009 From: john@asyn.org (john@asyn.org) Date: Fri, 17 Jul 2009 03:12:00 -0000 Subject: Audible bell broken in bash/xterm In-Reply-To: <20090716174117.O25369@mail101.his.com> References: <20090716174117.O25369@mail101.his.com> Message-ID: On Thu, 16 Jul 2009, Thomas Dickey wrote: > On Thu, 16 Jul 2009, john@asyn.org wrote: > > > > > I've installed Cygwin/X on both XP Pro and laVista Home Basic systems and > > the bell doesn't work. The bell does work in a console window but not in > > an xterm. Am I missing something or is this a bug? How is the char > > [supposed to be] routed through bash/xterm/XWin to create the audible > > response? Both systems are fresh installs (as of last week) with no config > > changes or errors during the installs. > > What's "xterm -v" say? > > Audible bell was broken in #242, and fixed in #243. It says 242... 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 dk068x@att.com Fri Jul 17 05:00:00 2009 From: dk068x@att.com (KARR, DAVID (ATTCINW)) Date: Fri, 17 Jul 2009 05:00:00 -0000 Subject: Often lose window decoration when restore from standby In-Reply-To: <4A5E1750.3030807@dronecode.org.uk> References: <4A5E1750.3030807@dronecode.org.uk> Message-ID: > -----Original Message----- > From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Sent: Wednesday, July 15, 2009 10:52 AM > To: cygwin-xfree@cygwin.com > Cc: KARR, DAVID (ATTCINW) > Subject: Re: Often lose window decoration when restore from standby > > On 13/07/2009 20:35, KARR, DAVID (ATTCINW) wrote: > > I'm using Cygwin 1.5.25 on WinXPSP2, along with Cygwin-built GNU > Emacs > > 23.0.92.1. > > > > I run startxwin.bat on system startup. After it comes up, I run > Emacs, > > and I get a good window with normal Windows-based window decorations. > > My Windows shortcut does this: > > > > C:\cygwin\bin\rxvt.exe -geometry 1x1 -ls -cd > c:\cygwin\home\dk068x -e > > /usr/bin/bash -l -c /usr/bin/emacs > > > > I often find that after I restore from Standby, I see an odd symptom, > in > > that the Emacs window no longer has any window decorations. The edge > of > > the Emacs menu bar is the edge of the window. If I kill the Emacs > > process and start it again from the shortcut, even that doesn't fix > it. > > What fixes it is killing the Xwin process, rerunning startxwin.bat, > and > > then rerunning Emacs. > > Very interesting, but I'm afraid I can't reproduce this problem. > > Does this only affect emacs? or all X windows? > > This might be caused by the internal WM thread not being able to talk > to the > server anymore after a resume, but I would have thought that would > cause the > whole process to terminate... > > Can I see a /var/log/Xwin.0.log, please? Attached is the latest XWin.0.log, after I noticed the window decorations gone again. I'm not sure if it's happening with other X apps. This is the only one I use right now. -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 3085 bytes Desc: XWin.0.log 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 peter.green@frixo.com Fri Jul 17 10:38:00 2009 From: peter.green@frixo.com (Peter Green) Date: Fri, 17 Jul 2009 10:38:00 -0000 Subject: Question about www.lodzvmi.pl/ Message-ID: <44F607123ABB41968A8538C593963F20@twean.com> Hi, I was wondering whether you would be interested in linking to my website http://www.frixo.com from your page? http://www.lodzvmi.pl/brochure-technique-mercedes-vito-1996.html Frixo is a road traffic reporting site and think it may be a useful resource for your readers. It provides users with live traffic information and gets updated every 3 minutes using various road sensors. Thank you for your consideration. Kind Regards, Peter http://www.frixo.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@tlinx.org Sun Jul 19 05:20:00 2009 From: cygwin@tlinx.org (Linda Walsh) Date: Sun, 19 Jul 2009 05:20:00 -0000 Subject: Why is remote client being rejected? AUDIT: XWin: client 4 rejected from IP 192.168.3.3 Message-ID: <4A62AD03.9050907@tlinx.org> Yes I've read the FAQ -- it doesn't help. Is says: The problem is most likely a wrong DNS (Network name resolution). Make sure your windows host has a hostname which is valid from linux too and an IP address which linux can resolve to that hostname. --- What DNS resolution? If you add a line 192.168.26.1 myhost to /etc/hosts on the XDMCP server with the IP address and the hostname of your windows host the name resolution should work. XDMCP server? I'm not trying to connect to an XDMP server. I'm trying to open 'xosview&' on a remote host with DISPLAY=mycywin-window-machine:0.0 (or machine:0), neither work. Yes I export the variable on the remote machine or I wouldn't be getting the rejected message in my local cygwin XWin /var/log/XWin.0.log file. It =works= if I let it connect through my 'ssh' connection but that's really connecting back to ssh on the cygwin machine and connecting, AFAIK, via the local socket or local host. I wanted to try connecting NOT through my ssh connection so I could close the ssh connection and have the remote xosview continue running. Thanks for ideas... Linda -- 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 Jul 19 13:46:00 2009 From: john@asyn.org (john@asyn.org) Date: Sun, 19 Jul 2009 13:46:00 -0000 Subject: Why is remote client being rejected? AUDIT: XWin: client 4 rejected from IP 192.168.3.3 In-Reply-To: <4A62AD03.9050907@tlinx.org> References: <4A62AD03.9050907@tlinx.org> Message-ID: On Sat, 18 Jul 2009, Linda Walsh wrote: > Yes I've read the FAQ -- it doesn't help. Is says: > > > The problem is most likely a wrong DNS (Network name resolution). Make sure > your windows host has a hostname which is valid from linux too and an IP > address which linux can resolve to that hostname. > --- > What DNS resolution? > > If you add a line > > 192.168.26.1 myhost > > to /etc/hosts on the XDMCP server with the IP address and the hostname of your > windows host the name resolution should work. > XDMCP server? I'm not trying to connect to an XDMP server. > > I'm trying to open > 'xosview&' > on a remote host with DISPLAY=mycywin-window-machine:0.0 > (or machine:0), neither work. > Yes I export the variable on the remote machine or I wouldn't be getting > the rejected message in my local cygwin XWin /var/log/XWin.0.log file. > > It =works= if I let it connect through my 'ssh' connection but that's really > connecting back to ssh on the cygwin machine and connecting, AFAIK, > via the local socket or local host. > > I wanted to try connecting NOT through my ssh connection so I could close the > ssh connection and have the remote xosview continue running. > > Thanks for ideas... > Linda > Have you added the client to your X server's acl? See xhost(1) Also, running your X client in the background does not disconnect it from the terminal from which you launched it. If you close the terminal, the client app will die. -- 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 Jul 19 14:18:00 2009 From: john@asyn.org (john@asyn.org) Date: Sun, 19 Jul 2009 14:18:00 -0000 Subject: Why is remote client being rejected? AUDIT: XWin: client 4 rejected from IP 192.168.3.3 In-Reply-To: References: <4A62AD03.9050907@tlinx.org> Message-ID: Disregard the bit about the client dieing if you close the terminal. The problem seems to have been fixed (it's been a LONG time since I tried it). On Sun, 19 Jul 2009, john@asyn.org wrote: > Also, running your X client in the background does not disconnect it from > the terminal from which you launched it. If you close the terminal, the > client app will die. -- 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@tlinx.org Sun Jul 19 17:55:00 2009 From: cygwin@tlinx.org (Linda Walsh) Date: Sun, 19 Jul 2009 17:55:00 -0000 Subject: Why is remote client being rejected? AUDIT: XWin: client 4 rejected from IP 192.168.3.3 In-Reply-To: References: <4A62AD03.9050907@tlinx.org> Message-ID: <4A635E00.3010502@tlinx.org> john@asyn.org wrote: > Have you added the client to your X server's acl? See xhost(1) --- I thought I'd turned off access checking. I forgot I had to redo my script when there was a major X-server upgrade, a few months ago -- Not something I 'normally use'... (Am pretty safe, regardless, as I'm doing this on an isolated, wired, subnet in my house, so I feel pretty safe unless my beagle orders a computer. > Also, running your X client in the background does not disconnect it from > the terminal from which you launched it. If you close the terminal, the > client app will die. Yeah, know about that one: (xosview&) saves it from the HUP's when the window closes... THANKS! Linda -- 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 Mon Jul 20 09:52:00 2009 From: Phil.Betts@ascribe.com (Phil Betts) Date: Mon, 20 Jul 2009 09:52:00 -0000 Subject: Why is remote client being rejected? AUDIT: XWin: client 4 rejected from IP 192.168.3.3 In-Reply-To: <4A635E00.3010502@tlinx.org> References: <4A62AD03.9050907@tlinx.org> <4A635E00.3010502@tlinx.org> Message-ID: <5E25AF06EFB9EA4A87C19BC98F5C875303E645DE@core-email.int.ascribe.com> Linda Walsh wrote: > Yeah, know about that one: > (xosview&) > saves it from the HUP's when the window closes... No need for that (which adds an unnecessary extra fork), just unset the bash option huponexit (probably in your ~/.bashrc): shopt -u huponexit Although I think that's the default setting now. Phil -- This email has been scanned by Ascribe Ltd using Microsoft Antigen for Exchange. From DT6667@att.com Mon Jul 20 15:20:00 2009 From: DT6667@att.com (THORBURN-GUNDLACH, DAVID T-G (ATTSI)) Date: Mon, 20 Jul 2009 15:20:00 -0000 Subject: cannot type in my xterm after new installation Message-ID: <9E9D4A002A389F45BA8786E7166B4E3A09ECDE71@WWDCEXCH26.US.Cingular.Net> Hi, all -- I've just done a fresh Cygwin install on a new laptop and have run into some interesting challenges. I copied over my old startxwin.bat file from another machine and can now throw up an xterm and such, but all is still not well. I've noted other posts on how to get rid of the toolbar but didn't actually see where (.Xdefaults? xapplres? other?) and how (???) to do so, so I'm dealing with it at the moment. More interestingly, though, is that I cannot interact with an xterm after it opens no matter what sorts of toolbar changes I make. I can *see* my prompt there but can't actually do anything! The same goes for an rxvt-x terminal, although an rxvt-native term works just fine. What do I need to do to be able to actually type anything? :-) TIA & HAND :-D -- David T-G davidtg@cingular.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 Jul 20 15:27:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 20 Jul 2009 15:27:00 -0000 Subject: cannot type in my xterm after new installation In-Reply-To: <9E9D4A002A389F45BA8786E7166B4E3A09ECDE71@WWDCEXCH26.US.Cingular.Net> References: <9E9D4A002A389F45BA8786E7166B4E3A09ECDE71@WWDCEXCH26.US.Cingular.Net> Message-ID: <4A648CC5.8020103@dronecode.org.uk> On 20/07/2009 16:20, THORBURN-GUNDLACH, DAVID T-G (ATTSI) wrote: > Hi, all -- > > I've just done a fresh Cygwin install on a new laptop and have run into > some interesting challenges. I copied over my old startxwin.bat file > from another machine and can now throw up an xterm and such, but all is > still not well. > > I've noted other posts on how to get rid of the toolbar but didn't > actually see where (.Xdefaults? xapplres? other?) and how (???) to do > so, so I'm dealing with it at the moment. http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-how-do-i-get-rid-of-xterm-menu > More interestingly, though, is that I cannot interact with an xterm > after it opens no matter what sorts of toolbar changes I make. I can > *see* my prompt there but can't actually do anything! The same goes for > an rxvt-x terminal, although an rxvt-native term works just fine. > > What do I need to do to be able to actually type anything? :-) http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-i-cant-type-anything -- 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 DT6667@att.com Mon Jul 20 15:52:00 2009 From: DT6667@att.com (THORBURN-GUNDLACH, DAVID T-G (ATTSI)) Date: Mon, 20 Jul 2009 15:52:00 -0000 Subject: cannot type in my xterm after new installation In-Reply-To: <4A648CC5.8020103@dronecode.org.uk> References: <9E9D4A002A389F45BA8786E7166B4E3A09ECDE71@WWDCEXCH26.US.Cingular.Net> <4A648CC5.8020103@dronecode.org.uk> Message-ID: <9E9D4A002A389F45BA8786E7166B4E3A09ECDEDA@WWDCEXCH26.US.Cingular.Net> Jon, et al -- % -----Original Message----- % From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] % Subject: Re: cannot type in my xterm after new installation % % On 20/07/2009 16:20, THORBURN-GUNDLACH, DAVID T-G (ATTSI) wrote: % > ... % > I've noted other posts on how to get rid of the toolbar but didn't % > actually see where (.Xdefaults? xapplres? other?) and how % (???) to do % > so, so I'm dealing with it at the moment. % % http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-how-do-i-get- % rid-of-xterm-menu Thanks! % ... % > What do I need to do to be able to actually type anything? :-) % % http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-i-cant-type-anything Grrr... I very carefully looked through the FAQ, figuring I wasn't the only one, but somehow missed this. Thank you for your kind direction :-) HAND :-D -- 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 ykcexyxvpbyt@computerville.com Tue Jul 21 22:54:00 2009 From: ykcexyxvpbyt@computerville.com (chin Thayer) Date: Tue, 21 Jul 2009 22:54:00 -0000 Subject: Why pay thousands for a marketing list Message-ID: <20090721225736.896F29946B0@mercuryspb.com> Are you still looking for directories of US doctors or dentists? I have lots of US medical lists, let me know what you need and I will get you some more info, samples and a good price. you can reach me at: Henrietta@mediadetails.org For your subscription status modification please contact rembox@mediadetails.org -- 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 waqar.ah@gmail.com Wed Jul 22 07:42:00 2009 From: waqar.ah@gmail.com (Waqar Ahmad) Date: Wed, 22 Jul 2009 07:42:00 -0000 Subject: USB Device Configurations in Cygwin Message-ID: <1e71562e0907220041ua0e1b3blaba74de7dae1ab74@mail.gmail.com> I am trying to configure Kannel on Windows Vista using Cygwin. Installation is successful. What I don't know is how to configure a mobile device connected on USB port in Cygwin. I am using Nokia E51 as GSM modem connected via USB cable. This device shows up in Windows Vista Device Manager as connected on COM18. How should I specify settings in the kannel.config so that I can use E51 as GSM Modem? I tried ?device = COM18? and also ?device = /dev/COM18? but they don?t work. I get following error: INFO: AT2[/dev/com18]: opening device 2009-07-21 15:36:32 [8128] [6] ERROR: AT2[/dev/com18]: open failed! ERRNO=2 2009-07-21 15:36:32 [8128] [6] ERROR: System error 2: No such file or directory 2009-07-21 15:36:32 [8128] [6] ERROR: AT2[/dev/com18]: at2_device_thread: open_at2_device failed. 2009-07-21 15:36:32 [8128] [6] ERROR: System error 2: No such file or directory 2009-07-21 15:36:32 [8128] [6] ERROR: AT2[/dev/com18]: Couldn't connect (retrying in 10 seconds). -- 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 corinna-cygwin@cygwin.com Wed Jul 22 07:46:00 2009 From: corinna-cygwin@cygwin.com (Corinna Vinschen) Date: Wed, 22 Jul 2009 07:46:00 -0000 Subject: USB Device Configurations in Cygwin In-Reply-To: <1e71562e0907220041ua0e1b3blaba74de7dae1ab74@mail.gmail.com> References: <1e71562e0907220041ua0e1b3blaba74de7dae1ab74@mail.gmail.com> Message-ID: <20090722074629.GA26768@calimero.vinschen.de> On Jul 22 12:41, Waqar Ahmad wrote: > I am trying to configure Kannel on Windows Vista using Cygwin. > Installation is successful. What I don't know is how to configure a mobile > device connected on USB port in Cygwin. > > I am using Nokia E51 as GSM modem connected via USB cable. This device > shows up in Windows Vista Device Manager as connected on COM18. How > should I specify settings in the kannel.config so that I can use E51 > as GSM Modem? I tried ???device = COM18??? and also ???device = /dev/COM18??? > but they don???t work. The documentation is your friend: http://cygwin.com/1.7/cygwin-ug-net/using-specialnames.html#pathnames-posixdevices Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin AT cygwin DOT com Red Hat -- 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 bert@brothom.nl Wed Jul 22 16:54:00 2009 From: bert@brothom.nl (Bert Thomas) Date: Wed, 22 Jul 2009 16:54:00 -0000 Subject: trouble with fonts Message-ID: <4A67441E.4000600@brothom.nl> Hi all, Can you please have a look at this picture: http://intern.brothom.nl/x-trouble.JPG It shows the trouble I'm experiencing. Perhaps I'm using the wrong terminology, but if I search on google I can't find anything usefull. Fonts of certain programs (QT) appear as square blocks. The programs are running on a remote machine over a putty x11 tunnel. The "eagle" program you see in the background runs on another remote machine over another putty tunnel. That program behaves as expected. I hope someone can give me a hint! Kind regards, Bert Thomas -- 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 Jul 22 17:10:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 22 Jul 2009 17:10:00 -0000 Subject: trouble with fonts In-Reply-To: <4A67441E.4000600@brothom.nl> References: <4A67441E.4000600@brothom.nl> Message-ID: <4A67480A.3030708@dronecode.org.uk> On 22/07/2009 17:53, Bert Thomas wrote: > Hi all, > > Can you please have a look at this picture: > > http://intern.brothom.nl/x-trouble.JPG > > It shows the trouble I'm experiencing. > > Perhaps I'm using the wrong terminology, but if I search on google I > can't find anything usefull. http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-where-are-my-fonts I suspect that installing some fonts might solve your problem. > Fonts of certain programs (QT) appear as square blocks. > > The programs are running on a remote machine over a putty x11 tunnel. > The "eagle" program you see in the background runs on another remote > machine over another putty tunnel. That program behaves as expected. Hmm, yes. It looks like that is using the server-side built-in font successfully, whereas the Qt applications would be using client-side fonts. I don't know quite why this isn't working correctly. I wonder if the character encodings aren't installed unless non-built in fonts are installed, and if that might cause this... -- 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 bert@brothom.nl Wed Jul 22 18:30:00 2009 From: bert@brothom.nl (Bert Thomas) Date: Wed, 22 Jul 2009 18:30:00 -0000 Subject: trouble with fonts In-Reply-To: <4A67480A.3030708@dronecode.org.uk> References: <4A67441E.4000600@brothom.nl> <4A67480A.3030708@dronecode.org.uk> Message-ID: <4A675ACE.7020404@brothom.nl> > http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-where-are-my-fonts > > I suspect that installing some fonts might solve your problem. Now I installed pretty much every font the cygwin setup shows, but same result. >> Fonts of certain programs (QT) appear as square blocks. >> >> The programs are running on a remote machine over a putty x11 tunnel. >> The "eagle" program you see in the background runs on another remote >> machine over another putty tunnel. That program behaves as expected. > > Hmm, yes. It looks like that is using the server-side built-in font > successfully, whereas the Qt applications would be using client-side fonts. client side is remote side, right? Is there a way to convince the apps on the remote side to use the fonts on the server? Regards, Bert -- 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 Jul 22 19:09:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 22 Jul 2009 19:09:00 -0000 Subject: Often lose window decoration when restore from standby In-Reply-To: References: <4A5E1750.3030807@dronecode.org.uk> Message-ID: <4A6763F4.20400@dronecode.org.uk> >> On 13/07/2009 20:35, KARR, DAVID (ATTCINW) wrote: >>> I often find that after I restore from Standby, I see an odd symptom, >>> in that the Emacs window no longer has any window decorations. The edge >>> of the Emacs menu bar is the edge of the window. If I kill the Emacs >>> process and start it again from the shortcut, even that doesn't fix >>> it. What fixes it is killing the Xwin process, rerunning startxwin.bat, >>> and then rerunning Emacs. I assumed that this meant you resume from standby with X server and emacs running and see this behaviour, but I'm having a little difficulty reconciling that with the log below, so can you clarify if I've understood correctly. >> This might be caused by the internal WM thread not being able to talk to >> the server anymore after a resume, but I would have thought that would >> cause the whole process to terminate... Well, in fact it seems that this isn't treated as a fatal error, but perhaps it should be... >> Can I see a /var/log/Xwin.0.log, please? > > Attached is the latest XWin.0.log, after I noticed the window > decorations gone again. I'm not sure if it's happening with other X > apps. This is the only one I use right now. Thanks. Hmm... well, this is not as easy as it might be to interpret (I need to find my patch to add timestamps to the log and make it work properly...), but this looks like the multiwindow mode internal WM client isn't able to connect to the X server at all. winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - Could not open display, try: 1, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 1, sleeping: 5 winInitMultiWindowWM - Could not open display, try: 2, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 2, sleeping: 5 winInitMultiWindowWM - Could not open display, try: 3, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 3, sleeping: 5 winInitMultiWindowWM - Could not open display, try: 4, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 4, sleeping: 5 winInitMultiWindowWM - Could not open display, try: 5, sleeping: 5 winMultiWindowXMsgProc - Could not open display, try: 5, sleeping: 5 winInitMultiWindowWM - Failed opening the display. Exiting. winMultiWindowXMsgProc - Failed opening the display. Exiting. Normally you should get lines like: winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the display. winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the display. So I'm a bit baffled as to how your windows are getting decorated at all... -- 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 daveroth@acm.org Wed Jul 22 19:44:00 2009 From: daveroth@acm.org (David Rothenberger) Date: Wed, 22 Jul 2009 19:44:00 -0000 Subject: Problem with multiwindow and drop-down menus Message-ID: <4A676C16.8050209@acm.org> I'm having a problem with 1.7 when starting the server with -multiwindow. I am trying to run Sun's jconsole application (part of the JDK 6) remotely, but none of the menus work correctly. When I run a separate window manager (wmaker), they work correctly. I can click on a menu and it will stay open. I can move my mouse to select a menu entry and then click again to "make it so". With -multiwindow, clicking on the menu just causes it to flash open. If I hold the mouse down, the menu will stay open, but I can't select any options. The only way I can interact with jconsole is with keyboard shortcuts. Any ideas? Is this some local configuration problem or a known issue with -multiwindow? -- David Rothenberger ---- daveroth@acm.org "From there to here, from here to there, funny things are everywhere." -- Dr. Seuss -- 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 Jul 22 20:46:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 22 Jul 2009 20:46:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xterm-243-1 Message-ID: The following package has been updated for Cygwin 1.7: * xterm-243-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 Wed Jul 22 20:46:00 2009 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Wed, 22 Jul 2009 20:46:00 -0000 Subject: [ANNOUNCEMENT] [1.7] Updated: xorg-server-1.6.2-2 Message-ID: The following package has been updated for Cygwin 1.7: * xorg-server-1.6.2-2 The following patches have been added in this release: * Always use an authorization cookie for internal clients (fixes clipboard integration in XDMCP sessions). * Ensure WM_STATE atom exists in multiwindow mode (fixes BadAtom errors with Solaris X clients). * Fix issue with X window menus sometimes appearing beneath the window which activated it. * The -logverbose option now affects the verbosity of both the logfile and the console output. * Add timestamps to logfile messages. 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 Thu Jul 23 20:15:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 23 Jul 2009 20:15:00 -0000 Subject: trouble with fonts In-Reply-To: <4A675ACE.7020404@brothom.nl> References: <4A67441E.4000600@brothom.nl> <4A67480A.3030708@dronecode.org.uk> <4A675ACE.7020404@brothom.nl> Message-ID: <4A68C4CA.2080400@dronecode.org.uk> On 22/07/2009 19:30, Bert Thomas wrote: >> http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-where-are-my-fonts >> >> I suspect that installing some fonts might solve your problem. > > Now I installed pretty much every font the cygwin setup shows, but same > result. > >>> Fonts of certain programs (QT) appear as square blocks. >>> >>> The programs are running on a remote machine over a putty x11 tunnel. >>> The "eagle" program you see in the background runs on another remote >>> machine over another putty tunnel. That program behaves as expected. >> >> Hmm, yes. It looks like that is using the server-side built-in font >> successfully, whereas the Qt applications would be using client-side >> fonts. > I don't know quite why this isn't working correctly. I wonder if the > character encodings aren't installed unless non-built in fonts are > installed, and if that might cause this... Actually, on actually doing some testing, this idea is wrong. I am able to run kdevelop from a remote Ubuntu 9.04 (Jaunty) host via a ssh tunnel, displaying on the Cygwin/X server with no fonts installed and everything works fine. When you start kdevelop or another problematic application from the remote shell, are there any warnings output? > client side is remote side, right? Is there a way to convince the apps > on the remote side to use the fonts on the server? Can you be a bit more specific about the nature of the remote host with applications which have this problem? Have you seen the applications render their fonts correctly on other remote X servers? -- 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 alister.hood@synergine.com Fri Jul 24 06:47:00 2009 From: alister.hood@synergine.com (Alister Hood) Date: Fri, 24 Jul 2009 06:47:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? Message-ID: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Hi, I've found that -clipboard clashes with Windows clipboard history managers such as Ditto. Does anybody know of a clipboard manager with which it does work? If I run glipper in a linux panel in Colinux, then I can use that, and I imagine I could compile them for Cygwin instead, but the panel is handled as a window (I'm using -multiwindow), and I'd rather use a native Windows clipboard manager anyway, so I can only start X when I need to. Thanks, Alister -- 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 bert@brothom.nl Fri Jul 24 09:29:00 2009 From: bert@brothom.nl (Bert Thomas) Date: Fri, 24 Jul 2009 09:29:00 -0000 Subject: trouble with fonts In-Reply-To: <4A68C4CA.2080400@dronecode.org.uk> References: <4A67441E.4000600@brothom.nl> <4A67480A.3030708@dronecode.org.uk> <4A675ACE.7020404@brothom.nl> <4A68C4CA.2080400@dronecode.org.uk> Message-ID: <4A697F04.90807@brothom.nl> > Can you be a bit more specific about the nature of the remote host with > applications which have this problem? Have you seen the applications > render their fonts correctly on other remote X servers? I installed the X server package on the remote machine and that solved the problem. It's pretty silly, as the remote machine might not even have a physical screen attached, but it solved the problem. I assume because the X application I'm running uses fonts from a local source I guess? I don't understand this fully. I've red somewhere that X applications use a font server. Do they connect to this font server over the same connection as the X server? Thus, if I use a putty X tunnel, does that tunnel provide a path to the font server as well? -- 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 dazzle_white@lintylapse.com Fri Jul 24 16:45:00 2009 From: dazzle_white@lintylapse.com (DazzleWhite: Seen on CNN) Date: Fri, 24 Jul 2009 16:45:00 -0000 Subject: Myron, Your promotional code for your free DazzleWhite trial is dazzle4me. Message-ID: Myron, Dentists are FURIOUS about the release of this unprecedented technology: http://sighsdawns.com/cmaqhnsgineaa Why? Because you will never need your teeth professionally whitened again. AN EXCLUSIVE PROMO CODE DAZZLE4ME is available for you, Myron, for $3 off shipping of your free trial. What dentists DO NOT want you to know: http://sighsdawns.com/rkmjul8-2lizs To unsubscribe please go to: http://sighsdawns.com/nf6xrtb4hezhu or send mail to: Dazzle White Pro Vasilissis Freiderikis Nicosia, Cyprus ______________________________________________________ To stop receiving emails, click here: http://sighsdawns.com/unsub/?id=z2woaw6lv0s80 -- 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 jjreisert@alum.mit.edu Fri Jul 24 17:45:00 2009 From: jjreisert@alum.mit.edu (Jim Reisert AD1C) Date: Fri, 24 Jul 2009 17:45:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Message-ID: <4A69F338.4050907@alum.mit.edu> Are you using the very latest X-Org server? I was having bad problems with VNC, but they've since disappeared with the latest X release. - Jim On 7/24/2009 12:47 AM, Alister Hood wrote: > I've found that -clipboard clashes with Windows clipboard history > managers such as Ditto. Does anybody know of a clipboard manager with > which it does work? -- Jim Reisert AD1C, , http://www.ad1c.us -- 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 danilo.turina@alcatel-lucent.it Mon Jul 27 06:20:00 2009 From: danilo.turina@alcatel-lucent.it (Danilo Turina) Date: Mon, 27 Jul 2009 06:20:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Message-ID: <4A6D471F.9010103@alcatel-lucent.it> Hi, I had problems with all the clipboard managers I tried (4 or 5), until I upgraded my X-Org Server about 10 days ago. Now most problems are solved. Ciao, Danilo Alister Hood wrote: > Hi, > > I've found that -clipboard clashes with Windows clipboard history > managers such as Ditto. Does anybody know of a clipboard manager with > which it does work? > > If I run glipper in a linux panel in Colinux, then I can use that, and I > imagine I could compile them for Cygwin instead, but the panel is > handled as a window (I'm using -multiwindow), and I'd rather use a > native Windows clipboard manager anyway, so I can only start X when I > need to. > > Thanks, > Alister > > > -- > 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/ > > -- Danilo Turina Alcatel-Lucent Software Developer OND Network Management Rieti (Italy) Phone: +39 0746 600332 8 anni 3 mesi 17 giorni 22 ore 42 minuti 12 secondi -- 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 russell.davis@gmail.com Tue Jul 28 06:20:00 2009 From: russell.davis@gmail.com (Russell Davis) Date: Tue, 28 Jul 2009 06:20:00 -0000 Subject: patch for multiwindow support of =?utf-8?b?X05FVF9XTV9TVEFURV9TS0lQX1RBU0tCQVI=?= Message-ID: Hi, I found a great patch on this list from back in January - see http://www.cygwin.com/ml/cygwin-xfree/2009-01/msg00068.html . It would great to see that patch make it to the source tree, but as far as I can tell that hasn't happened. Anyone know any more details about that? Does someone just need to submit it to the cygwin-patches list? Thanks, Russell -- 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 Jul 28 09:28:00 2009 From: rcsaba@gmail.com (Csaba Raduly) Date: Tue, 28 Jul 2009 09:28:00 -0000 Subject: Blank title bars In-Reply-To: <4A54B123.4000903@dronecode.org.uk> References: <1ef5a52f0906170219x50fb81b0sb0498ae4a834718b@mail.gmail.com> <4A54B123.4000903@dronecode.org.uk> Message-ID: <1ef5a52f0907280228v7df8ebf2p5c888460cfefa3b0@mail.gmail.com> On Wed, Jul 8, 2009 at 4:45 PM, Jon TURNEY wrote: > On 17/06/2009 10:19, Csaba Raduly wrote: >> >> For some reason, changes to the title bar text result in a blank title >> bar instead until the window loses focus. (snip) > I'm afraid I can't quite visualize what you are describing. ?Can you upload > some screenshots somewhere? > Here's an example: http://img528.imageshack.us/img528/1219/blanktitlebar.png Normally, NEdit appears with a title bar that reads "Untitled". -- 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 neomjp@yahoo.co.jp Tue Jul 28 16:53:00 2009 From: neomjp@yahoo.co.jp (neomjp) Date: Tue, 28 Jul 2009 16:53:00 -0000 Subject: luit package and pty Message-ID: <617037.97736.qm@web4110.mail.ogk.yahoo.co.jp> Hi, 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? -------------------------------------- Power up the Internet with Yahoo! Toolbar. http://pr.mail.yahoo.co.jp/toolbar/ -- 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 dav@sci.utah.edu Tue Jul 28 21:29:00 2009 From: dav@sci.utah.edu (J. Davison de St. Germain) Date: Tue, 28 Jul 2009 21:29:00 -0000 Subject: Problem with Alt-key not being recognized after X Server window loses focus Message-ID: <4A6F6DA6.6040700@sci.utah.edu> Hi, Recently the X11 server window stopped recognizing the 'Alt' key after I changed focus to another Windows XP window. When I start the X Server (xinit), the system recognizes when I press down 'Alt'. However if I then just click outside the X server window on the Windows XP desktop, and then back to the X server window, 'Alt' stops working. (I'm running fvwm and use Alt-mouse-1 to move windows. This works fine until focus is lost for the first time.) I don't know exactly when this started, but I've updated cygwin with the latest X packages and the problem still persists. I am running Windows XP on a Thinkpad T60p. Any help would be greatly appreciated. Thanks, Davison -- ----------------------------------------------------------------------- - J. Davison de St. Germain dav@cs.utah.edu (801) 581-4078 - - Chief Software Engineer http://www.cs.utah.edu/~dav - - SCI Institute, SE C-SAFE University of Utah - ----------------------------------------------------------------------- -- 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 sunil.matta@bankofamerica.com Wed Jul 29 13:45:00 2009 From: sunil.matta@bankofamerica.com (Matta, Sunil) Date: Wed, 29 Jul 2009 13:45:00 -0000 Subject: Trouble with the xwin and ms remote desktop Message-ID: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> I have been running Xwin on xp pro for a week along with xterms and emacs on my desktop. I then tried to remote connect (ms remote desktop: mstsc.exe) to the desktop from a laptop across the internet. 1) As soon as I had connected to my desktop (which was running xwin), the xserver crashed. I could see the rest of the ms xp apps on the remote screen though. The laptop has a 14" screen whereas the desktop has twin 19" screens. I then re-started the xserver from the remote laptop while connecting to the desktop, which seemed to be working fine as long as I stayed on the laptop. 2) When I got back to my desktop, the xserver still thought that the laptop's screen was in use, and wouldnt display correctly past the top two thirds of screen 0. I guess this makes sense since the xserver knew of the smaller screen size when it was started during the remote session. Consequently, anything on the bottom of the screen would not draw at all, or refresh properly. i.e. if I had an xterm on the lower end of the monitor, it would not accept any key strokes until I moved the xterm to the top two-thirds of the screen. Is there any way to request Xwin.exe to dynamically "resize" itself rather than bouncing the xserver a specific size/resolution profile ?? Otherwise, I might have to bounce the xserver every time i alternate between the desktop and the laptop. Thanks, Sunil Matta -- 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 sunil.matta@bankofamerica.com Wed Jul 29 15:54:00 2009 From: sunil.matta@bankofamerica.com (Matta, Sunil) Date: Wed, 29 Jul 2009 15:54:00 -0000 Subject: Trouble with the xwin and ms remote desktop Message-ID: <7B67F690247CDC42A725B8E487D3BEE701D86902@ex2k.bankofamerica.com> Sorry forgot to mention the cygwin versions : CYGWIN_NT-5.1 ... 1.5.22(0.156/4/2) 2006-11-13 17:01 i686 Cygwin Xwin : Release: 1.5.3.0 (20090222) > -----Original Message----- > From: Matta, Sunil > Sent: Wednesday, July 29, 2009 9:45 AM > To: 'cygwin-xfree@cygwin.com' > Cc: 'sunil@equityoms.com' > Subject: Trouble with the xwin and ms remote desktop > > I have been running Xwin on xp pro for a week along with > xterms and emacs on my desktop. > > I then tried to remote connect (ms remote desktop: mstsc.exe) > to the desktop from a laptop across the internet. > > 1) As soon as I had connected to my desktop (which was > running xwin), the xserver crashed. I could see the rest of > the ms xp apps on the remote screen though. > > The laptop has a 14" screen whereas the desktop has twin 19" screens. > I then re-started the xserver from the remote laptop while > connecting to the desktop, which seemed to be working fine as > long as I stayed on the laptop. > > 2) When I got back to my desktop, the xserver still thought > that the laptop's screen was in use, and wouldnt display > correctly past the top two thirds of screen 0. > I guess this makes sense since the xserver knew of the > smaller screen size when it was started during the remote session. > Consequently, anything on the bottom of the screen would not > draw at all, or refresh properly. > i.e. if I had an xterm on the lower end of the monitor, it > would not accept any key strokes until I moved the xterm to > the top two-thirds of the screen. > > > Is there any way to request Xwin.exe to dynamically "resize" > itself rather than bouncing the xserver a specific > size/resolution profile ?? > > Otherwise, I might have to bounce the xserver every time i > alternate between the desktop and the laptop. > > Thanks, > > Sunil Matta > -- 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 jeanluc.malet@gmail.com Wed Jul 29 16:58:00 2009 From: jeanluc.malet@gmail.com (jean-luc malet) Date: Wed, 29 Jul 2009 16:58:00 -0000 Subject: Fwd: strange behavior with threads... In-Reply-To: <1de9d39c0907240212w4d2809d2lc6904100f7a8c446@mail.gmail.com> References: <1de9d39c0907230650t3ae02e2agc540e9ef8fe4ca34@mail.gmail.com> <20090723141137.GA18621@calimero.vinschen.de> <1de9d39c0907240212w4d2809d2lc6904100f7a8c446@mail.gmail.com> Message-ID: <1de9d39c0907290958l4f99254bx8f113f28c93d0af7@mail.gmail.com> Hi! can someone help me regarding this issue? I have a multithreaded application (one thread for the GUI and one thread for background processing [which only sleep at this time]) and I'm getting connection errors only on cygwin/X (tested on linux and linux in vm, 2 different linux distribution) normally all X operation shall be protected with mutexes any idea? thanks JLM ---------- Forwarded message ---------- From: jean-luc malet Date: Fri, Jul 24, 2009 at 11:12 AM Subject: Re: strange behavior with threads... To: cygwin@cygwin.com On Thu, Jul 23, 2009 at 4:11 PM, Corinna Vinschen wrote: > On Jul 23 15:50, jean-luc malet wrote: >> Hi! >> I've the following code : >> void _Window::Start(void* arg) >> { >> ? ? ? ? ThreadArgs args; >> ? ? ? ? args.TheWindow=this; >> ? ? ? ? args.args=arg; >> ? ? ? ? int err = pthread_create(&main_thread,NULL,_Start, (void*)&args); >> ? ? ? ? if (err) >> ? ? ? ? { >> ? ? ? ? ? ? ? ? throw new ?Exception(err, "window thread creation error"); >> ? ? ? ? } >> } >> void* _Window::_Start(void* arg) >> { >> ? ? ? ? ThreadArgs* args = (ThreadArgs*) arg; >> ? ? ? ? pthread_exit((void*)args->TheWindow->start_routine(args->args)); >> } >> >> _Window::_Start is static >> >> for some reason that I can't determine it happens that args in >> _Window::_Start have strange value (args->TheWindow don't contain a >> valid pointer, ie a pointer on a _Window object) > > Maybe you shouldn't let the arg to the thread point to a local > stack-based variable in the other method which, as you code implies, > returns after having started the thread... > > > Corinna > > -- > Corinna Vinschen ? ? ? ? ? ? ? ? ?Please, send mails regarding Cygwin to > Cygwin Project Co-Leader ? ? ? ? ?cygwin AT cygwin DOT com > Red Hat > > -- > Problem reports: ? ? ? http://cygwin.com/problems.html > FAQ: ? ? ? ? ? ? ? ? ? http://cygwin.com/faq/ > Documentation: ? ? ? ? http://cygwin.com/docs.html > Unsubscribe info: ? ? ?http://cygwin.com/ml/#unsubscribe-simple > > Yes, sorry for such lame question :( I should have seen this issue the code has been modified and has been tested under linux and is now working as expected under linux, thanks however I have a X server connection issue freeglut (./tests/GENERATED/GlutWindowTest): Unable to create direct context rendering for window ' ' This may hurt performance. XIO: ?fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0" ? ? ?after 34 requests (32 known processed) with 5 events remaining. think I will have to post on Cygwin/X ML thanks for help JLM -- KISS! (Keep It Simple, Stupid!) (garde le simple, imb?cile!) "mais qu'est-ce que tu m'as pondu comme usine ? gaz? fait des choses simples et qui marchent, esp?ce d'imb?cile!" ----------------------------- "Si vous pensez que vous ?tes trop petit pour changer quoique ce soit, essayez donc de dormir avec un moustique dans votre chambre." Betty Reese http://www.grainesdechangement.com/citations.htm -- KISS! (Keep It Simple, Stupid!) (garde le simple, imb?cile!) "mais qu'est-ce que tu m'as pondu comme usine ? gaz? fait des choses simples et qui marchent, esp?ce d'imb?cile!" ----------------------------- "Si vous pensez que vous ?tes trop petit pour changer quoique ce soit, essayez donc de dormir avec un moustique dans votre chambre." Betty Reese http://www.grainesdechangement.com/citations.htm -- 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 Jul 29 17:09:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 29 Jul 2009 17:09:00 -0000 Subject: Problem with multiwindow and drop-down menus In-Reply-To: <4A676C16.8050209@acm.org> References: <4A676C16.8050209@acm.org> Message-ID: <4A708263.3000400@dronecode.org.uk> On 22/07/2009 20:44, David Rothenberger wrote: > I'm having a problem with 1.7 when starting the server with > -multiwindow. I am trying to run Sun's jconsole application (part of the > JDK 6) remotely, but none of the menus work correctly. > > When I run a separate window manager (wmaker), they work correctly. I > can click on a menu and it will stay open. I can move my mouse to select > a menu entry and then click again to "make it so". > > With -multiwindow, clicking on the menu just causes it to flash open. If > I hold the mouse down, the menu will stay open, but I can't select any > options. The only way I can interact with jconsole is with keyboard > shortcuts. > > Any ideas? Is this some local configuration problem or a known issue > with -multiwindow? There was a change in the most recent X server, xorg-server-1.6.2-2, which attempts to improve the behaviour of X window menus. Can you try with that and see if it makes a difference? -- 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 Jul 29 17:17:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 29 Jul 2009 17:17:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Message-ID: <4A70841D.8000707@dronecode.org.uk> On 24/07/2009 07:47, Alister Hood wrote: > I've found that -clipboard clashes with Windows clipboard history > managers such as Ditto. Does anybody know of a clipboard manager with > which it does work? > > If I run glipper in a linux panel in Colinux, then I can use that, and I > imagine I could compile them for Cygwin instead, but the panel is > handled as a window (I'm using -multiwindow), and I'd rather use a > native Windows clipboard manager anyway, so I can only start X when I > need to. Since xorg-server 1.6.0, we've reverted an upstream patch [1], which was causing the built-in clipboard synchronization client to fight with other clipboard monitoring applications. Looking at the other responses, it seems like this has had the desired effect :-) [1] http://bugs.freedesktop.org/show_bug.cgi?id=5735 -- 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 daveroth@acm.org Wed Jul 29 17:28:00 2009 From: daveroth@acm.org (David Rothenberger) Date: Wed, 29 Jul 2009 17:28:00 -0000 Subject: Problem with multiwindow and drop-down menus In-Reply-To: <4A708263.3000400@dronecode.org.uk> References: <4A676C16.8050209@acm.org> <4A708263.3000400@dronecode.org.uk> Message-ID: <4A70867A.5030900@acm.org> On 7/29/2009 10:09 AM, Jon TURNEY wrote: > On 22/07/2009 20:44, David Rothenberger wrote: >> I'm having a problem with 1.7 when starting the server with >> -multiwindow. I am trying to run Sun's jconsole application (part of the >> JDK 6) remotely, but none of the menus work correctly. >> >> When I run a separate window manager (wmaker), they work correctly. I >> can click on a menu and it will stay open. I can move my mouse to select >> a menu entry and then click again to "make it so". >> >> With -multiwindow, clicking on the menu just causes it to flash open. If >> I hold the mouse down, the menu will stay open, but I can't select any >> options. The only way I can interact with jconsole is with keyboard >> shortcuts. >> >> Any ideas? Is this some local configuration problem or a known issue >> with -multiwindow? > > There was a change in the most recent X server, xorg-server-1.6.2-2, > which attempts to improve the behaviour of X window menus. Can you try > with that and see if it makes a difference? Unfortunately, there is no change with xorg-server-1.6.2-2. -- David Rothenberger ---- daveroth@acm.org To be is to program. -- 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 Jul 29 17:41:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 29 Jul 2009 17:41:00 -0000 Subject: patch for multiwindow support of _NET_WM_STATE_SKIP_TASKBAR In-Reply-To: References: Message-ID: <4A7089E6.5060507@dronecode.org.uk> On 28/07/2009 07:14, Russell Davis wrote: > I found a great patch on this list from back in January - see > http://www.cygwin.com/ml/cygwin-xfree/2009-01/msg00068.html. I'm not sure if 'great' here means 'I like the idea of it' or 'I've tested it and it works well', but thank you :-) > It would great to > see that patch make it to the source tree, but as far as I can tell that hasn't > happened. Anyone know any more details about that? As it says at the end of that mail, "still needs more testing and work". There's been a bit more work at [1], but beyond getting the patch itself to work correctly, it unfortunately seems that it also exposes some race conditions lurking in the -multiwindow code, which need also fixing before it's safe to include this patch, and somebody has to do that. [1] http://sourceware.org/bugzilla/show_bug.cgi?id=9852 > Does someone just need to > submit it to the cygwin-patches list? No, the cygwin-patches list is for patches to the cygwin DLL. This is the correct list for discussion of patches to the Cygwin/X server. -- 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 Jul 29 17:41:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 29 Jul 2009 17:41:00 -0000 Subject: trouble with fonts In-Reply-To: <4A697F04.90807@brothom.nl> References: <4A67441E.4000600@brothom.nl> <4A67480A.3030708@dronecode.org.uk> <4A675ACE.7020404@brothom.nl> <4A68C4CA.2080400@dronecode.org.uk> <4A697F04.90807@brothom.nl> Message-ID: <4A7089CA.4010905@dronecode.org.uk> On 24/07/2009 10:29, Bert Thomas wrote: >> Can you be a bit more specific about the nature of the remote host >> with applications which have this problem? Have you seen the >> applications render their fonts correctly on other remote X servers? > > I installed the X server package on the remote machine and that solved > the problem. It's pretty silly, as the remote machine might not even > have a physical screen attached, but it solved the problem. I assume > because the X application I'm running uses fonts from a local source I > guess? Exactly. One could describe this as package dependency problem with the unnamed distro you have on the remote machine, if it doesn't ensure that the fonts an application needs are installed when the application is... > I don't understand this fully. I've red somewhere that X applications > use a font server. Do they connect to this font server over the same > connection as the X server? Thus, if I use a putty X tunnel, does that > tunnel provide a path to the font server as well? Font servers are deprecated, and I don't think can be used for client-side fonts. I think you have arrived at the correct solution already by arranging for the correct fonts to be installed on the host where the application is running. -- 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 Jul 29 17:51:00 2009 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 29 Jul 2009 17:51:00 -0000 Subject: Trouble with the xwin and ms remote desktop In-Reply-To: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> References: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> Message-ID: <4A708C40.1040104@dronecode.org.uk> On 29/07/2009 14:45, Matta, Sunil wrote: > I have been running Xwin on xp pro for a week along with xterms and > emacs on my desktop. > > I then tried to remote connect (ms remote desktop: mstsc.exe) to the > desktop from a laptop across the internet. > > 1) As soon as I had connected to my desktop (which was running xwin), > the xserver crashed. I could see the rest of the ms xp apps on the > remote screen though. > > The laptop has a 14" screen whereas the desktop has twin 19" screens. > I then re-started the xserver from the remote laptop while connecting to > the desktop, which seemed to be working fine as long as I stayed on the > laptop. > > 2) When I got back to my desktop, the xserver still thought that the > laptop's screen was in use, and wouldnt display correctly past the top > two thirds of screen 0. > I guess this makes sense since the xserver knew of the smaller screen > size when it was started during the remote session. > Consequently, anything on the bottom of the screen would not draw at > all, or refresh properly. > i.e. if I had an xterm on the lower end of the monitor, it would not > accept any key strokes until I moved the xterm to the top two-thirds of > the screen. > > > Is there any way to request Xwin.exe to dynamically "resize" itself > rather than bouncing the xserver a specific size/resolution profile ?? > > Otherwise, I might have to bounce the xserver every time i alternate > between the desktop and the laptop. This is a known limitation. The only workaround is to restart the Xserver when the display resolution changes. Having used the Xserver in a similar way, I do know how irritating that is :-) This is the "Windows display size/Monitor count/position changes while running." item on the todo list at [1], as connecting via RDP with a different desktop size effectively changes the display size However, this shouldn't be causing a crash, so if you could provide the /var/log/Xwin.0.log for a session when that happens, that would be useful. [1] http://x.cygwin.com/devel/todo.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 ed.gatzke@gmail.com Wed Jul 29 19:25:00 2009 From: ed.gatzke@gmail.com (Ed Gatzke) Date: Wed, 29 Jul 2009 19:25:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Message-ID: Alister Hood synergine.com> writes: > > Hi, > > I've found that -clipboard clashes with Windows clipboard history > managers such as Ditto. Does anybody know of a clipboard manager with > which it does work? > I have had awful troubles using XWin with -clipboard. I don't think I am doing anything odd with the XP clipboard AFAIK. Using -clipboard crashes various applications (tgif) and gives performance issues in others (LyX) I tried a re-install for xwin but it seems to give me the version from February, 1.5.3.0 (20090222) Looking at the package list for cygwin, it appears the xwin package is obsolete? What am I doing wrong? -- 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 sunil.matta@bankofamerica.com Wed Jul 29 22:37:00 2009 From: sunil.matta@bankofamerica.com (Matta, Sunil) Date: Wed, 29 Jul 2009 22:37:00 -0000 Subject: Trouble with the xwin and ms remote desktop In-Reply-To: <4A708C40.1040104@dronecode.org.uk> References: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> <4A708C40.1040104@dronecode.org.uk> Message-ID: <7B67F690247CDC42A725B8E487D3BEE701E2C40E@ex2k.bankofamerica.com> Jon: Thanks for the response. > > I have been running Xwin on xp pro for a week along with xterms and > > emacs on my desktop. > > > > I then tried to remote connect (ms remote desktop: > mstsc.exe) to the > > desktop from a laptop across the internet. > > > > 1) As soon as I had connected to my desktop (which was > running xwin), > > the xserver crashed. I could see the rest of the ms xp apps on the > > remote screen though. > > > > The laptop has a 14" screen whereas the desktop has twin > 19" screens. > > I then re-started the xserver from the remote laptop while > connecting > > to the desktop, which seemed to be working fine as long as > I stayed on > > the laptop. > > > > 2) When I got back to my desktop, the xserver still thought > that the > > laptop's screen was in use, and wouldnt display correctly > past the top > > two thirds of screen 0. > > I guess this makes sense since the xserver knew of the > smaller screen > > size when it was started during the remote session. > > Consequently, anything on the bottom of the screen would > not draw at > > all, or refresh properly. > > i.e. if I had an xterm on the lower end of the monitor, it > would not > > accept any key strokes until I moved the xterm to the top > two-thirds > > of the screen. > > > > > > Is there any way to request Xwin.exe to dynamically "resize" itself > > rather than bouncing the xserver a specific size/resolution > profile ?? > > > > Otherwise, I might have to bounce the xserver every time i > alternate > > between the desktop and the laptop. > > This is a known limitation. The only workaround is to restart > the Xserver when the display resolution changes. Having used > the Xserver in a similar way, I do know how irritating that is :-) I was hoping there would be a xserver.resize() function that could be called from the xroot menu, but I guess not. This would definitely save a lot of headaches, when switching between different display sizes and resolutions. > > This is the "Windows display size/Monitor count/position > changes while running." item on the todo list at [1], as > connecting via RDP with a different desktop size effectively > changes the display size > > However, this shouldn't be causing a crash, so if you could > provide the /var/log/Xwin.0.log for a session when that > happens, that would be useful. The xserver on the desktop definitely crashed the first time I connected from a laptop which had never been used before. I will have to observe if this happens again. Thanks again. > > [1] http://x.cygwin.com/devel/todo.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 reply-to-list-only-lh-x@cygwin.com Thu Jul 30 12:59:00 2009 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Thu, 30 Jul 2009 12:59:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> Message-ID: <4A7197AF.5050306@cygwin.com> On 07/29/2009 09:39 AM, Ed Gatzke wrote: > Alister Hood synergine.com> writes: > >> >> Hi, >> >> I've found that -clipboard clashes with Windows clipboard history >> managers such as Ditto. Does anybody know of a clipboard manager with >> which it does work? >> > > I have had awful troubles using XWin with -clipboard. I don't think > I am doing anything odd with the XP clipboard AFAIK. Using -clipboard > crashes various applications (tgif) and gives performance issues in > others (LyX) > > I tried a re-install for xwin but it seems to give me the version > from February, 1.5.3.0 (20090222) > > Looking at the package list for cygwin, it appears the xwin package > is obsolete? The 'xorg-server' package, which contains 'XWin.exe', is not obsolete. The current version is 1.5.3, package revision #5. See here -> -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 429-6305 - FAX Holliston, MA 01746 -- 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 alister.hood@synergine.com Fri Jul 31 08:25:00 2009 From: alister.hood@synergine.com (Alister Hood) Date: Fri, 31 Jul 2009 08:25:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: <4A70841D.8000707@dronecode.org.uk> References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> <4A70841D.8000707@dronecode.org.uk> Message-ID: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA76F@aklserver02.Synergine.local> Ah, good. Since that isn't showing in the cygwin installer I guess I need to install the beta cygwin to get it? Thanks. -----Original Message----- From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] Sent: Thursday, 30 July 2009 5:17 a.m. To: cygwin-xfree@cygwin.com Cc: Alister Hood Subject: Re: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? On 24/07/2009 07:47, Alister Hood wrote: > I've found that -clipboard clashes with Windows clipboard history > managers such as Ditto. Does anybody know of a clipboard manager with > which it does work? > > If I run glipper in a linux panel in Colinux, then I can use that, and I > imagine I could compile them for Cygwin instead, but the panel is > handled as a window (I'm using -multiwindow), and I'd rather use a > native Windows clipboard manager anyway, so I can only start X when I > need to. Since xorg-server 1.6.0, we've reverted an upstream patch [1], which was causing the built-in clipboard synchronization client to fight with other clipboard monitoring applications. Looking at the other responses, it seems like this has had the desired effect :-) [1] http://bugs.freedesktop.org/show_bug.cgi?id=5735 -- 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 danilo.turina@alcatel-lucent.it Fri Jul 31 08:36:00 2009 From: danilo.turina@alcatel-lucent.it (Danilo Turina) Date: Fri, 31 Jul 2009 08:36:00 -0000 Subject: Is there a Windows clipboard manager that doesn't clash with -clipboard parameter? In-Reply-To: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA76F@aklserver02.Synergine.local> References: <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA4DF@aklserver02.Synergine.local> <4A70841D.8000707@dronecode.org.uk> <7E33D15EEC1B2A4FA5B9F74A6FE196BE6BA76F@aklserver02.Synergine.local> Message-ID: <4A72ACF4.80608@alcatel-lucent.it> Alister Hood wrote: > Ah, good. > Since that isn't showing in the cygwin installer I guess I need to > install the beta cygwin to get it? Yes, you need to install 1.7 ( http://www.cygwin.com/setup-1.7.exe ). To tell all the truth I was sticking to 1.5 and try to wait as much as was possible before passing to 1.7 (I feared possible problems/troubles in installation and reconfiguration/tweak to my needs), the reason I switched to 1.7 was, in fact, to try the improvements in the clipboard handling in X.org 1.6.0. I must tell I'm satisfied with it: after installing 1.7 and configuring it a bit, I never used 1.5 anymore. Ciao, Danilo > > Thanks. > > -----Original Message----- > From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Sent: Thursday, 30 July 2009 5:17 a.m. > To: cygwin-xfree@cygwin.com > Cc: Alister Hood > Subject: Re: Is there a Windows clipboard manager that doesn't clash > with -clipboard parameter? > > On 24/07/2009 07:47, Alister Hood wrote: >> I've found that -clipboard clashes with Windows clipboard hist -- 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 sunil.matta@bankofamerica.com Fri Jul 31 19:41:00 2009 From: sunil.matta@bankofamerica.com (Matta, Sunil) Date: Fri, 31 Jul 2009 19:41:00 -0000 Subject: Trouble with the xwin and ms remote desktop In-Reply-To: <4A708C40.1040104@dronecode.org.uk> References: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> <4A708C40.1040104@dronecode.org.uk> Message-ID: <7B67F690247CDC42A725B8E487D3BEE701E2CEE6@ex2k.bankofamerica.com> Jon: thanks for the response. And yes, Xwin definitely crashes. On a desktop running Windows xp, started Xwin on a two monitor screen with wmaker as the window manager. Go home, connect to the desktop via a small laptop running xp as well. I am connecting using xp's remote desktop facility : mstsc.exe. Upon connection to the desktop screen, I see the xwin icon on the taskbar, and then xserver immediately crashes. Although, I just realized that the xwin root window is on screen 1, which the laptop cant even see. Maybe that's why xwin crashes ??? I will try again after I move the xwin to screen 0 and let you know. Also as a side, I have tried to use fvwm, but I don't see the usual virtual desktops on the screen ??? Which is why I am using wmaker as the window manager. Sunil > -----Original Message----- > From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > Sent: Wednesday, July 29, 2009 1:52 PM > To: cygwin-xfree@cygwin.com > Cc: Matta, Sunil > Subject: Re: Trouble with the xwin and ms remote desktop > > On 29/07/2009 14:45, Matta, Sunil wrote: > > I have been running Xwin on xp pro for a week along with xterms and > > emacs on my desktop. > > > > I then tried to remote connect (ms remote desktop: > mstsc.exe) to the > > desktop from a laptop across the internet. > > > > 1) As soon as I had connected to my desktop (which was > running xwin), > > the xserver crashed. I could see the rest of the ms xp apps on the > > remote screen though. > > > > The laptop has a 14" screen whereas the desktop has twin > 19" screens. > > I then re-started the xserver from the remote laptop while > connecting > > to the desktop, which seemed to be working fine as long as > I stayed on > > the laptop. > > > > 2) When I got back to my desktop, the xserver still thought > that the > > laptop's screen was in use, and wouldnt display correctly > past the top > > two thirds of screen 0. > > I guess this makes sense since the xserver knew of the > smaller screen > > size when it was started during the remote session. > > Consequently, anything on the bottom of the screen would > not draw at > > all, or refresh properly. > > i.e. if I had an xterm on the lower end of the monitor, it > would not > > accept any key strokes until I moved the xterm to the top > two-thirds > > of the screen. > > > > > > Is there any way to request Xwin.exe to dynamically "resize" itself > > rather than bouncing the xserver a specific size/resolution > profile ?? > > > > Otherwise, I might have to bounce the xserver every time i > alternate > > between the desktop and the laptop. > > This is a known limitation. The only workaround is to restart > the Xserver when the display resolution changes. Having used > the Xserver in a similar way, I do know how irritating that is :-) > > This is the "Windows display size/Monitor count/position > changes while running." item on the todo list at [1], as > connecting via RDP with a different desktop size effectively > changes the display size > > However, this shouldn't be causing a crash, so if you could > provide the /var/log/Xwin.0.log for a session when that > happens, that would be useful. > > [1] http://x.cygwin.com/devel/todo.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 sunil.matta@bankofamerica.com Fri Jul 31 19:54:00 2009 From: sunil.matta@bankofamerica.com (Matta, Sunil) Date: Fri, 31 Jul 2009 19:54:00 -0000 Subject: Trouble with the xwin and ms remote desktop References: <7B67F690247CDC42A725B8E487D3BEE701D867A0@ex2k.bankofamerica.com> <4A708C40.1040104@dronecode.org.uk> Message-ID: <7B67F690247CDC42A725B8E487D3BEE701E2CF0A@ex2k.bankofamerica.com> Forgot to include the stackdump, if this helps. Exception: STATUS_ACCESS_VIOLATION at eip=00410C8C eax=00000000 ebx=0000005F ecx=0022CA90 edx=0084BAF0 esi=000001C3 edi=0084E5D8 ebp=0022CAC8 esp=0022CA50 program=C:\cygwin\bin\XWin.exe, pid 5012, thread main cs=001B ds=0023 es=0023 fs=003B gs=0000 ss=0023 Stack trace: Frame Function Args 0022CAC8 00410C8C (0084C008, 0084E5A0, 00000000, 005D05A8) 0022CAE8 004D2EE0 (0084C008, 0022CB54, 005D05A8, 005D05A8) 0022CB18 004E147E (0022CB54, 005D05A8, 00000001, 0022CB90) 0022CBF8 0053544C (00906B40, 00000000, 00000000, 01A00023) 0022CC48 00500E7B (00843360, 00000002, 00000000, 004DCCC9) 0022CC98 004DD08B (00000003, 008424D0, 00840090, 61166990) 0022CD98 61006148 (00000000, 0022CDD0, 610054C0, 0022CDD0) 610054C0 61004416 (0000009C, A02404C7, E8611001, FFFFFF48) 2089677 [main] XWin 5012 _cygtls::handle_exceptions: Exception: STATUS_ACCESS_VIOLATION 2092567 [main] XWin 5012 _cygtls::handle_exceptions: Error while dumping state (probably corrupted stack) Thanks, Sunil > -----Original Message----- > > Jon: thanks for the response. And yes, Xwin definitely crashes. > > On a desktop running Windows xp, started Xwin on a two > monitor screen with wmaker as the window manager. > Go home, connect to the desktop via a small laptop running xp as well. > I am connecting using xp's remote desktop facility : mstsc.exe. > > Upon connection to the desktop screen, I see the xwin icon on > the taskbar, and then xserver immediately crashes. > > Although, I just realized that the xwin root window is on > screen 1, which the laptop cant even see. Maybe that's why > xwin crashes ??? > > I will try again after I move the xwin to screen 0 and let you know. > > > Also as a side, I have tried to use fvwm, but I don't see the > usual virtual desktops on the screen ??? > Which is why I am using wmaker as the window manager. > > Sunil > > > > > > -----Original Message----- > > From: Jon TURNEY [mailto:jon.turney@dronecode.org.uk] > > Sent: Wednesday, July 29, 2009 1:52 PM > > To: cygwin-xfree@cygwin.com > > Cc: Matta, Sunil > > Subject: Re: Trouble with the xwin and ms remote desktop > > > > On 29/07/2009 14:45, Matta, Sunil wrote: > > > I have been running Xwin on xp pro for a week along with > xterms and > > > emacs on my desktop. > > > > > > I then tried to remote connect (ms remote desktop: > > mstsc.exe) to the > > > desktop from a laptop across the internet. > > > > > > 1) As soon as I had connected to my desktop (which was > > running xwin), > > > the xserver crashed. I could see the rest of the ms xp > apps on the > > > remote screen though. > > > > > > The laptop has a 14" screen whereas the desktop has twin > > 19" screens. > > > I then re-started the xserver from the remote laptop while > > connecting > > > to the desktop, which seemed to be working fine as long as > > I stayed on > > > the laptop. > > > > > > 2) When I got back to my desktop, the xserver still thought > > that the > > > laptop's screen was in use, and wouldnt display correctly > > past the top > > > two thirds of screen 0. > > > I guess this makes sense since the xserver knew of the > > smaller screen > > > size when it was started during the remote session. > > > Consequently, anything on the bottom of the screen would > > not draw at > > > all, or refresh properly. > > > i.e. if I had an xterm on the lower end of the monitor, it > > would not > > > accept any key strokes until I moved the xterm to the top > > two-thirds > > > of the screen. > > > > > > > > > Is there any way to request Xwin.exe to dynamically > "resize" itself > > > rather than bouncing the xserver a specific size/resolution > > profile ?? > > > > > > Otherwise, I might have to bounce the xserver every time i > > alternate > > > between the desktop and the laptop. > > > > This is a known limitation. The only workaround is to restart the > > Xserver when the display resolution changes. Having used > the Xserver > > in a similar way, I do know how irritating that is :-) > > > > This is the "Windows display size/Monitor count/position > changes while > > running." item on the todo list at [1], as connecting via > RDP with a > > different desktop size effectively changes the display size > > > > However, this shouldn't be causing a crash, so if you could provide > > the /var/log/Xwin.0.log for a session when that happens, > that would be > > useful. > > > > [1] http://x.cygwin.com/devel/todo.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/