From matt@codespunk.com Thu Jul 3 22:47:00 2014 From: matt@codespunk.com (Matt D.) Date: Thu, 03 Jul 2014 22:47:00 -0000 Subject: Wine creating windows offscreen when "multiwindow" is used? Message-ID: <53B5DD59.5020302@codespunk.com> I have a monitor configuration with three 1920x1080 monitors aligned side-by-side horizontally with a fourth above the center. The primary monitor is the center one at the bottom. xinit generates a single screen 5760x2160 to cover the area. The root window is hidden and all windows in the buffer are drawn with native Windows decorations. When an X window is created at 0,0, it is visible on the primary monitor, despite 0,0 in the buffer being offscreen. This is great. However, when Wine creates a window at 0,0, it is aligned to 0,0 in the buffer (-1920x-1080 screen coordinates on Windows) and is not visible. Is there a solution for this? This is a discrepancy between what regular X windows do and where Wine positions its windows. I also noticed that when creating a window with XCreateSimpleWindow, the x and y coordinates are ignored. For example, I would expect a window created at 0,0 in the X buffer to be visible at 0,0 screen coordinates; but instead it's just somewhere offset slightly from the top left of the primary monitor. Any x/y coordinates specified do not seem to affect where it goes. The behavior I would expect is for 0,0 in the buffer to be mapped to 0,0 in screen coordinates, 1920x, 1080y in my configuration. To clarify my use of Wine, I connected to a remote CentOS 6.5 machine via ssh with x forwarding for testing. Can anyone provide some insight on this? Matt 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 matt@codespunk.com Thu Jul 3 22:54:00 2014 From: matt@codespunk.com (Matt D.) Date: Thu, 03 Jul 2014 22:54:00 -0000 Subject: Automatic X server startup In-Reply-To: <538C82AF.9080702@dronecode.org.uk> References: <000a01cf79aa$8d1c7f50$a7557df0$%fedin@samsung.com> <5384AD24.4080504@dronecode.org.uk> <004001cf7a74$5c6b3ac0$1541b040$%fedin@samsung.com> <538C82AF.9080702@dronecode.org.uk> Message-ID: <53B5DF06.5050203@codespunk.com> I know this thread is a bit old now but I just wanted to mention my solution. I've added X to start in a separate "screen" in my .bash_profile. That way every time I log into Cygwin, X is always available. It's kind of like the previous suggestion of adding it to Windows startup, but I have it more closely coupled to Cygwin. Matt D. On 6/2/2014 9:57 AM, Jon TURNEY wrote: > On 28/05/2014 13:57, Pavel Fedin wrote: >>> I believe this is arranged using launchd on OS X, which listens on the >>> socket the X server will use, and starts the X server when something >>> connects. >>> >>> Unfortunately, there is no similar system facility on Windows. >> >> But it should be possible to make xlib a little bit more smart, >> isn't it ? It could automatically run X server when a connection is >> attempted but refused. So we would achieve the same effect as on MacOS. >> We could e. g. have some directory like /etc/X11/autostart, to be >> examined by xlib. If it detects that e. g. :0 screen is not >> accessible, it would attempt to look up 0.xlaunch file there and run >> "xlaunch -run /etc/X11/autostart/0.xlaunch" command. >> What do you think ? I could implement this idea if you have no time >> to work on that, i believe it should be very easy. > > Patches are always welcome, so please feel free to work on this if you > like. > > I have my doubts that that it's straightforward to add this in libX11 in > a way that is generally useful (for e.g.: there would be a race > condition if two processes both try to start the server at the same > time, there's much room for confusion about how to specify the X server > options to be used, if it could be started explicitly for the start > menu, or implicitly by libX11,...) > >>> You can achieve a somewhat similar effect by copying the X server >>> shortcut to the startup group to start it automatically at login, at >>> the cost of slowing down system startup somewhat. >> >> Heh, it's already slow because of antivirus and other corporate >> stuff (i cannot disable it). Running on demand would be better. > > You might consider looking at starting it from launchd or perhaps xinitd > if possible, and then just that can be started by the X server shortcut, > or at startup. > -- 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 mikedep333@gmail.com Fri Jul 4 07:16:00 2014 From: mikedep333@gmail.com (Michael DePaulo) Date: Fri, 04 Jul 2014 07:16:00 -0000 Subject: How do fonts work when you have no font packages installed? Message-ID: I tried to send this email previously, but I think it did not go through because I was not subscribed to the list yet. -------- Hi, I just installed cygwin64 with only the base packages, "xorg-server", and its dependencies installed. The FAQ (2014-04-29) states: 3.5. My favourite font has gone! The font Emacs uses is just boxes Only minimal fonts will be installed after the upgrade. However, on my system, /usr/share/fonts/ is empty. Yet I am able to XDMCP into a GNOME2 CentOS 6.5 machine and all the fonts show up fine with the handful of apps I tested. Can someone explain how text is being rendered? Is Cygwin Xwin using fonts from the Windows OS? Are the fonts being rendered client-side via XRender? Thanks in advance, -Mike mike@executor /usr $ uname -a CYGWIN_NT-6.3 executor 1.7.30(0.272/5/3) 2014-05-23 10:36 x86_64 Cygwin mike@executor /usr $ find . | grep fonts ./share/doc/groff-1.22.2/examples/hdtbl/fonts_n.ps ./share/doc/groff-1.22.2/examples/hdtbl/fonts_n.roff ./share/doc/groff-1.22.2/examples/hdtbl/fonts_x.ps ./share/doc/groff-1.22.2/examples/hdtbl/fonts_x.roff mike@executor /usr $ cd share mike@executor /usr/share $ ls awk file icons locale man p11-kit pki terminfo texmf zoneinfo doc groff info magic misc pkgconfig tabset texinfo X11 mike@executor /usr/share $ X -query galactica -- 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 6 15:08:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Sun, 06 Jul 2014 15:08:00 -0000 Subject: How do fonts work when you have no font packages installed? In-Reply-To: References: Message-ID: <53B9666E.5030003@dronecode.org.uk> On 04/07/2014 08:16, Michael DePaulo wrote: > I just installed cygwin64 with only the base packages, "xorg-server", > and its dependencies installed. > > The FAQ (2014-04-29) states: > 3.5. My favourite font has gone! The font Emacs uses is just boxes > Only minimal fonts will be installed after the upgrade. > > However, on my system, /usr/share/fonts/ is empty. The X server has a version of 6x13 fixed font built-in, to allow it and (some) apps which use core fonts, to operate in this situation. If some local X clients were installed, this would (hopefully) cause any X core fonts they require to be installed. > Yet I am able to XDMCP into a GNOME2 CentOS 6.5 machine and all the > fonts show up fine with the handful of apps I tested. > > Can someone explain how text is being rendered? Is Cygwin Xwin using > fonts from the Windows OS? While this is technically possible by adding the Windows font directory to the X server font path, that is not done. (Although those fonts are made available to local clients by telling fontconfig to look in the Windows font directory, although this is not technically perfect as there isn't any mechanism to tell fontconfig to update it's cache when Windows fonts are added or removed) > Are the fonts being rendered client-side via XRender? Yes, if the apps you tested are modern, client-side fonts are almost certainly being used. [1] explains this fairly well: "The first X11 clients used the core X11 protocol to draw text, as that was the only choice. [...] Because GTK+ and Qt, the toolkits behind several applications including all GNOME and KDE applications, switched to Xft, many programs on most desktops [...] now use Xft." Core fonts are a legacy feature. If you want to use an older remote application which requires a particular core font, you will have to install it. [1] http://en.wikibooks.org/wiki/Guide_to_X11/Fonts -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From mikedep333@gmail.com Sun Jul 6 15:34:00 2014 From: mikedep333@gmail.com (Michael DePaulo) Date: Sun, 06 Jul 2014 15:34:00 -0000 Subject: How do fonts work when you have no font packages installed? In-Reply-To: <53B9666E.5030003@dronecode.org.uk> References: <53B9666E.5030003@dronecode.org.uk> Message-ID: On Sun, Jul 6, 2014 at 11:08 AM, Jon TURNEY wrote: > On 04/07/2014 08:16, Michael DePaulo wrote: >> >> I just installed cygwin64 with only the base packages, "xorg-server", >> and its dependencies installed. >> >> The FAQ (2014-04-29) states: >> 3.5. My favourite font has gone! The font Emacs uses is just boxes >> Only minimal fonts will be installed after the upgrade. >> >> However, on my system, /usr/share/fonts/ is empty. > > > The X server has a version of 6x13 fixed font built-in, to allow it and > (some) apps which use core fonts, to operate in this situation. > > If some local X clients were installed, this would (hopefully) cause any X > core fonts they require to be installed. > > >> Yet I am able to XDMCP into a GNOME2 CentOS 6.5 machine and all the >> fonts show up fine with the handful of apps I tested. >> >> Can someone explain how text is being rendered? Is Cygwin Xwin using >> fonts from the Windows OS? > > > While this is technically possible by adding the Windows font directory to > the X server font path, that is not done. > > (Although those fonts are made available to local clients by telling > fontconfig to look in the Windows font directory, although this is not > technically perfect as there isn't any mechanism to tell fontconfig to > update it's cache when Windows fonts are added or removed) > > >> Are the fonts being rendered client-side via XRender? > > Yes, if the apps you tested are modern, client-side fonts are almost > certainly being used. [1] explains this fairly well: > > "The first X11 clients used the core X11 protocol to draw text, as that was > the only choice. [...] Because GTK+ and Qt, the toolkits behind several > applications including all GNOME and KDE applications, switched to Xft, many > programs on most desktops [...] now use Xft." Thank you very much, this is a very good answer. I was not aware of Xft. > Core fonts are a legacy feature. > > If you want to use an older remote application which requires a particular > core font, you will have to install it. Yes, I've observed this too. At work we run an old (but actively maintained) commercial Linux application written in Motif, and it requires core fonts to be installed on the Windows machines running Cygwin X11 or VcXsrv. > > [1] http://en.wikibooks.org/wiki/Guide_to_X11/Fonts > > -- > Jon TURNEY > Volunteer Cygwin/X X Server maintainer Thanks again, -Mike DePaulo -- 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 6 16:27:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Sun, 06 Jul 2014 16:27:00 -0000 Subject: Wine creating windows offscreen when "multiwindow" is used? In-Reply-To: <53B5DD59.5020302@codespunk.com> References: <53B5DD59.5020302@codespunk.com> Message-ID: <53B978DA.3040305@dronecode.org.uk> On 03/07/2014 23:46, Matt D. wrote: > I have a monitor configuration with three 1920x1080 monitors aligned > side-by-side horizontally with a fourth above the center. The primary > monitor is the center one at the bottom. xinit generates a single screen > 5760x2160 to cover the area. The root window is hidden and all windows > in the buffer are drawn with native Windows decorations. > > When an X window is created at 0,0, it is visible on the primary > monitor, despite 0,0 in the buffer being offscreen. This is great. > However, when Wine creates a window at 0,0, it is aligned to 0,0 in the > buffer (-1920x-1080 screen coordinates on Windows) and is not visible. > > Is there a solution for this? This is a discrepancy between what regular > X windows do and where Wine positions its windows. > > I also noticed that when creating a window with XCreateSimpleWindow, the > x and y coordinates are ignored. For example, I would expect a window > created at 0,0 in the X buffer to be visible at 0,0 screen coordinates; > but instead it's just somewhere offset slightly from the top left of the > primary monitor. Any x/y coordinates specified do not seem to affect > where it goes. Normally, an X window manager ignores the x,y position specified for the window when it's created, and places the window according to some heuristic (for example, try to ensure that windows don't completely overlap) The -multiwindow mode window manager defers to Windows native window placement (which appears to be something like placing the ith window created at x=y=30+26*(i%9)) But, if the PPosition or USPosition flags in WM_NORMAL_HINTS are set, the -multiwindow mode window manager places the window as requested. (Most toolkits will set USPosition if you explicitly specify a window position e.g. using a -geometry option) I guess that Wine is setting one of these flags so it can emulate Windows window placement. > The behavior I would expect is for 0,0 in the buffer to be mapped to 0,0 > in screen coordinates, 1920x, 1080y in my configuration. Unfortunately, X window coordinates are defined to be positive, with 0,0 being the top-left of the desktop. So, while you could do this with the -screen option (e.g -screen 0 @1), to move the origin to your primary monitor, windows which are moved to the left or above of that probably won't render correctly. If you can't turn off the placement behaviour in Wine, perhaps the best compromise might be to use something like '-screen 0 5760x1080+0+1080' so you have an X desktop which covers the bottom 3 screens, and avoid moving X windows into the 4th screen? > To clarify my use of Wine, I connected to a remote CentOS 6.5 machine > via ssh with x forwarding for testing. > > Can anyone provide some insight on this? There is some code in XWin which attempts to ensure that the window is placed somewhere visible, but that assumes that the Window virtual desktop is a rectangle of size GetSystemMetrics(SM_CXVIRTUALSCREEN) x GetSystemMetrics(SM_CYVIRTUALSCREEN). I think it should be pretty straightforward to change this, perhaps to use MonitorFromPoint() to determine if the window will be visible on a non-rectangular virtual desktop. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Wed Jul 9 16:10:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Wed, 09 Jul 2014 16:10:00 -0000 Subject: Wine creating windows offscreen when "multiwindow" is used? In-Reply-To: <53B978DA.3040305@dronecode.org.uk> References: <53B5DD59.5020302@codespunk.com> <53B978DA.3040305@dronecode.org.uk> Message-ID: <53BD6976.8000708@dronecode.org.uk> On 06/07/2014 17:27, Jon TURNEY wrote: > There is some code in XWin which attempts to ensure that the window is > placed somewhere visible, but that assumes that the Window virtual > desktop is a rectangle of size GetSystemMetrics(SM_CXVIRTUALSCREEN) x > GetSystemMetrics(SM_CYVIRTUALSCREEN). > > I think it should be pretty straightforward to change this, perhaps to > use MonitorFromPoint() to determine if the window will be visible on a > non-rectangular virtual desktop. I've built a snapshot with this change. Perhaps you could try that and see if it improves things for you? ftp://cygwin.com/pub/cygwinx/x86/XWin.20140709-git-2e9c13ea41c51df7.exe.bz2 ftp://cygwin.com/pub/cygwinx/x86_64/XWin.20140709-git-2e9c13ea41c51df7.exe.bz2 -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From matt@codespunk.com Wed Jul 9 22:22:00 2014 From: matt@codespunk.com (Matt D.) Date: Wed, 09 Jul 2014 22:22:00 -0000 Subject: Wine creating windows offscreen when "multiwindow" is used? In-Reply-To: <53BD6976.8000708@dronecode.org.uk> References: <53B5DD59.5020302@codespunk.com> <53B978DA.3040305@dronecode.org.uk> <53BD6976.8000708@dronecode.org.uk> Message-ID: <53BDC08E.5060703@codespunk.com> Jon, Yes! That fixed it. Windows from Wine open up just as regular X windows on the primary monitor. To achieve this is appears as though you're ignoring the Window's requested x/y position entirely and favoring the placement heuristics, as these coordinates are being ignored. I do have a use-case where I want windows from Wine to be created at a designated position for testing, so I don't have to test on a Windows machine for placement as well. Is it at all possible to have these windows map their coordinates strictly, as in 0,0 on the primary monitor would be 1920x1080 in my case. For example, I may want a child window which is a custom dialog aligned to the center of its parent, or a newly created window to be center-aligned to the screen. You've done a great job with this, Jon. I'm not complaining, as this will allow me to begin writing code immediately (I can finally see the window!). Thanks so much for your help. :) Matt D. On 7/9/2014 12:10 PM, Jon TURNEY wrote: > On 06/07/2014 17:27, Jon TURNEY wrote: >> There is some code in XWin which attempts to ensure that the window is >> placed somewhere visible, but that assumes that the Window virtual >> desktop is a rectangle of size GetSystemMetrics(SM_CXVIRTUALSCREEN) x >> GetSystemMetrics(SM_CYVIRTUALSCREEN). >> >> I think it should be pretty straightforward to change this, perhaps to >> use MonitorFromPoint() to determine if the window will be visible on a >> non-rectangular virtual desktop. > > I've built a snapshot with this change. Perhaps you could try that and > see if it improves things for you? > > ftp://cygwin.com/pub/cygwinx/x86/XWin.20140709-git-2e9c13ea41c51df7.exe.bz2 > ftp://cygwin.com/pub/cygwinx/x86_64/XWin.20140709-git-2e9c13ea41c51df7.exe.bz2 > > -- 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 matt@codespunk.com Mon Jul 21 01:06:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 21 Jul 2014 01:06:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd Message-ID: <53CC6789.4000601@codespunk.com> The operating system is Windows XP Professional. It is a CLEAN install on a VMware virtual machine and is 100% patched up. Cygwin also is a clean install. I did try a rebaseall with no effect. This is the first time I've encountered this. When I run "xinit -- -displayfd 3", xinit will hang and XWin takes up 100% of the cpu. I've confirmed that file descriptors are working: $ exec 3>a $ echo "test" >&3 $ cat a test $ exec 3>&- I can confirm that ports are available and that both xinit and XWin work without this argument by running: $ xinit -- Everything else works fine but without "-displayfd" I can't record where the display is for this session to disk. I've also tried copying known-working Cygwin installs into the VM and still have the same error. Copying the erroring install from the VM outside and running it on my development machine (Windows 7 x64) does not generate an error. Unless something stands out here, I can provide the VMware image for testing (how convenient). Matt 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 jon.turney@dronecode.org.uk Mon Jul 21 14:44:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 21 Jul 2014 14:44:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.15.1-4 Message-ID: The following packages have been updated in the Cygwin distribution: *** xorg-server-*1.15.1-4 These packages contain XWin and the other X.Org X11 servers. The following cygwin-specific changes have been made since 1.15.1-3: * Give the window opened by "View logfile" a better title * Fix bugs in WGL GLX which prevented pbuffers from being created with certain fbconfigs * Improve the check that window position is visible to work correctly for non-rectangular virtual desktops * Downgrade the "forcing window to exist" log message from error to debug * Some compilation warning fixes * Remove an incorrect assertion in WGL GLX, triggered by glXSwapBuffers() in the piglit glx_make_current test x86: 1860dde6aac061b0dfdda6f6d8058914 *xorg-server-1.15.1-4-src.tar.xz 9d0a0d8ec0489f2c82e6b3def4c4515a *xorg-server-1.15.1-4.tar.xz 1997c143d62cc3200a50a9c3dceb6e8b *xorg-server-common-1.15.1-4.tar.xz 185301523810734629a44b14c964551a *xorg-server-debuginfo-1.15.1-4.tar.xz a6dd1aa066b982a0c569ffda02e1a5d7 *xorg-server-devel-1.15.1-4.tar.xz 1da132c818d94b65876d6efffa2ffc1e *xorg-server-dmx-1.15.1-4.tar.xz dbcd9b591a283d2ae94ca45c73625f20 *xorg-server-extra-1.15.1-4.tar.xz 3c03a460a456018511643f4631996ece *xwinclip-1.15.1-4.tar.xz x86_64: 4d0a8cf348241607677ebab936ffa930 *xorg-server-1.15.1-4-src.tar.xz d0d82d4ba5f9c9f66714224702acc0b5 *xorg-server-1.15.1-4.tar.xz 7dad87510941a6cb1f8574ae34a9e067 *xorg-server-common-1.15.1-4.tar.xz 6c1b57cb93be5c7c3396b49d3fb6235c *xorg-server-debuginfo-1.15.1-4.tar.xz 344fc8ff65c7443065bb1d6a3116f7e1 *xorg-server-devel-1.15.1-4.tar.xz 641d55fcd6f12e856a73c1dc70b276b8 *xorg-server-dmx-1.15.1-4.tar.xz 628378b4437b78b5c2b141a6d4cc79d2 *xorg-server-extra-1.15.1-4.tar.xz 9bd491aa34e29abd51d3e9ef182e5294 *xwinclip-1.15.1-4.tar.xz -- 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 mlybarger@gmail.com Mon Jul 21 14:45:00 2014 From: mlybarger@gmail.com (Mark Lybarger) Date: Mon, 21 Jul 2014 14:45:00 -0000 Subject: modify application list Message-ID: i'd like to modify the application list that displays when i right click on the Xorg item on the system tray. i want to add some more applications to the list. how do i modify the list? thanks, -mark- -- 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 matt@codespunk.com Mon Jul 21 14:57:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 21 Jul 2014 14:57:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.15.1-4 In-Reply-To: References: Message-ID: <53CD2A6F.10904@codespunk.com> Jon, I can't find a mirror that has this yet. Is there anything I can connect to that should be up to date? Matt D. On 7/21/2014 10:21 AM, Jon TURNEY wrote: > > The following packages have been updated in the Cygwin distribution: > > *** xorg-server-*1.15.1-4 > > These packages contain XWin and the other X.Org X11 servers. > > The following cygwin-specific changes have been made since 1.15.1-3: > > * Give the window opened by "View logfile" a better title > * Fix bugs in WGL GLX which prevented pbuffers from being created with > certain fbconfigs > * Improve the check that window position is visible to work correctly > for non-rectangular virtual desktops > * Downgrade the "forcing window to exist" log message from error to debug > * Some compilation warning fixes > * Remove an incorrect assertion in WGL GLX, triggered by > glXSwapBuffers() in the piglit glx_make_current test > > x86: > 1860dde6aac061b0dfdda6f6d8058914 *xorg-server-1.15.1-4-src.tar.xz > 9d0a0d8ec0489f2c82e6b3def4c4515a *xorg-server-1.15.1-4.tar.xz > 1997c143d62cc3200a50a9c3dceb6e8b *xorg-server-common-1.15.1-4.tar.xz > 185301523810734629a44b14c964551a *xorg-server-debuginfo-1.15.1-4.tar.xz > a6dd1aa066b982a0c569ffda02e1a5d7 *xorg-server-devel-1.15.1-4.tar.xz > 1da132c818d94b65876d6efffa2ffc1e *xorg-server-dmx-1.15.1-4.tar.xz > dbcd9b591a283d2ae94ca45c73625f20 *xorg-server-extra-1.15.1-4.tar.xz > 3c03a460a456018511643f4631996ece *xwinclip-1.15.1-4.tar.xz > > x86_64: > 4d0a8cf348241607677ebab936ffa930 *xorg-server-1.15.1-4-src.tar.xz > d0d82d4ba5f9c9f66714224702acc0b5 *xorg-server-1.15.1-4.tar.xz > 7dad87510941a6cb1f8574ae34a9e067 *xorg-server-common-1.15.1-4.tar.xz > 6c1b57cb93be5c7c3396b49d3fb6235c *xorg-server-debuginfo-1.15.1-4.tar.xz > 344fc8ff65c7443065bb1d6a3116f7e1 *xorg-server-devel-1.15.1-4.tar.xz > 641d55fcd6f12e856a73c1dc70b276b8 *xorg-server-dmx-1.15.1-4.tar.xz > 628378b4437b78b5c2b141a6d4cc79d2 *xorg-server-extra-1.15.1-4.tar.xz > 9bd491aa34e29abd51d3e9ef182e5294 *xwinclip-1.15.1-4.tar.xz > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@cygwin.com Mon Jul 21 15:01:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Mon, 21 Jul 2014 15:01:00 -0000 Subject: modify application list In-Reply-To: References: Message-ID: <53CD2B46.3030903@cygwin.com> On 2014-07-21 09:45, Mark Lybarger wrote: > i'd like to modify the application list that displays when i right > click on the Xorg item on the system tray. i want to add some more > applications to the list. how do i modify the list? http://x.cygwin.com/docs/man5/XWinrc.5.html Yaakov -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From matt@codespunk.com Mon Jul 21 15:49:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 21 Jul 2014 15:49:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53CC6789.4000601@codespunk.com> References: <53CC6789.4000601@codespunk.com> Message-ID: <53CD368C.3060509@codespunk.com> Still hangs with the latest 1.15.1-4 release. On my main machine, I get the following output: $ xinit -- -displayfd 1 read display number ':0' from X server 0 On the VM it just hangs. Taskmanager shows xinit.exe waiting or hung with XWin.exe churning cycles and eating memory; about 4kB a tick. Also on the VM, if I run the following: $ xinit -- -displayfd Then the display will open. So it seems to be an issue with whatever code is dealing with the file descriptors. Matt D. On 7/20/2014 9:06 PM, Matt D. wrote: > The operating system is Windows XP Professional. It is a CLEAN install > on a VMware virtual machine and is 100% patched up. Cygwin also is a > clean install. I did try a rebaseall with no effect. > > This is the first time I've encountered this. When I run "xinit -- > -displayfd 3", xinit will hang and XWin takes up 100% of the cpu. > > I've confirmed that file descriptors are working: > > $ exec 3>a > $ echo "test" >&3 > $ cat a > test > $ exec 3>&- > > I can confirm that ports are available and that both xinit and XWin work > without this argument by running: > > $ xinit -- > > Everything else works fine but without "-displayfd" I can't record where > the display is for this session to disk. > > I've also tried copying known-working Cygwin installs into the VM and > still have the same error. Copying the erroring install from the VM > outside and running it on my development machine (Windows 7 x64) does > not generate an error. > > Unless something stands out here, I can provide the VMware image for > testing (how convenient). > > > Matt 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/ > > > -- 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 21 15:58:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 21 Jul 2014 15:58:00 -0000 Subject: Wine creating windows offscreen when "multiwindow" is used? In-Reply-To: <53BDC08E.5060703@codespunk.com> References: <53B5DD59.5020302@codespunk.com> <53B978DA.3040305@dronecode.org.uk> <53BD6976.8000708@dronecode.org.uk> <53BDC08E.5060703@codespunk.com> Message-ID: <53CD3881.2060306@dronecode.org.uk> On 09/07/2014 23:22, Matt D. wrote: > Yes! That fixed it. Windows from Wine open up just as regular X > windows on the primary monitor. Thanks for testing. This change is included in 1.14.1-4 > To achieve this is appears as though you're ignoring the Window's > requested x/y position entirely and favoring the placement > heuristics, as these coordinates are being ignored. When the requested position isn't on a monitor, yes. > I do have a use-case where I want windows from Wine to be created at > a designated position for testing, so I don't have to test on a > Windows machine for placement as well. Is it at all possible to have > these windows map their coordinates strictly, as in 0,0 on the > primary monitor would be 1920x1080 in my case. This is a bit more work. Firstly, it seems there are some bugs in the way we transform between X and Windows coordinates, so it's only done correctly when the top-left of the X screen is at the top-left of the Windows virtual desktop. Secondly, I'm not sure how we can have X coordinates 0,0 not at the top-left and have things work correctly. X windows with negative coordinates are by definition off-screen, so may not render correctly. Or we could adjust the placement of all windows by the required offset, but I'm not sure that is a good idea. > For example, I may want a child window which is a custom dialog > aligned to the center of its parent, or a newly created window to be > center-aligned to the screen. You might find running wine in 'virtual desktop' mode helpful, as I don't think it has enough knowledge of the Xinerama monitor layout to place windows centered on a monitor. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From matt@codespunk.com Mon Jul 21 16:00:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 21 Jul 2014 16:00:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53CD368C.3060509@codespunk.com> References: <53CC6789.4000601@codespunk.com> <53CD368C.3060509@codespunk.com> Message-ID: <53CD3917.4060305@codespunk.com> Ok.. so I let xinit do its thing to see if it got anywhere. Eventually it will pop and error box. Interestingly, I specified a displayfd value of "3" and yet both the popup and the log are reporting "5": http://oi58.tinypic.com/106fono.jpg My XWin.0.log is about 15MB of repeated attempts to open a socket. Here is a snippet. I hope this helps: InitConnectionLimits: MaxClients = 255 Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 1.15.1.0 OS: CYGWIN_NT-5.1 matthew-17ffb52 1.7.30(0.272/5/3) 2014-05-23 10:36 i686 OS: Windows XP Service Pack 3 [Windows NT 5.1 build 2600] (Win32) Snapshot: 20140709-git-2e9c13ea41c51df7 XWin was started with the following command line: X -displayfd 5 ddxProcessArgument - Initializing default screens winInitializeScreenDefaults - primary monitor w 1062 h 703 winInitializeScreenDefaults - native DPI x 96 y 96 ddxProcessArgument - arg: -displayfd Trying to create socket for display number 0 _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:0 _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 .. Trying to create socket for display number 59534 _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:59534 _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 (EE) Fatal server error: (EE) Failed to find a socket to listen on(EE) [ 58128.390] (EE) Server terminated with error (1). Closing log file. Matt D. On 7/21/2014 11:49 AM, Matt D. wrote: > Still hangs with the latest 1.15.1-4 release. > > On my main machine, I get the following output: > > $ xinit -- -displayfd 1 > > read display number ':0' from X server > 0 > > On the VM it just hangs. Taskmanager shows xinit.exe waiting or hung > with XWin.exe churning cycles and eating memory; about 4kB a tick. > > Also on the VM, if I run the following: > > $ xinit -- -displayfd > > Then the display will open. So it seems to be an issue with whatever > code is dealing with the file descriptors. > > > Matt D. > > On 7/20/2014 9:06 PM, Matt D. wrote: >> The operating system is Windows XP Professional. It is a CLEAN install >> on a VMware virtual machine and is 100% patched up. Cygwin also is a >> clean install. I did try a rebaseall with no effect. >> >> This is the first time I've encountered this. When I run "xinit -- >> -displayfd 3", xinit will hang and XWin takes up 100% of the cpu. >> >> I've confirmed that file descriptors are working: >> >> $ exec 3>a >> $ echo "test" >&3 >> $ cat a >> test >> $ exec 3>&- >> >> I can confirm that ports are available and that both xinit and XWin work >> without this argument by running: >> >> $ xinit -- >> >> Everything else works fine but without "-displayfd" I can't record where >> the display is for this session to disk. >> >> I've also tried copying known-working Cygwin installs into the VM and >> still have the same error. Copying the erroring install from the VM >> outside and running it on my development machine (Windows 7 x64) does >> not generate an error. >> >> Unless something stands out here, I can provide the VMware image for >> testing (how convenient). >> >> >> Matt 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/ >> >> >> > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marco.atzeri@gmail.com Mon Jul 21 17:14:00 2014 From: marco.atzeri@gmail.com (Marco Atzeri) Date: Mon, 21 Jul 2014 17:14:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.15.1-4 In-Reply-To: <53CD2A6F.10904@codespunk.com> References: <53CD2A6F.10904@codespunk.com> Message-ID: <53CD4A82.2020108@gmail.com> On 21/07/2014 16:57, Matt D. wrote: > Jon, > > I can't find a mirror that has this yet. Is there anything I can connect > to that should be up to date? > > > Matt D. > most of the mirrors have a 24 hours cycle Just wait tomorrow to see it Regards Marco -- 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 matt@codespunk.com Mon Jul 21 17:30:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 21 Jul 2014 17:30:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53CD3917.4060305@codespunk.com> References: <53CC6789.4000601@codespunk.com> <53CD368C.3060509@codespunk.com> <53CD3917.4060305@codespunk.com> Message-ID: <53CD4E2C.6040204@codespunk.com> I found as a workaround to add the arguments "-nolisten tcp" when invoking xinit. However, I was under the impression that it was incompatible with -multiwindow and -clipboard, both of which seem to be working fine: https://cygwin.com/ml/cygwin-xfree/2009-05/msg00016.html Matt D. On 7/21/2014 12:00 PM, Matt D. wrote: > Ok.. so I let xinit do its thing to see if it got anywhere. Eventually > it will pop and error box. Interestingly, I specified a displayfd value > of "3" and yet both the popup and the log are reporting "5": > > http://oi58.tinypic.com/106fono.jpg > > My XWin.0.log is about 15MB of repeated attempts to open a socket. Here > is a snippet. I hope this helps: > > InitConnectionLimits: MaxClients = 255 > Welcome to the XWin X Server > Vendor: The Cygwin/X Project > Release: 1.15.1.0 > OS: CYGWIN_NT-5.1 matthew-17ffb52 1.7.30(0.272/5/3) 2014-05-23 10:36 i686 > OS: Windows XP Service Pack 3 [Windows NT 5.1 build 2600] (Win32) > Snapshot: 20140709-git-2e9c13ea41c51df7 > > XWin was started with the following command line: > > X -displayfd 5 > > ddxProcessArgument - Initializing default screens > winInitializeScreenDefaults - primary monitor w 1062 h 703 > winInitializeScreenDefaults - native DPI x 96 y 96 > ddxProcessArgument - arg: -displayfd > Trying to create socket for display number 0 > _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 > _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:0 > _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 > > .. > > > Trying to create socket for display number 59534 > _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 > _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:59534 > _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 > (EE) Fatal server error: > (EE) Failed to find a socket to listen on(EE) > [ 58128.390] (EE) Server terminated with error (1). Closing log file. > > > Matt D. > > On 7/21/2014 11:49 AM, Matt D. wrote: >> Still hangs with the latest 1.15.1-4 release. >> >> On my main machine, I get the following output: >> >> $ xinit -- -displayfd 1 >> >> read display number ':0' from X server >> 0 >> >> On the VM it just hangs. Taskmanager shows xinit.exe waiting or hung >> with XWin.exe churning cycles and eating memory; about 4kB a tick. >> >> Also on the VM, if I run the following: >> >> $ xinit -- -displayfd >> >> Then the display will open. So it seems to be an issue with whatever >> code is dealing with the file descriptors. >> >> >> Matt D. >> >> On 7/20/2014 9:06 PM, Matt D. wrote: >>> The operating system is Windows XP Professional. It is a CLEAN install >>> on a VMware virtual machine and is 100% patched up. Cygwin also is a >>> clean install. I did try a rebaseall with no effect. >>> >>> This is the first time I've encountered this. When I run "xinit -- >>> -displayfd 3", xinit will hang and XWin takes up 100% of the cpu. >>> >>> I've confirmed that file descriptors are working: >>> >>> $ exec 3>a >>> $ echo "test" >&3 >>> $ cat a >>> test >>> $ exec 3>&- >>> >>> I can confirm that ports are available and that both xinit and XWin work >>> without this argument by running: >>> >>> $ xinit -- >>> >>> Everything else works fine but without "-displayfd" I can't record where >>> the display is for this session to disk. >>> >>> I've also tried copying known-working Cygwin installs into the VM and >>> still have the same error. Copying the erroring install from the VM >>> outside and running it on my development machine (Windows 7 x64) does >>> not generate an error. >>> >>> Unless something stands out here, I can provide the VMware image for >>> testing (how convenient). >>> >>> >>> Matt 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/ >>> >>> >>> >> >> -- >> Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple >> Problem reports: http://cygwin.com/problems.html >> Documentation: http://x.cygwin.com/docs/ >> FAQ: http://x.cygwin.com/docs/faq/ >> >> >> > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > > -- 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 Wed Jul 23 14:06:00 2014 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Wed, 23 Jul 2014 14:06:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.15.1-4 In-Reply-To: <53CD4A82.2020108@gmail.com> References: <53CD2A6F.10904@codespunk.com> <53CD4A82.2020108@gmail.com> Message-ID: <20140723140653.GA6845@ednor.casa.cgf.cx> On Mon, Jul 21, 2014 at 07:14:42PM +0200, Marco Atzeri wrote: >On 21/07/2014 16:57, Matt D. wrote: >> to that should be up to date? > >most of the mirrors have a 24 hours cycle Actually, many mirrors update from sourceware.org every couple of hours. kernel.org is one example. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@cygwin.com Wed Jul 23 15:10:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Wed, 23 Jul 2014 15:10:00 -0000 Subject: [ANNOUNCEMENT] Updated: glib2.0-2.38.2-3 Message-ID: The following packages have been updated for the Cygwin distribution: * libglib2.0_0-2.38.2-3 * libglib2.0-devel-2.38.2-3 * libglib2.0-doc-2.38.2-3 GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. This update removes a threading workaround which is no longer necessary with Cygwin 1.7.31. -- 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@cygwin.com Wed Jul 23 15:10:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Wed, 23 Jul 2014 15:10:00 -0000 Subject: [ANNOUNCEMENT] Updated: gtk3-3.10.9-1 Message-ID: The following packages have been updated in the Cygwin distribution: * libgtk3_0-3.10.9-1 * libgtk3-devel-3.10.9-1 * libgtk3-doc-3.10.9-1 * libgailutil3_0-3.10.9-1 * libgailutil3-devel-3.10.9-1 * libgailutil3-doc-3.10.9-1 * girepository-Gtk3.0-3.10.9-1 * gtk3-demo-3.10.9-1 * gtk-update-icon-cache-3.10.9-1 GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. This is an update to the latest patch release for 3.10. -- 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@cygwin.com Wed Jul 23 16:09:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Wed, 23 Jul 2014 16:09:00 -0000 Subject: [ANNOUNCEMENT] Updated: mesa-10.2.4-1, mesa-demos-8.2.0-1 Message-ID: The following packages have been updated in the Cygwin distribution: * dri-drivers-10.2.4-1 * libEGL1-10.2.4-1 * libEGL-devel-10.2.4-1 * libGL1-10.2.4-1 * libGL-devel-10.2.4-1 * libGLESv1_CM1-10.2.4-1 * libGLESv1_CM-devel-10.2.4-1 * libGLESv2_2-10.2.4-1 * libGLESv2-devel-10.2.4-1 * libglapi0-10.2.4-1 * libOpenVG1-10.2.4-1 * libOpenVG-devel-10.2.4-1 * libOSMesa8-10.2.4-1 * libOSMesa-devel-10.2.4-1 * mesa-demos-8.2.0-1 Mesa is an open-source implementation of the OpenGL specification, a system for rendering interactive 3D graphics. This is an update to the latest upstream release, with a number of new features. Until now, OpenGL has been handled solely with indirect rendering, meaning that libGL passes calls over the GLX protocol to the server, which then handles the rendering with hardware acceleration in multiwindow/-wgl mode, or software rendering (swrast) in desktop/-nowgl mode. The major drawback of this method is that the GLX protocol only supports OpenGL 1.4, anything which requires 2.0 or newer (such as GLSL) cannot work. This release adds *direct* rendering support, where libGL handles the rendering itself via DRI drivers. This provides complete OpenGL 3.0 and GLSL 1.30 support (along with numerous newer extensions), allowing much more OpenGL software to render correctly. The only drawback at the moment is that only the llvmpipe DRI driver is current available, meaning that rendering is done in software and passed to the server over the X11 protocol, and therefore more CPU intensive. As this is a new feature, the previous behaviour of indirect rendering is still the default. In order to enable direct rendering (and hence OpenGL 3.0), the following steps are required: 1) If using -multiwindow, the -nowgl flag must be added. 2) Add the following to your ~/.startxwinrc, ~/.xinitrc, or ~/.bashrc, or run this manually in the shell from which you will launch OpenGL applications: unset LIBGL_ALWAYS_INDIRECT (tcsh users need to use unsetenv instead of unset, of course.) Other feature changes: * llvmpipe uses LLVM 3.4 and is now available on x86_64. * GLES support has been added. * mesa-demos includes EGL/GLES utilities. Many thanks to Jon TURNEY for his continued work on OpenGL support which led to these new features. -- 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@cygwin.com Wed Jul 23 16:29:00 2014 From: yselkowitz@cygwin.com (Yaakov Selkowitz) Date: Wed, 23 Jul 2014 16:29:00 -0000 Subject: [ANNOUNCEMENT] Updated: python-pyqt4, qscintilla2 Message-ID: The following packages have been updated for both arches: * libqscintilla2_11-2.8.1-1 * libqscintilla2-common-2.8.1-1 * libqscintilla2-devel-2.8.1-1 * python-pyqt4-4.10.4-1 * python-pyqt4-qsci-2.8.1-1 * python-sip-4.15.5-1 * python3-pyqt4-4.10.4-1 * python3-pyqt4-qsci-2.8.1-1 * python3-sip-4.15.5-1 PyQt is a set of Python v2 and v3 bindings for Digia's Qt application framework and runs on all platforms supported by Qt. The bindings are implemented as a set of Python modules and contain over 620 classes. This is an update to the versions required by PyQt5 5.2. -- 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 varuosad@varuosad.net Sun Jul 27 20:29:00 2014 From: varuosad@varuosad.net (Mihkel) Date: Sun, 27 Jul 2014 20:29:00 -0000 Subject: Varuosad.net Uued ja kasutatud varuosad =?ISO-8859-1?Q?k=F5igile s=F5idukitele.?= Message-ID: <20140727202933.811A911ECE51@mail-relay.elkdata.ee> Varuosad.net Lammutame s?idukeid Inglismaal ja Belgias, partnerite kaudu vahendame varuosi kogu Euroopast. Pakume varuosi s?iduatuodele, maasturitele, kaubikutele, veoautodele, bussidele, mototehnikale, vees?idukitele ja eritehnikale. Varuosade tarneaeg on 1-14 p?eva. Varuosad saab k?tte Tallinnast/Tartust/P?lvast. ?lej??nud linnadesse saadame posti/kulleriga. Populaarsemad uute varuosade Brandid mida m????????me: AE AMK ALLIED NIPPON APEC BRAKES ATE AP CLUTCH BANNER BATTERIES BECKERMANN BGA BILSTEIN BENDIX BRAKES BELACO BRAKES BEHR BERU BODYGUARDS BOGE BOSCH BOSCH BATTERIES BRAKE ENGINEERING(OWNED BY TRW) BREMBO CARLUBE CARPLAN CARGO-HOLGER CHRISTIANSEN CARLEX BULBS CASTROL CHAMPION CIFAM COMLINE COMMA OIL CONTITECH COOPERS FILTERS CORTECO DELPHI DENSO ELRING ELTA--LUCAS BRAND ELECTROSPARK--KERR NELSON(OWNED BY INTERMOTOR) EXEDY CLUTCH FAI FAG FEBI FERODO FILTRON FIRST LINE FRAM FILTERS FRIESEN (KLARIUS BRAND) GATES GRAF GKN GOETZE HC PARTS HELLA HOLTS HYCOTE INA JENOLITE K+N FILTERS KAYABA KYB KLARIUS KWP KOLBENSCHMIDT LEMFORDER LOCTITE LUCAS LUK MAHLE MANN MEYLE METTELLI MICROFLEX MOBILTRON MONROE MOOG MINTEX BRAKES NGK NISSENS NORDIC NTK NURAL OMEGA BRAKE PADS OPTIMAL OSRAM PAYEN PEX PHILIPS PIERBERG QUINTON HAZELL QH KLARIUS RING BULBS SACHS SEALEY SMP INTERMOTOR ( NOW OWN FUELPARTS BRAND) SKF SPIDAN STEELSEAL STOPLOCK SLIME TYRE REPAIR STP SUMMIT MIRROR GLASSES SWARFEGA TEXTAR BRAKES TRW UFI FILTERS VALEO VALVOLINE WD40 WIX WYNNS YUASA BATTERIES ZF CLUTCH SACHS ZF SHOCK ABSORBERS BOGE ZF COIL SPRINGS BOGE ZF STEERING PARTS LEMFORDER ZF 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 jon.turney@dronecode.org.uk Mon Jul 28 12:35:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Mon, 28 Jul 2014 12:35:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53CD4E2C.6040204@codespunk.com> References: <53CC6789.4000601@codespunk.com> <53CD368C.3060509@codespunk.com> <53CD3917.4060305@codespunk.com> <53CD4E2C.6040204@codespunk.com> Message-ID: <53D6436D.2090808@dronecode.org.uk> Thanks for reporting this problem. On 21/07/2014 18:30, Matt D. wrote: > I found as a workaround to add the arguments "-nolisten tcp" when > invoking xinit. However, I was under the impression that it was > incompatible with -multiwindow and -clipboard, both of which seem to be > working fine: > > https://cygwin.com/ml/cygwin-xfree/2009-05/msg00016.html That restriction no longer exists. https://cygwin.com/ml/cygwin-xfree/2009-10/msg00007.html > On 7/21/2014 12:00 PM, Matt D. wrote: >> Ok.. so I let xinit do its thing to see if it got anywhere. Eventually >> it will pop and error box. Interestingly, I specified a displayfd value >> of "3" and yet both the popup and the log are reporting "5": This is expected. xinit must know the display number of the X server it starts, so it can pass it on to any clients it starts, so it has a patch which should notice the -displayfd option, transparently use it to determine the display number for any clients they start, and then pass on the display number to the specified file descriptor >> My XWin.0.log is about 15MB of repeated attempts to open a socket. Here >> is a snippet. I hope this helps: >> >> InitConnectionLimits: MaxClients = 255 >> Welcome to the XWin X Server >> Vendor: The Cygwin/X Project >> Release: 1.15.1.0 >> OS: CYGWIN_NT-5.1 matthew-17ffb52 1.7.30(0.272/5/3) 2014-05-23 10:36 i686 >> OS: Windows XP Service Pack 3 [Windows NT 5.1 build 2600] (Win32) >> Snapshot: 20140709-git-2e9c13ea41c51df7 >> >> XWin was started with the following command line: >> >> X -displayfd 5 >> >> ddxProcessArgument - Initializing default screens >> winInitializeScreenDefaults - primary monitor w 1062 h 703 >> winInitializeScreenDefaults - native DPI x 96 y 96 >> ddxProcessArgument - arg: -displayfd >> Trying to create socket for display number 0 >> _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 >> _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:0 >> _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 >> >> .. >> Trying to create socket for display number 59534 >> _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 >> _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:59534 >> _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 >> (EE) Fatal server error: >> (EE) Failed to find a socket to listen on(EE) >> [ 58128.390] (EE) Server terminated with error (1). Closing log file. Ah. So, it seems that we have checked all ports from 6000 to 59534 + 6000 = 65534 and decided they are no good because we can't open an ipv6 socket. (It looks like there is another minor bug here in that we don't try port 65535! :-)) I guess if you just run XWin, it reports that it can't create an inet6 listener, but it continues anyway (unless the -nopn option is used). But, the implementation of -displayfd requires that creating all the listener socket succeeds. (It's not clear that this should be changed, otherwise we could reach the conclusion that it's ok to start a server on display n with a limited set of protocols, when a server already exists on display n with an non-intersecting set of protocols) So, you may find that -nolisten inet6, rather than -nolisten tcp (which prevents both ipv4 and ipv6 listening) also works around the problem. You might want to also investigate why inet6 sockets can't be opened. -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From matt@codespunk.com Mon Jul 28 23:57:00 2014 From: matt@codespunk.com (Matt D.) Date: Mon, 28 Jul 2014 23:57:00 -0000 Subject: xinit hangs on XWin infinite loop when using -displayfd In-Reply-To: <53D6436D.2090808@dronecode.org.uk> References: <53CC6789.4000601@codespunk.com> <53CD368C.3060509@codespunk.com> <53CD3917.4060305@codespunk.com> <53CD4E2C.6040204@codespunk.com> <53D6436D.2090808@dronecode.org.uk> Message-ID: <53D6E386.3060001@codespunk.com> Doh! I was so blind! Windows XP does not have an IPv6 protocol installed by default. I added it and the problem went away. This sounds like a bug. XWin should verify whether a device which supports the target protocol exists before attempting to open a socket on it. What is this used for? Sharing a local X session with someone else? Logging onto an existing X session at work from home? I've only ever used X locally or through ssh forwarding. Matt D. On 7/28/2014 8:34 AM, Jon TURNEY wrote: > > Thanks for reporting this problem. > > On 21/07/2014 18:30, Matt D. wrote: >> I found as a workaround to add the arguments "-nolisten tcp" when >> invoking xinit. However, I was under the impression that it was >> incompatible with -multiwindow and -clipboard, both of which seem to be >> working fine: >> >> https://cygwin.com/ml/cygwin-xfree/2009-05/msg00016.html > > That restriction no longer exists. > > https://cygwin.com/ml/cygwin-xfree/2009-10/msg00007.html > >> On 7/21/2014 12:00 PM, Matt D. wrote: >>> Ok.. so I let xinit do its thing to see if it got anywhere. Eventually >>> it will pop and error box. Interestingly, I specified a displayfd value >>> of "3" and yet both the popup and the log are reporting "5": > > This is expected. xinit must know the display number of the X server it > starts, so it can pass it on to any clients it starts, so it has a patch > which should notice the -displayfd option, transparently use it to > determine the display number for any clients they start, and then pass > on the display number to the specified file descriptor > >>> My XWin.0.log is about 15MB of repeated attempts to open a socket. Here >>> is a snippet. I hope this helps: >>> >>> InitConnectionLimits: MaxClients = 255 >>> Welcome to the XWin X Server >>> Vendor: The Cygwin/X Project >>> Release: 1.15.1.0 >>> OS: CYGWIN_NT-5.1 matthew-17ffb52 1.7.30(0.272/5/3) 2014-05-23 10:36 >>> i686 >>> OS: Windows XP Service Pack 3 [Windows NT 5.1 build 2600] (Win32) >>> Snapshot: 20140709-git-2e9c13ea41c51df7 >>> >>> XWin was started with the following command line: >>> >>> X -displayfd 5 >>> >>> ddxProcessArgument - Initializing default screens >>> winInitializeScreenDefaults - primary monitor w 1062 h 703 >>> winInitializeScreenDefaults - native DPI x 96 y 96 >>> ddxProcessArgument - arg: -displayfd >>> Trying to create socket for display number 0 >>> _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 >>> _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:0 >>> _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 >>> >>> .. >>> Trying to create socket for display number 59534 >>> _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6 >>> _XSERVTransOpen: transport open failed for inet6/matthew-17ffb52:59534 >>> _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6 >>> (EE) Fatal server error: >>> (EE) Failed to find a socket to listen on(EE) >>> [ 58128.390] (EE) Server terminated with error (1). Closing log file. > > Ah. So, it seems that we have checked all ports from 6000 to 59534 + > 6000 = 65534 and decided they are no good because we can't open an ipv6 > socket. > > (It looks like there is another minor bug here in that we don't try port > 65535! :-)) > > I guess if you just run XWin, it reports that it can't create an inet6 > listener, but it continues anyway (unless the -nopn option is used). > > But, the implementation of -displayfd requires that creating all the > listener socket succeeds. (It's not clear that this should be changed, > otherwise we could reach the conclusion that it's ok to start a server > on display n with a limited set of protocols, when a server already > exists on display n with an non-intersecting set of protocols) > > So, you may find that -nolisten inet6, rather than -nolisten tcp (which > prevents both ipv4 and ipv6 listening) also works around the problem. > > You might want to also investigate why inet6 sockets can't be opened. > -- 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 linush@verizon.net Wed Jul 30 18:04:00 2014 From: linush@verizon.net (C Linus Hicks) Date: Wed, 30 Jul 2014 18:04:00 -0000 Subject: Resize a Cygwin64 xterm on Windows 7 64-bit jumps in increments of two or three columns Message-ID: <1406743450.20244.29.camel@lh8.linush.lan> I have run Cygwin on multiple versions of Windows including recently on Windows XP and don't think I ever had this problem. Resizing or specifying a geometry always resulted in the exact number of columns requested, with increments of 1 column being available when dragging the borders of a window to resize. Now, after upgrading to Windows 7 64-bit, I cannot get the window to have 80 columns on resize. It jumps in increments of two or three, depending on the number of columns prior to resizing. For example: $ tput cols 66 xx50283@PP75W9D0R1 ~ $ tput cols 69 xx50283@PP75W9D0R1 ~ $ tput cols 71 xx50283@PP75W9D0R1 ~ $ tput cols 73 xx50283@PP75W9D0R1 ~ $ tput cols 75 xx50283@PP75W9D0R1 ~ $ tput cols 77 xx50283@PP75W9D0R1 ~ $ tput cols 79 xx50283@PP75W9D0R1 ~ $ tput cols 82 xx50283@PP75W9D0R1 ~ $ tput cols 84 Each one of those was queried after dragging the right-hand edge of the window by the smallest it would change. I don't know if it is related, but there is also several pixels (I would say around 20) gap between the window manager border decoration and the parts of the display presented by xterm. I did alter from the default Windows config for the desktop, because I don't want the large default borders. I set "Border Padding" to have a value of zero. Should I be able to resize by increments of one column? I have attached cygcheck output as requested in problem reporting guidelines, and also /var/log/xwin/XWin.0.log files. Thanks for any help. Linus -------------- next part -------------- Cygwin Configuration Diagnostics Current System Time: Wed Jul 30 17:33:27 2014 Windows 7 Enterprise Ver 6.1 Build 7601 Service Pack 1 Running in Terminal Service session Path: C:\Users\xx50283\cygwin64\usr\local\bin C:\Users\xx50283\cygwin64\bin C:\Oracle\product\11.2.0\client_1\bin C:\WINDOWS\system32 C:\WINDOWS C:\WINDOWS\System32\Wbem C:\WINDOWS\System32\WindowsPowerShell\v1.0 C:\WINDOWS\System32\WindowsPowerShell\v1.0 C:\Program Files (x86)\1E\NomadBranch C:\Program Files (x86)\BlueZone\6.1 C:\Users\xx50283\cygwin64\home\xx50283\bin Output from C:\Users\xx50283\cygwin64\bin\id.exe UID: 2123645(xx50283) GID: 10513(Domain Users) 10513(Domain Users) 555(Remote Desktop Users) 545(Users) SysDir: C:\WINDOWS\system32 WinDir: C:\WINDOWS USER = 'xx50283' PWD = '/home/xx50283' HOME = '/home/xx50283' USERDOMAIN_ROAMINGPROFILE = 'PNCNT' HOMEPATH = '\' MANPATH = ':/usr/ssl/man' APPDATA = 'C:\Users\xx50283\AppData\Roaming' ProgramW6432 = 'C:\Program Files' HOSTNAME = 'PP75W9D0R1' SHELL = '/bin/bash' TERM = 'xterm' PROCESSOR_IDENTIFIER = 'Intel64 Family 6 Model 42 Stepping 7, GenuineIntel' PROFILEREAD = 'true' WINDIR = 'C:\WINDOWS' WINDOWID = '37748766' PUBLIC = 'C:\Users\Public' ORIGINAL_PATH = '/cygdrive/c/Oracle/product/11.2.0/client_1/bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/WINDOWS/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files (x86)/1E/NomadBranch:/cygdrive/c/Program Files (x86)/BlueZone/6.1' USERDOMAIN = 'PNCNT' CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files' UATDATA = 'C:\WINDOWS\SysWOW64\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\ProgramData' windows_tracing_flags = '3' windows_tracing_logfile = 'C:\BVTBin\Tests\installpackage\csilogfile.log' !:: = '::\' TEMP = '/tmp' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' USERNAME = 'xx50283' PROCESSOR_LEVEL = '6' ProgramFiles(x86) = 'C:\Program Files (x86)' PSModulePath = 'C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\;C:\Program Files\Microsoft Application Virtualization\Client\' XWINLOGFILE = '/var/log/xwin/XWin.0.log' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' LANG = 'en_US.UTF-8' USERPROFILE = 'C:\Users\xx50283' CLIENTNAME = 'WIN7-PNC' TZ = 'America/New_York' LOGONSERVER = '\\WSWDS325C' CommonProgramW6432 = 'C:\Program Files\Common Files' PROCESSOR_ARCHITECTURE = 'AMD64' LOCALAPPDATA = 'C:\Users\xx50283\AppData\Local' HISTCONTROL = 'ignoredups' XTERM_LOCALE = 'en_US.UTF-8' XTERM_VERSION = 'XTerm(302)' ProgramData = 'C:\ProgramData' EXECIGNORE = '*.dll' SHLVL = '3' USERDNSDOMAIN = 'PNCBANK.COM' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC' HOMEDRIVE = 'L:' COMSPEC = 'C:\WINDOWS\system32\cmd.exe' LOGNAME = 'xx50283' TMP = '/tmp' SYSTEMROOT = 'C:\WINDOWS' PRINTER = 'Microsoft XPS Document Writer (redirected 2)' PROCESSOR_REVISION = '2a07' INFOPATH = '/usr/local/info:/usr/share/info:/usr/info' PROGRAMFILES = 'C:\Program Files' HOMESHARE = '\\pncbank.com\corp\Pittsburgh\Users\XX50283' DISPLAY = ':0.0' NUMBER_OF_PROCESSORS = '4' SESSIONNAME = 'RDP-Tcp#0' COMPUTERNAME = 'PP75W9D0R1' _ = '/usr/bin/cygcheck' HKEY_CURRENT_USER\Software\Cygwin HKEY_CURRENT_USER\Software\Cygwin\Installations (default) = '\??\C:\Users\xx50283\cygwin64' HKEY_CURRENT_USER\Software\Cygwin\Program Options HKEY_CURRENT_USER\Software\Cygwin\setup (default) = 'C:\Users\xx50283\cygwin64' obcaseinsensitive set to 1 Cygwin installations found in the registry: User: Key: 2d4f3daed3398077 Path: C:\Users\xx50283\cygwin64 c: hd NTFS 238472Mb 28% CP CS UN PA FC PNCWIN07 d: cd N/A N/A l: net NTFS 25081937Mb 89% CP CS UN PA m: net NTFS 61436Mb 11% CP CS UN PA FC APP C:\Users\xx50283\cygwin64 / system binary,auto C:\Users\xx50283\cygwin64\bin /usr/bin system binary,auto C:\Users\xx50283\cygwin64\lib /usr/lib system binary,auto cygdrive prefix /cygdrive user binary,posix=0,auto Found: C:\Users\xx50283\cygwin64\bin\awk -> C:\Users\xx50283\cygwin64\bin\gawk.exe Found: C:\Users\xx50283\cygwin64\bin\bash.exe Found: C:\Users\xx50283\cygwin64\bin\cat.exe Found: C:\Users\xx50283\cygwin64\bin\cp.exe Found: C:\Users\xx50283\cygwin64\bin\cpp.exe Not Found: crontab Found: C:\Users\xx50283\cygwin64\bin\find.exe Found: C:\WINDOWS\system32\find.exe Warning: C:\Users\xx50283\cygwin64\bin\find.exe hides C:\WINDOWS\system32\find.exe Found: C:\Users\xx50283\cygwin64\bin\gcc.exe Found: C:\Users\xx50283\cygwin64\bin\gdb.exe Found: C:\Users\xx50283\cygwin64\bin\grep.exe Found: C:\Users\xx50283\cygwin64\bin\kill.exe Found: C:\Users\xx50283\cygwin64\bin\ld.exe Found: C:\Users\xx50283\cygwin64\bin\ls.exe Found: C:\Users\xx50283\cygwin64\bin\make.exe Found: C:\Users\xx50283\cygwin64\bin\mv.exe Found: C:\Users\xx50283\cygwin64\bin\patch.exe Found: C:\Users\xx50283\cygwin64\bin\perl.exe Found: C:\Users\xx50283\cygwin64\bin\rm.exe Found: C:\Users\xx50283\cygwin64\bin\sed.exe Found: C:\Users\xx50283\cygwin64\bin\ssh.exe Found: C:\Users\xx50283\cygwin64\bin\sh.exe Found: C:\Users\xx50283\cygwin64\bin\tar.exe Found: C:\Users\xx50283\cygwin64\bin\test.exe Found: C:\Users\xx50283\cygwin64\bin\vi.exe Found: C:\Users\xx50283\cygwin64\bin\vim.exe 575k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygarchive-13.dll - os=4.0 img=0.0 sys=5.2 "cygarchive-13.dll" v0.0 ts=2013-05-30 03:06 38k 2013/07/19 C:\Users\xx50283\cygwin64\bin\cygargp-0.dll - os=4.0 img=0.0 sys=5.2 "cygargp-0.dll" v0.0 ts=2013-07-19 15:07 643k 2013/04/30 C:\Users\xx50283\cygwin64\bin\cygaspell-15.dll - os=4.0 img=0.0 sys=5.2 "cygaspell-15.dll" v0.0 ts=2013-04-30 08:11 107k 2014/03/12 C:\Users\xx50283\cygwin64\bin\cygatk-1.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygatk-1.0-0.dll" v0.0 ts=2014-03-12 07:45 87k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cygatomic-1.dll - os=4.0 img=0.0 sys=5.2 "cygatomic-1.dll" v0.0 ts=2014-01-29 01:15 16k 2013/03/26 C:\Users\xx50283\cygwin64\bin\cygattr-1.dll - os=4.0 img=0.0 sys=5.2 "cygattr-1.dll" v0.0 ts=2013-03-26 18:26 174k 2013/04/29 C:\Users\xx50283\cygwin64\bin\cygautotrace-3.dll - os=4.0 img=0.0 sys=5.2 "cygautotrace-3.dll" v0.0 ts=2013-04-29 09:23 125k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cygblkid-1.dll - os=4.0 img=0.0 sys=5.2 "cygblkid-1.dll" v0.0 ts=2013-03-11 03:08 64k 2013/03/07 C:\Users\xx50283\cygwin64\bin\cygbz2-1.dll - os=4.0 img=0.0 sys=5.2 "cygbz2-1.dll" v0.0 ts=2013-03-07 02:54 1061k 2014/03/13 C:\Users\xx50283\cygwin64\bin\cygcairo-2.dll - os=4.0 img=0.0 sys=5.2 "cygcairo-2.dll" v0.0 ts=2014-03-13 21:39 26k 2014/03/13 C:\Users\xx50283\cygwin64\bin\cygcairo-gobject-2.dll - os=4.0 img=0.0 sys=5.2 "cygcairo-gobject-2.dll" v0.0 ts=2014-03-13 21:39 122k 2014/03/13 C:\Users\xx50283\cygwin64\bin\cygcairo-script-interpreter-2.dll - os=4.0 img=0.0 sys=5.2 "cygcairo-script-interpreter-2.dll" v0.0 ts=2014-03-13 21:40 13k 2013/03/06 C:\Users\xx50283\cygwin64\bin\cygcatgets1.dll - os=4.0 img=0.0 sys=5.2 "cygcatgets1.dll" v0.0 ts=2013-03-06 14:34 117k 2013/05/05 C:\Users\xx50283\cygwin64\bin\cygcloog-isl-4.dll - os=4.0 img=0.0 sys=5.2 "cygcloog-isl-4.dll" v0.0 ts=2013-05-05 16:41 12k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cygcom_err-2.dll - os=4.0 img=0.0 sys=5.2 "cygcom_err-2.dll" v0.0 ts=2013-03-11 03:59 31k 2013/04/24 C:\Users\xx50283\cygwin64\bin\cygcord-1.dll - os=4.0 img=0.0 sys=5.2 "cygcord-1.dll" v0.0 ts=2013-04-24 23:14 203k 2013/04/21 C:\Users\xx50283\cygwin64\bin\cygcroco-0.6-3.dll - os=4.0 img=0.0 sys=5.2 "cygcroco-0.6-3.dll" v0.0 ts=2013-04-21 06:25 9k 2013/03/07 C:\Users\xx50283\cygwin64\bin\cygcrypt-0.dll - os=4.0 img=0.0 sys=5.2 "cygcrypt-0.dll" v0.0 ts=2013-03-07 09:29 1749k 2014/04/08 C:\Users\xx50283\cygwin64\bin\cygcrypto-1.0.0.dll - os=4.0 img=0.0 sys=5.2 "cygcrypto-1.0.0.dll" v0.0 ts=1970-01-01 00:00 413k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cygcurl-4.dll - os=4.0 img=0.0 sys=5.2 "cygcurl-4.dll" v0.0 ts=1970-01-01 00:00 23k 2013/04/12 C:\Users\xx50283\cygwin64\bin\cygdatrie-1.dll - os=4.0 img=0.0 sys=5.2 "cygdatrie-1.dll" v0.0 ts=2013-04-12 07:10 1526k 2013/03/08 C:\Users\xx50283\cygwin64\bin\cygdb-5.3.dll - os=4.0 img=0.0 sys=5.2 "cygdb-5.3.dll" v0.0 ts=2013-03-08 07:55 242k 2014/03/31 C:\Users\xx50283\cygwin64\bin\cygdbus-1-3.dll - os=4.0 img=0.0 sys=5.2 "cygdbus-1-3.dll" v0.0 ts=1970-01-01 00:00 111k 2013/03/08 C:\Users\xx50283\cygwin64\bin\cygdb_cxx-5.3.dll - os=4.0 img=0.0 sys=5.2 "cygdb_cxx-5.3.dll" v0.0 ts=2013-03-08 07:56 472k 2013/03/08 C:\Users\xx50283\cygwin64\bin\cygdb_sql-5.3.dll - os=4.0 img=0.0 sys=5.2 "cygdb_sql-5.3.dll" v0.0 ts=2013-03-08 07:58 169k 2014/02/10 C:\Users\xx50283\cygwin64\bin\cygdialog-11.dll - os=4.0 img=0.0 sys=5.2 "cygdialog-11.dll" v0.0 ts=2014-02-10 01:24 15k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygdmx-1.dll - os=4.0 img=0.0 sys=5.2 "cygdmx-1.dll" v0.0 ts=2013-06-06 20:04 154k 2013/10/20 C:\Users\xx50283\cygwin64\bin\cygedit-0.dll - os=4.0 img=0.0 sys=5.2 "cygedit-0.dll" v0.0 ts=2013-10-20 21:56 158k 2013/04/23 C:\Users\xx50283\cygwin64\bin\cygEMF-1.dll - os=4.0 img=0.0 sys=5.2 "cygEMF-1.dll" v0.0 ts=2013-04-23 06:39 147k 2013/07/31 C:\Users\xx50283\cygwin64\bin\cygexpat-1.dll - os=4.0 img=0.0 sys=5.2 "cygexpat-1.dll" v0.0 ts=2013-07-31 22:53 72k 2013/09/02 C:\Users\xx50283\cygwin64\bin\cygexslt-0.dll - os=4.0 img=0.0 sys=5.2 "cygexslt-0.dll" v0.0 ts=2013-09-02 17:55 31k 2013/08/06 C:\Users\xx50283\cygwin64\bin\cygfam-0.dll - os=4.0 img=0.0 sys=5.2 "cygfam-0.dll" v0.0 ts=2013-08-06 20:09 22k 2013/05/12 C:\Users\xx50283\cygwin64\bin\cygffi-6.dll - os=4.0 img=0.0 sys=5.2 "cygffi-6.dll" v0.0 ts=2013-05-12 22:53 1050k 2014/04/13 C:\Users\xx50283\cygwin64\bin\cygfftw3-3.dll - os=4.0 img=0.0 sys=5.2 "cygfftw3-3.dll" v0.0 ts=1970-01-01 00:00 1011k 2014/04/13 C:\Users\xx50283\cygwin64\bin\cygfftw3f-3.dll - os=4.0 img=0.0 sys=5.2 "cygfftw3f-3.dll" v0.0 ts=1970-01-01 00:00 25k 2014/04/13 C:\Users\xx50283\cygwin64\bin\cygfftw3f_threads-3.dll - os=4.0 img=0.0 sys=5.2 "cygfftw3f_threads-3.dll" v0.0 ts=1970-01-01 00:00 24k 2014/04/13 C:\Users\xx50283\cygwin64\bin\cygfftw3_threads-3.dll - os=4.0 img=0.0 sys=5.2 "cygfftw3_threads-3.dll" v0.0 ts=1970-01-01 00:00 218k 2014/04/29 C:\Users\xx50283\cygwin64\bin\cygfontconfig-1.dll - os=4.0 img=0.0 sys=5.2 "cygfontconfig-1.dll" v0.0 ts=1970-01-01 00:00 25k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygfontenc-1.dll - os=4.0 img=0.0 sys=5.2 "cygfontenc-1.dll" v0.0 ts=2013-06-06 22:13 53k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygformw-10.dll - os=4.0 img=0.0 sys=5.2 "cygformw-10.dll" v0.0 ts=2013-05-06 08:10 545k 2013/04/21 C:\Users\xx50283\cygwin64\bin\cygfpx-1.dll - os=4.0 img=0.0 sys=5.2 "cygfpx-1.dll" v0.0 ts=2013-04-21 12:24 329k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygfreebl3.dll - os=4.0 img=0.0 sys=5.2 "cygfreebl3.dll" v0.0 ts=2014-01-28 20:15 585k 2014/03/31 C:\Users\xx50283\cygwin64\bin\cygfreetype-6.dll - os=4.0 img=0.0 sys=5.2 "cygfreetype-6.dll" v0.0 ts=1970-01-01 00:00 41k 2014/04/04 C:\Users\xx50283\cygwin64\bin\cygFS-6.dll - os=4.0 img=0.0 sys=5.2 "cygFS-6.dll" v0.0 ts=1970-01-01 00:00 103k 2013/04/24 C:\Users\xx50283\cygwin64\bin\cyggc-1.dll - os=4.0 img=0.0 sys=5.2 "cyggc-1.dll" v0.0 ts=2013-04-24 23:14 8k 2013/04/24 C:\Users\xx50283\cygwin64\bin\cyggccpp-1.dll - os=4.0 img=0.0 sys=5.2 "cyggccpp-1.dll" v0.0 ts=2013-04-24 23:14 67k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cyggcc_s-seh-1.dll - os=4.0 img=0.0 sys=5.2 "cyggcc_s-seh-1.dll" v0.0 ts=2014-01-29 00:47 472k 2013/03/13 C:\Users\xx50283\cygwin64\bin\cyggcrypt-11.dll - os=4.0 img=0.0 sys=5.2 "cyggcrypt-11.dll" v0.0 ts=2013-03-13 02:27 239k 2013/04/21 C:\Users\xx50283\cygwin64\bin\cyggd-2.dll - os=4.0 img=0.0 sys=5.2 "cyggd-2.dll" v0.0 ts=2013-04-21 15:06 29k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cyggdbm-4.dll - os=4.0 img=0.0 sys=5.2 "cyggdbm-4.dll" v0.0 ts=2013-03-11 05:00 12k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cyggdbm_compat-4.dll - os=4.0 img=0.0 sys=5.2 "cyggdbm_compat-4.dll" v0.0 ts=2013-03-11 05:01 602k 2014/03/28 C:\Users\xx50283\cygwin64\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggdk-x11-2.0-0.dll" v0.0 ts=2014-03-28 17:57 215k 2014/03/12 C:\Users\xx50283\cygwin64\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2014-03-12 08:07 32k 2013/07/22 C:\Users\xx50283\cygwin64\bin\cyggif-4.dll - os=4.0 img=0.0 sys=5.2 "cyggif-4.dll" v0.0 ts=2013-07-22 05:17 1189k 2014/04/02 C:\Users\xx50283\cygwin64\bin\cyggio-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggio-2.0-0.dll" v0.0 ts=1970-01-01 00:00 396k 2013/10/09 C:\Users\xx50283\cygwin64\bin\cygGL-1.dll - os=4.0 img=0.0 sys=5.2 "cygGL-1.dll" v0.0 ts=2013-10-09 03:31 213k 2013/10/09 C:\Users\xx50283\cygwin64\bin\cygglapi-0.dll - os=4.0 img=0.0 sys=5.2 "cygglapi-0.dll" v0.0 ts=2013-10-09 01:25 904k 2014/04/02 C:\Users\xx50283\cygwin64\bin\cygglib-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygglib-2.0-0.dll" v0.0 ts=1970-01-01 00:00 15k 2014/04/02 C:\Users\xx50283\cygwin64\bin\cyggmodule-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggmodule-2.0-0.dll" v0.0 ts=1970-01-01 00:00 516k 2014/04/05 C:\Users\xx50283\cygwin64\bin\cyggmp-10.dll - os=4.0 img=0.0 sys=5.2 "cyggmp-10.dll" v0.0 ts=1970-01-01 00:00 904k 2013/05/29 C:\Users\xx50283\cygwin64\bin\cyggnutls-28.dll - os=4.0 img=0.0 sys=5.2 "cyggnutls-28.dll" v0.0 ts=2013-05-29 16:52 84k 2013/05/29 C:\Users\xx50283\cygwin64\bin\cyggnutls-openssl-27.dll - os=4.0 img=0.0 sys=5.2 "cyggnutls-openssl-27.dll" v0.0 ts=2013-05-29 16:52 83k 2013/05/29 C:\Users\xx50283\cygwin64\bin\cyggnutls-xssl-0.dll - os=4.0 img=0.0 sys=5.2 "cyggnutls-xssl-0.dll" v0.0 ts=2013-05-29 16:52 41k 2013/05/29 C:\Users\xx50283\cygwin64\bin\cyggnutlsxx-28.dll - os=4.0 img=0.0 sys=5.2 "cyggnutlsxx-28.dll" v0.0 ts=2013-05-29 16:52 277k 2014/04/02 C:\Users\xx50283\cygwin64\bin\cyggobject-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggobject-2.0-0.dll" v0.0 ts=1970-01-01 00:00 46k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cyggomp-1.dll - os=4.0 img=0.0 sys=5.2 "cyggomp-1.dll" v0.0 ts=2014-01-29 00:49 17k 2013/03/13 C:\Users\xx50283\cygwin64\bin\cyggpg-error-0.dll - os=4.0 img=0.0 sys=5.2 "cyggpg-error-0.dll" v0.0 ts=2013-03-13 01:03 116k 2013/08/05 C:\Users\xx50283\cygwin64\bin\cyggraphite2-3.dll - os=4.0 img=3.0 sys=5.2 "cyggraphite2-3.dll" v0.0 ts=2013-08-05 07:33 7684k 2013/04/30 C:\Users\xx50283\cygwin64\bin\cyggs-9.dll - os=4.0 img=0.0 sys=5.2 "cyggs-9.dll" v0.0 ts=2013-04-30 12:31 251k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cyggssapi_krb5-2.dll - os=4.0 img=0.0 sys=5.2 "cyggssapi_krb5-2.dll" v0.0 ts=1970-01-01 00:00 10k 2014/04/02 C:\Users\xx50283\cygwin64\bin\cyggthread-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggthread-2.0-0.dll" v0.0 ts=1970-01-01 00:00 3929k 2014/03/28 C:\Users\xx50283\cygwin64\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=0.0 sys=5.2 "cyggtk-x11-2.0-0.dll" v0.0 ts=2014-03-28 18:03 316k 2014/01/09 C:\Users\xx50283\cygwin64\bin\cygharfbuzz-0.dll - os=4.0 img=0.0 sys=5.2 "cygharfbuzz-0.dll" v0.0 ts=2014-01-09 07:16 10k 2014/01/09 C:\Users\xx50283\cygwin64\bin\cygharfbuzz-icu-0.dll - os=4.0 img=0.0 sys=5.2 "cygharfbuzz-icu-0.dll" v0.0 ts=2014-01-09 07:16 29k 2013/03/14 C:\Users\xx50283\cygwin64\bin\cyghistory7.dll - os=4.0 img=0.0 sys=5.2 "cyghistory7.dll" v0.0 ts=2013-03-14 11:14 166k 2013/05/14 C:\Users\xx50283\cygwin64\bin\cyghogweed-2.dll - os=4.0 img=0.0 sys=5.2 "cyghogweed-2.dll" v0.0 ts=2013-05-14 07:42 78k 2013/03/15 C:\Users\xx50283\cygwin64\bin\cygICE-6.dll - os=4.0 img=0.0 sys=5.2 "cygICE-6.dll" v0.0 ts=2013-03-15 09:46 360k 2013/07/29 C:\Users\xx50283\cygwin64\bin\cygicons-0.dll - os=4.0 img=1.4 sys=5.2 "cygicons-0.dll" v0.0 ts=2013-07-29 02:27 998k 2013/03/07 C:\Users\xx50283\cygwin64\bin\cygiconv-2.dll - os=4.0 img=0.0 sys=5.2 "cygiconv-2.dll" v0.0 ts=2013-03-07 03:03 21806k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygicudata51.dll - os=4.0 img=0.0 sys=5.2 "cygicudata51.dll" v0.0 ts=2013-06-25 06:30 1717k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygicui18n51.dll - os=4.0 img=0.0 sys=5.2 "cygicui18n51.dll" v0.0 ts=2013-06-25 06:28 43k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygicuio51.dll - os=4.0 img=0.0 sys=5.2 "cygicuio51.dll" v0.0 ts=2013-06-25 06:30 305k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygicule51.dll - os=4.0 img=0.0 sys=5.2 "cygicule51.dll" v0.0 ts=2013-06-25 06:28 38k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygiculx51.dll - os=4.0 img=0.0 sys=5.2 "cygiculx51.dll" v0.0 ts=2013-06-25 06:28 1231k 2013/06/25 C:\Users\xx50283\cygwin64\bin\cygicuuc51.dll - os=4.0 img=0.0 sys=5.2 "cygicuuc51.dll" v0.0 ts=2013-06-25 06:27 195k 2013/04/05 C:\Users\xx50283\cygwin64\bin\cygidn-11.dll - os=4.0 img=0.0 sys=5.2 "cygidn-11.dll" v0.0 ts=2013-04-05 09:58 38k 2013/06/24 C:\Users\xx50283\cygwin64\bin\cygintl-8.dll - os=4.0 img=0.0 sys=5.2 "cygintl-8.dll" v0.0 ts=2013-06-24 04:36 888k 2013/05/05 C:\Users\xx50283\cygwin64\bin\cygisl-10.dll - os=4.0 img=0.0 sys=5.2 "cygisl-10.dll" v0.0 ts=2013-05-05 16:36 271k 2013/04/11 C:\Users\xx50283\cygwin64\bin\cygjasper-1.dll - os=4.0 img=0.0 sys=5.2 "cygjasper-1.dll" v0.0 ts=2013-04-11 08:18 50k 2014/05/15 C:\Users\xx50283\cygwin64\bin\cygjbig-2.dll - os=4.0 img=0.0 sys=5.2 "cygjbig-2.dll" v0.0 ts=1970-01-01 00:00 236k 2013/04/12 C:\Users\xx50283\cygwin64\bin\cygjpeg-8.dll - os=4.0 img=0.0 sys=5.2 "cygjpeg-8.dll" v0.0 ts=2013-04-12 05:00 181k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cygk5crypto-3.dll - os=4.0 img=0.0 sys=5.2 "cygk5crypto-3.dll" v0.0 ts=1970-01-01 00:00 83k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygkpathsea-6.dll - os=4.0 img=0.0 sys=5.2 "cygkpathsea-6.dll" v0.0 ts=2013-05-30 15:10 700k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cygkrb5-3.dll - os=4.0 img=0.0 sys=5.2 "cygkrb5-3.dll" v0.0 ts=1970-01-01 00:00 36k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cygkrb5support-0.dll - os=4.0 img=0.0 sys=5.2 "cygkrb5support-0.dll" v0.0 ts=1970-01-01 00:00 44k 2013/06/18 C:\Users\xx50283\cygwin64\bin\cyglber-2-4-2.dll - os=4.0 img=0.0 sys=5.2 "cyglber-2-4-2.dll" v0.0 ts=2013-06-17 21:00 283k 2013/09/03 C:\Users\xx50283\cygwin64\bin\cyglcms2-2.dll - os=4.0 img=0.0 sys=5.2 "cyglcms2-2.dll" v0.0 ts=2013-09-03 13:56 243k 2013/06/18 C:\Users\xx50283\cygwin64\bin\cygldap-2-4-2.dll - os=4.0 img=0.0 sys=5.2 "cygldap-2-4-2.dll" v0.0 ts=2013-06-17 21:00 260k 2013/06/18 C:\Users\xx50283\cygwin64\bin\cygldap_r-2-4-2.dll - os=4.0 img=0.0 sys=5.2 "cygldap_r-2-4-2.dll" v0.0 ts=2013-06-17 21:01 6k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cyglsa64.dll - os=4.0 img=0.0 sys=5.2 "cyglsa64.dll" v0.0 ts=2014-05-23 09:35 34k 2013/05/27 C:\Users\xx50283\cygwin64\bin\cygltdl-7.dll - os=4.0 img=0.0 sys=5.2 "cygltdl-7.dll" v0.0 ts=2013-05-27 07:22 129k 2013/03/07 C:\Users\xx50283\cygwin64\bin\cyglzma-5.dll - os=4.0 img=0.0 sys=5.2 "cyglzma-5.dll" v0.0 ts=2013-03-07 10:20 124k 2013/03/19 C:\Users\xx50283\cygwin64\bin\cyglzo2-2.dll - os=4.0 img=0.0 sys=5.2 "cyglzo2-2.dll" v0.0 ts=2013-03-19 05:35 107k 2014/03/27 C:\Users\xx50283\cygwin64\bin\cygmagic-1.dll - os=4.0 img=0.0 sys=5.2 "cygmagic-1.dll" v0.0 ts=1970-01-01 00:00 291k 2013/10/12 C:\Users\xx50283\cygwin64\bin\cygMagick++-5.dll - os=4.0 img=0.0 sys=5.2 "cygMagick++-5.dll" v0.0 ts=2013-10-12 18:21 4157k 2013/10/12 C:\Users\xx50283\cygwin64\bin\cygMagickCore-5.dll - os=4.0 img=0.0 sys=5.2 "cygMagickCore-5.dll" v0.0 ts=2013-10-12 18:17 1088k 2013/10/12 C:\Users\xx50283\cygwin64\bin\cygMagickWand-5.dll - os=4.0 img=0.0 sys=5.2 "cygMagickWand-5.dll" v0.0 ts=2013-10-12 18:19 132k 2014/01/21 C:\Users\xx50283\cygwin64\bin\cygmcpp-0.dll - os=4.0 img=0.0 sys=5.2 "cygmcpp-0.dll" v0.0 ts=2014-01-21 18:41 28k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygmenuw-10.dll - os=4.0 img=0.0 sys=5.2 "cygmenuw-10.dll" v0.0 ts=2013-05-06 08:10 42k 2013/08/12 C:\Users\xx50283\cygwin64\bin\cygmetalink-3.dll - os=4.0 img=0.0 sys=5.2 "cygmetalink-3.dll" v0.0 ts=2013-08-13 00:02 331k 2013/09/03 C:\Users\xx50283\cygwin64\bin\cygming-1.dll - os=4.0 img=0.0 sys=5.2 "cygming-1.dll" v0.0 ts=2013-09-03 12:51 87k 2014/04/05 C:\Users\xx50283\cygwin64\bin\cygmpc-3.dll - os=4.0 img=0.0 sys=5.2 "cygmpc-3.dll" v0.0 ts=1970-01-01 00:00 319k 2013/05/05 C:\Users\xx50283\cygwin64\bin\cygmpfr-4.dll - os=4.0 img=0.0 sys=5.2 "cygmpfr-4.dll" v0.0 ts=2013-05-05 13:40 119k 2013/05/02 C:\Users\xx50283\cygwin64\bin\cygMrm-4.dll - os=4.0 img=0.0 sys=5.2 "cygMrm-4.dll" v0.0 ts=2013-05-02 09:20 449k 2014/05/06 C:\Users\xx50283\cygwin64\bin\cygnativeGLthunk.dll - os=4.0 img=0.0 sys=5.2 "cygnativeGLthunk.dll" v0.0 ts=1970-01-01 00:00 52k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygncurses++w-10.dll - os=4.0 img=0.0 sys=5.2 "cygncurses++w-10.dll" v0.0 ts=2013-05-06 08:14 295k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygncursesw-10.dll - os=4.0 img=0.0 sys=5.2 "cygncursesw-10.dll" v0.0 ts=2013-05-06 08:08 188k 2013/06/05 C:\Users\xx50283\cygwin64\bin\cygnetpbm-10.dll - os=4.0 img=0.0 sys=5.2 "cygnetpbm-10.dll" v0.0 ts=2013-06-05 16:55 177k 2013/05/14 C:\Users\xx50283\cygwin64\bin\cygnettle-4.dll - os=4.0 img=0.0 sys=5.2 "cygnettle-4.dll" v0.0 ts=2013-05-14 07:42 218k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygnspr4.dll - os=4.0 img=0.0 sys=5.2 "cygnspr4.dll" v0.0 ts=2014-01-28 19:59 1265k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygnss3.dll - os=4.0 img=0.0 sys=5.2 "cygnss3.dll" v0.0 ts=2014-01-28 20:17 156k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygnssdbm3.dll - os=4.0 img=0.0 sys=5.2 "cygnssdbm3.dll" v0.0 ts=2014-01-28 20:15 146k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygnssutil3.dll - os=4.0 img=0.0 sys=5.2 "cygnssutil3.dll" v0.0 ts=2014-01-28 20:14 123k 2014/01/31 C:\Users\xx50283\cygwin64\bin\cygopenjpeg-1.dll - os=4.0 img=1.5 sys=5.2 "cygopenjpeg-1.dll" v0.0 ts=2014-01-31 05:12 207k 2014/03/13 C:\Users\xx50283\cygwin64\bin\cygp11-kit-0.dll - os=4.0 img=0.0 sys=5.2 "cygp11-kit-0.dll" v0.0 ts=2014-03-13 03:35 13k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygpanelw-10.dll - os=4.0 img=0.0 sys=5.2 "cygpanelw-10.dll" v0.0 ts=2013-05-06 08:09 261k 2014/03/20 C:\Users\xx50283\cygwin64\bin\cygpango-1.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygpango-1.0-0.dll" v0.0 ts=2014-03-20 10:59 41k 2014/03/20 C:\Users\xx50283\cygwin64\bin\cygpangocairo-1.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygpangocairo-1.0-0.dll" v0.0 ts=2014-03-20 10:59 69k 2014/03/20 C:\Users\xx50283\cygwin64\bin\cygpangoft2-1.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygpangoft2-1.0-0.dll" v0.0 ts=2014-03-20 10:59 27k 2014/03/20 C:\Users\xx50283\cygwin64\bin\cygpangoxft-1.0-0.dll - os=4.0 img=0.0 sys=5.2 "cygpangoxft-1.0-0.dll" v0.0 ts=2014-03-20 10:59 11k 2013/07/23 C:\Users\xx50283\cygwin64\bin\cygpaper-1.dll - os=4.0 img=0.0 sys=5.2 "cygpaper-1.dll" v0.0 ts=2013-07-23 05:40 271k 2014/03/12 C:\Users\xx50283\cygwin64\bin\cygpcre-1.dll - os=4.0 img=0.0 sys=5.2 "cygpcre-1.dll" v0.0 ts=2014-03-12 02:35 1580k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cygperl5_14.dll - os=4.0 img=0.0 sys=5.2 "cygperl5_14.dll" v0.0 ts=2013-03-12 00:25 656k 2014/01/10 C:\Users\xx50283\cygwin64\bin\cygpixman-1-0.dll - os=4.0 img=0.0 sys=5.2 "cygpixman-1-0.dll" v0.0 ts=2014-01-10 01:32 16k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygplc4.dll - os=4.0 img=0.0 sys=5.2 "cygplc4.dll" v0.0 ts=2014-01-28 19:59 14k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygplds4.dll - os=4.0 img=0.0 sys=5.2 "cygplds4.dll" v0.0 ts=2014-01-28 19:59 147k 2013/03/19 C:\Users\xx50283\cygwin64\bin\cygpng15-15.dll - os=4.0 img=0.0 sys=5.2 "cygpng15-15.dll" v0.0 ts=2013-03-19 02:58 1847k 2013/06/05 C:\Users\xx50283\cygwin64\bin\cygpoppler-28.dll - os=4.0 img=0.0 sys=5.2 "cygpoppler-28.dll" v0.0 ts=2013-06-05 06:22 41k 2013/10/21 C:\Users\xx50283\cygwin64\bin\cygpopt-0.dll - os=4.0 img=0.0 sys=5.2 "cygpopt-0.dll" v0.0 ts=2013-10-21 21:52 8k 2013/04/30 C:\Users\xx50283\cygwin64\bin\cygpspell-15.dll - os=4.0 img=0.0 sys=5.2 "cygpspell-15.dll" v0.0 ts=2013-04-30 08:12 349k 2013/04/28 C:\Users\xx50283\cygwin64\bin\cygpstoedit-0.dll - os=4.0 img=0.0 sys=5.2 "cygpstoedit-0.dll" v0.0 ts=2013-04-28 09:25 38k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygptexenc-1.dll - os=4.0 img=0.0 sys=5.2 "cygptexenc-1.dll" v0.0 ts=2013-05-30 15:10 302k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cygquadmath-0.dll - os=4.0 img=0.0 sys=5.2 "cygquadmath-0.dll" v0.0 ts=2014-01-29 01:16 193k 2013/03/14 C:\Users\xx50283\cygwin64\bin\cygreadline7.dll - os=4.0 img=0.0 sys=5.2 "cygreadline7.dll" v0.0 ts=2013-03-14 11:14 200k 2014/03/12 C:\Users\xx50283\cygwin64\bin\cygrsvg-2-2.dll - os=4.0 img=0.0 sys=5.2 "cygrsvg-2-2.dll" v0.0 ts=2014-03-13 00:52 1818k 2014/05/11 C:\Users\xx50283\cygwin64\bin\cygruby191.dll - os=4.0 img=0.0 sys=5.2 "cygruby191.dll" v1.9 ts=1970-01-01 00:00 97k 2014/05/26 C:\Users\xx50283\cygwin64\bin\cygsasl2-3.dll - os=4.0 img=0.0 sys=5.2 "cygsasl2-3.dll" v0.0 ts=1970-01-01 00:00 28k 2014/01/14 C:\Users\xx50283\cygwin64\bin\cygSM-6.dll - os=4.0 img=0.0 sys=5.2 "cygSM-6.dll" v0.0 ts=2014-01-14 23:23 164k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygsmime3.dll - os=4.0 img=0.0 sys=5.2 "cygsmime3.dll" v0.0 ts=2014-01-28 20:18 257k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygsoftokn3.dll - os=4.0 img=0.0 sys=5.2 "cygsoftokn3.dll" v0.0 ts=2014-01-28 20:15 726k 2014/04/18 C:\Users\xx50283\cygwin64\bin\cygsqlite3-0.dll - os=4.0 img=0.0 sys=5.2 "cygsqlite3-0.dll" v0.0 ts=1970-01-01 00:00 141k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cygssh2-1.dll - os=4.0 img=0.0 sys=5.2 "cygssh2-1.dll" v0.0 ts=2013-03-11 11:42 377k 2014/04/08 C:\Users\xx50283\cygwin64\bin\cygssl-1.0.0.dll - os=4.0 img=0.0 sys=5.2 "cygssl-1.0.0.dll" v0.0 ts=1970-01-01 00:00 370k 2014/01/28 C:\Users\xx50283\cygwin64\bin\cygssl3.dll - os=4.0 img=0.0 sys=5.2 "cygssl3.dll" v0.0 ts=2014-01-28 20:18 11k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cygssp-0.dll - os=4.0 img=0.0 sys=5.2 "cygssp-0.dll" v0.0 ts=2014-01-29 01:14 892k 2014/01/29 C:\Users\xx50283\cygwin64\bin\cygstdc++-6.dll - os=4.0 img=0.0 sys=5.2 "cygstdc++-6.dll" v0.0 ts=2014-01-29 00:57 242k 2013/04/26 C:\Users\xx50283\cygwin64\bin\cygt1-5.dll - os=4.0 img=0.0 sys=5.2 "cygt1-5.dll" v0.0 ts=2013-04-25 17:35 69k 2013/04/22 C:\Users\xx50283\cygwin64\bin\cygtasn1-6.dll - os=4.0 img=0.0 sys=5.2 "cygtasn1-6.dll" v0.0 ts=2013-04-22 01:25 31k 2013/04/12 C:\Users\xx50283\cygwin64\bin\cygthai-0.dll - os=4.0 img=0.0 sys=5.2 "cygthai-0.dll" v0.0 ts=2013-04-12 12:02 51k 2013/05/06 C:\Users\xx50283\cygwin64\bin\cygticw-10.dll - os=4.0 img=0.0 sys=5.2 "cygticw-10.dll" v0.0 ts=2013-05-06 08:08 363k 2014/05/15 C:\Users\xx50283\cygwin64\bin\cygtiff-5.dll - os=4.0 img=0.0 sys=5.2 "cygtiff-5.dll" v0.0 ts=1970-01-01 00:00 12k 2014/05/15 C:\Users\xx50283\cygwin64\bin\cygtiffxx-5.dll - os=4.0 img=0.0 sys=5.2 "cygtiffxx-5.dll" v0.0 ts=1970-01-01 00:00 261k 2013/04/12 C:\Users\xx50283\cygwin64\bin\cygturbojpeg.dll - os=4.0 img=0.0 sys=5.2 "cygturbojpeg.dll" v0.0 ts=2013-04-12 05:01 362k 2013/05/02 C:\Users\xx50283\cygwin64\bin\cygUil-4.dll - os=4.0 img=0.0 sys=5.2 "cygUil-4.dll" v0.0 ts=2013-05-02 09:21 15k 2013/03/11 C:\Users\xx50283\cygwin64\bin\cyguuid-1.dll - os=4.0 img=0.0 sys=5.2 "cyguuid-1.dll" v0.0 ts=2013-03-11 03:07 30k 2013/11/15 C:\Users\xx50283\cygwin64\bin\cygwrap-0.dll - os=4.0 img=0.0 sys=5.2 "cygwrap-0.dll" v0.0 ts=2013-11-15 19:58 1120k 2014/01/10 C:\Users\xx50283\cygwin64\bin\cygX11-6.dll - os=4.0 img=0.0 sys=5.2 "cygX11-6.dll" v0.0 ts=2014-01-10 01:15 8k 2014/01/10 C:\Users\xx50283\cygwin64\bin\cygX11-xcb-1.dll - os=4.0 img=0.0 sys=5.2 "cygX11-xcb-1.dll" v0.0 ts=2014-01-10 01:15 12k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXau-6.dll - os=4.0 img=0.0 sys=5.2 "cygXau-6.dll" v0.0 ts=2013-06-06 06:23 368k 2014/01/15 C:\Users\xx50283\cygwin64\bin\cygXaw-7.dll - os=4.0 img=0.0 sys=5.2 "cygXaw-7.dll" v0.0 ts=2014-01-15 02:53 296k 2013/04/08 C:\Users\xx50283\cygwin64\bin\cygXaw3d-8.dll - os=4.0 img=0.0 sys=5.2 "cygXaw3d-8.dll" v0.0 ts=2013-04-08 22:20 97k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-1.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-1.dll" v0.0 ts=2013-08-14 19:30 11k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-composite-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-composite-0.dll" v0.0 ts=2013-08-14 19:31 10k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-damage-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-damage-0.dll" v0.0 ts=2013-08-14 19:31 40k 2013/03/17 C:\Users\xx50283\cygwin64\bin\cygxcb-ewmh-2.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-ewmh-2.dll" v0.0 ts=2013-03-17 22:48 70k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-glx-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-glx-0.dll" v0.0 ts=2013-08-14 19:31 17k 2013/03/17 C:\Users\xx50283\cygwin64\bin\cygxcb-icccm-4.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-icccm-4.dll" v0.0 ts=2013-03-17 22:48 16k 2013/03/17 C:\Users\xx50283\cygwin64\bin\cygxcb-image-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-image-0.dll" v0.0 ts=2013-03-17 22:42 11k 2013/08/01 C:\Users\xx50283\cygwin64\bin\cygxcb-keysyms-1.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-keysyms-1.dll" v0.0 ts=2013-08-01 08:15 31k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-render-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-render-0.dll" v0.0 ts=2013-08-14 19:31 12k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-shape-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-shape-0.dll" v0.0 ts=2013-08-14 19:31 11k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-shm-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-shm-0.dll" v0.0 ts=2013-08-14 19:31 17k 2013/03/17 C:\Users\xx50283\cygwin64\bin\cygxcb-util-1.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-util-1.dll" v0.0 ts=2013-03-17 22:33 22k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-xfixes-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-xfixes-0.dll" v0.0 ts=2013-08-14 19:31 9k 2013/08/14 C:\Users\xx50283\cygwin64\bin\cygxcb-xtest-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcb-xtest-0.dll" v0.0 ts=2013-08-14 19:31 11k 2013/03/18 C:\Users\xx50283\cygwin64\bin\cygXcomposite-1.dll - os=4.0 img=0.0 sys=5.2 "cygXcomposite-1.dll" v0.0 ts=2013-03-18 23:05 34k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXcursor-1.dll - os=4.0 img=0.0 sys=5.2 "cygXcursor-1.dll" v0.0 ts=2013-06-06 21:15 36k 2013/08/04 C:\Users\xx50283\cygwin64\bin\cygxcwm-0.dll - os=4.0 img=0.0 sys=5.2 "cygxcwm-0.dll" v0.0 ts=2013-08-04 11:44 10k 2013/04/08 C:\Users\xx50283\cygwin64\bin\cygXdamage-1.dll - os=4.0 img=0.0 sys=5.2 "cygXdamage-1.dll" v0.0 ts=2013-04-08 22:24 21k 2013/03/13 C:\Users\xx50283\cygwin64\bin\cygXdmcp-6.dll - os=4.0 img=0.0 sys=5.2 "cygXdmcp-6.dll" v0.0 ts=2013-03-13 04:58 56k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXext-6.dll - os=4.0 img=0.0 sys=5.2 "cygXext-6.dll" v0.0 ts=2013-06-06 10:04 19k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXfixes-3.dll - os=4.0 img=0.0 sys=5.2 "cygXfixes-3.dll" v0.0 ts=2013-06-06 20:27 211k 2014/05/16 C:\Users\xx50283\cygwin64\bin\cygXfont-1.dll - os=4.0 img=0.0 sys=5.2 "cygXfont-1.dll" v0.0 ts=1970-01-01 00:00 73k 2013/03/14 C:\Users\xx50283\cygwin64\bin\cygXft-2.dll - os=4.0 img=0.0 sys=5.2 "cygXft-2.dll" v0.0 ts=2013-03-14 05:18 56k 2013/07/29 C:\Users\xx50283\cygwin64\bin\cygXi-6.dll - os=4.0 img=0.0 sys=5.2 "cygXi-6.dll" v0.0 ts=2013-07-29 07:30 10k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXinerama-1.dll - os=4.0 img=0.0 sys=5.2 "cygXinerama-1.dll" v0.0 ts=2013-06-06 21:33 125k 2013/04/08 C:\Users\xx50283\cygwin64\bin\cygxkbfile-1.dll - os=4.0 img=0.0 sys=5.2 "cygxkbfile-1.dll" v0.0 ts=2013-04-08 21:24 2275k 2013/05/02 C:\Users\xx50283\cygwin64\bin\cygXm-4.dll - os=4.0 img=0.0 sys=5.2 "cygXm-4.dll" v0.0 ts=2013-05-02 09:19 1212k 2013/04/21 C:\Users\xx50283\cygwin64\bin\cygxml2-2.dll - os=4.0 img=0.0 sys=5.2 "cygxml2-2.dll" v0.0 ts=2013-04-21 05:57 85k 2014/01/15 C:\Users\xx50283\cygwin64\bin\cygXmu-6.dll - os=4.0 img=0.0 sys=5.2 "cygXmu-6.dll" v0.0 ts=2014-01-15 02:27 14k 2014/01/15 C:\Users\xx50283\cygwin64\bin\cygXmuu-1.dll - os=4.0 img=0.0 sys=5.2 "cygXmuu-1.dll" v0.0 ts=2014-01-15 02:27 59k 2014/01/15 C:\Users\xx50283\cygwin64\bin\cygXpm-4.dll - os=4.0 img=0.0 sys=5.2 "cygXpm-4.dll" v0.0 ts=2014-01-15 00:59 34k 2014/01/14 C:\Users\xx50283\cygwin64\bin\cygXrandr-2.dll - os=4.0 img=0.0 sys=5.2 "cygXrandr-2.dll" v0.0 ts=2014-01-14 23:56 35k 2013/06/14 C:\Users\xx50283\cygwin64\bin\cygXrender-1.dll - os=4.0 img=0.0 sys=5.2 "cygXrender-1.dll" v0.0 ts=2013-06-14 09:29 207k 2013/09/02 C:\Users\xx50283\cygwin64\bin\cygxslt-1.dll - os=4.0 img=0.0 sys=5.2 "cygxslt-1.dll" v0.0 ts=2013-09-02 17:55 12k 2013/03/14 C:\Users\xx50283\cygwin64\bin\cygXss-1.dll - os=4.0 img=0.0 sys=5.2 "cygXss-1.dll" v0.0 ts=2013-03-14 04:07 320k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXt-6.dll - os=4.0 img=0.0 sys=5.2 "cygXt-6.dll" v0.0 ts=2013-06-06 20:43 21k 2013/06/06 C:\Users\xx50283\cygwin64\bin\cygXtst-6.dll - os=4.0 img=0.0 sys=5.2 "cygXtst-6.dll" v0.0 ts=2013-06-06 20:36 120k 2014/03/30 C:\Users\xx50283\cygwin64\bin\cygyaml-0-2.dll - os=4.0 img=0.0 sys=5.2 "cygyaml-0-2.dll" v0.0 ts=2014-03-30 06:16 79k 2013/05/09 C:\Users\xx50283\cygwin64\bin\cygz.dll - os=4.0 img=0.0 sys=5.2 "cygz.dll" v0.0 ts=2013-05-09 22:20 24k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygzzip-0-13.dll - os=4.0 img=0.0 sys=5.2 "cygzzip-0-13.dll" v0.0 ts=2013-05-30 03:34 12k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygzzipfseeko-0-13.dll - os=4.0 img=0.0 sys=5.2 "cygzzipfseeko-0-13.dll" v0.0 ts=2013-05-30 03:34 15k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygzzipmmapped-0-13.dll - os=4.0 img=0.0 sys=5.2 "cygzzipmmapped-0-13.dll" v0.0 ts=2013-05-30 03:34 9k 2013/05/30 C:\Users\xx50283\cygwin64\bin\cygzzipwrap-0-13.dll - os=4.0 img=0.0 sys=5.2 "cygzzipwrap-0-13.dll" v0.0 ts=2013-05-30 03:34 3074k 2014/05/23 C:\Users\xx50283\cygwin64\bin\cygwin1.dll - os=4.0 img=0.0 sys=5.2 "cygwin1.dll" v0.0 ts=1970-01-01 00:00 Cygwin DLL version info: DLL version: 1.7.30 DLL epoch: 19 DLL old termios: 5 DLL malloc env: 28 Cygwin conv: 181 API major: 0 API minor: 272 Shared data: 5 DLL identifier: cygwin1 Mount registry: 3 Cygwin registry name: Cygwin Program options name: Program Options Installations name: Installations Cygdrive default prefix: Build date: Shared id: cygwin1S5 No Cygwin services found. Cygwin Package Information Last downloaded files to: L:\Local\CygPkg Last downloaded files from: http://cygwin.mirror.constant.com/ Package Version Status _autorebase 000160-1 OK _update-info-dir 00284-1 OK a2ps 4.14-2 OK afio 2.5.1.20130626+gite266635-1 OK alternatives 1.3.30c-10 OK appres 1.0.4-1 OK arc 5.21p-1 OK arj 3.10.22-2 OK aspell 0.60.6.1-1 OK atool 0.39.0-1 OK autobuild 5.3-1 OK autoconf 13-1 OK autoconf2.1 2.13-12 OK autoconf2.5 2.69-2 OK automake 9-1 OK automake1.10 1.10.3-2 OK automake1.11 1.11.6-2 OK automake1.12 1.12.6-2 OK automake1.13 1.13.4-1 OK automake1.14 1.14-1 OK automake1.4 1.4p6-11 OK automake1.5 1.5-11 OK automake1.6 1.6.3-12 OK automake1.7 1.7.9-11 OK automake1.8 1.8.5-11 OK automake1.9 1.9.6-11 OK autossh 1.4c-1 OK base-cygwin 3.3-1 OK base-files 4.2-3 OK bash 4.1.11-2 OK bash-completion 1.3-1 OK bc 1.06.95-1 OK bcrypt 1.1-3 OK biber 1.5-1 OK binutils 2.24.51-3 OK bison 2.7.1-1 OK build-docbook-catalog 1.5-2 OK bvi 1.3.2-2 OK byacc 20130304-1 OK bzip2 1.0.6-2 OK ca-certificates 1.97-1 OK ccrypt 1.10-1 OK cfv 1.18.3-1 OK cmake 2.8.11.2-1 OK colorgcc 1.3.2-2 OK coreutils 8.15-3 OK corkscrew 2.0-1 OK cpio 2.11-2 OK cppi 1.18-2 OK csih 0.9.7-1 OK ctags 5.8-1 OK ctorrent 1.3.4-dnh3.2-2 OK curl 7.37.0-1 OK cygrunsrv 1.50-1 OK cygutils 1.4.14-1 OK cygutils-extra 1.4.14-1 OK cygutils-x11 1.4.14-1 OK cygwin 1.7.30-1 OK cygwin-doc 1.7-1 OK cygwin-x-doc 1.1.20140429-1 OK dash 0.5.7-4 OK dblatex 0.3.4-1 OK dbus 1.6.18-1 OK ddd 3.3.12-2 OK ddir 2010.0321+git1685e72-1 OK ddrescue 1.17-1 OK delta 2006.08.03-1 OK desktop-file-utils 0.21-1 OK dialog 1.2-20140112-1 OK diffstat 1.58-1 OK diffutils 3.3-1 OK docbook-xsl 1.77.1-1 OK dog 1.7-1 OK dos2unix 6.0.5-1 OK dri-drivers 8.0.5-5 OK ed 1.9-1 OK editres 1.0.6-1 OK editrights 1.02-1 OK emacs 24.3-7 OK enscript 1.6.4-1 OK expect 5.45-2 OK file 5.18-1 OK findutils 4.5.12-1 OK flex 2.5.37-3 OK flip 1.19-1 OK font-adobe-dpi100 1.0.2-1 OK font-adobe-dpi75 1.0.2-1 OK font-adobe-utopia-dpi100 1.0.3-1 OK font-adobe-utopia-dpi75 1.0.3-1 OK font-adobe-utopia-type1 1.0.3-1 OK font-alias 1.0.3-1 OK font-bh-dpi100 1.0.2-1 OK font-bh-dpi75 1.0.2-1 OK font-bh-lucidatypewriter-dpi100 1.0.2-1 OK font-bh-lucidatypewriter-dpi75 1.0.2-1 OK font-bh-ttf 1.0.3-1 OK font-bh-type1 1.0.2-1 OK font-bitstream-dpi100 1.0.2-1 OK font-bitstream-dpi75 1.0.2-1 OK font-bitstream-speedo 1.0.1-1 OK font-bitstream-type1 1.0.2-1 OK font-bitstream-vera-ttf 1.10-1 OK font-cantarell-otf 0.0.15-1 OK font-cursor-misc 1.0.2-1 OK font-daewoo-misc 1.0.2-1 OK font-dec-misc 1.0.2-1 OK font-encodings 1.0.4-1 OK font-ibm-type1 1.0.2-1 OK font-isas-misc 1.0.2-1 OK font-jis-misc 1.0.2-1 OK font-micro-misc 1.0.2-1 OK font-misc-misc 1.1.1-1 OK font-mutt-misc 1.0.2-1 OK font-schumacher-misc 1.1.1-1 OK font-sony-misc 1.0.2-1 OK font-sun-misc 1.0.2-1 OK font-tektronix-misc 2.6-3 OK font-util 1.3.0-1 OK font-xfree86-type1 1.0.3-1 OK fontconfig 2.11.1-1 OK fontsproto 2.1.2-1 OK fonttosfnt 1.0.4-1 OK fslsfonts 1.0.4-1 OK fstobdf 1.0.5-1 OK gamin 0.1.10-14 OK gawk 4.1.1-1 OK gcc-core 4.8.2-3 OK gcc-g++ 4.8.2-3 OK gdb 7.6.50-4 OK getent 2.18.90-2 OK ghostscript 9.06-2 OK ghostscript-fonts-other 6.0-1 OK ghostscript-fonts-std 8.11-1 OK gnome-icon-theme 3.10.0-1 OK gnupg 1.4.16-1 OK grep 2.16-1 OK groff 1.22.2-2 OK gsettings-desktop-schemas 3.10.1-1 OK gtk-update-icon-cache 3.10.7-2 OK gv 3.7.4-1 OK gvim 7.4.264-1 OK gzip 1.4-1 OK hexedit 1.2.13-1 OK hicolor-icon-theme 0.12-1 OK hostname 3.13-1 OK html2ps 1.0b7-2 OK httping 1.6-1 OK httptunnel 3.3-1 OK ImageMagick 6.7.6.3-4 OK inetutils 1.9.1-2 OK inetutils-server 1.9.1-2 OK ipc-utils 1.0-2 OK jpeg 1.2.1-2 OK less 458-1 OK lftp 4.4.16-1 OK libarchive13 3.1.2-2 OK libargp 20110921-2 OK libaspell15 0.60.6.1-1 OK libatk1.0_0 2.10.0-1 OK libatomic1 4.8.2-3 OK libattr1 2.4.46-1 OK libautotrace3 0.31.1-1 OK libblkid1 2.21.2-1 OK libbz2_1 1.0.6-2 OK libcairo2 1.12.16-1 OK libcatgets1 1.1-2 OK libcloog-isl4 0.18.0-2 OK libcom_err2 1.42.7-1 OK libcroco0.6_3 0.6.8-1 OK libcrypt0 1.1-1 OK libcurl4 7.37.0-1 OK libdatrie1 0.2.6-1 OK libdb5.3 5.3.21-1 OK libdbus1_3 1.6.18-1 OK libdialog11 1.2-20140112-1 OK libdmx1 1.1.3-1 OK libedit0 20130712-1 OK libEMF1 1.0.7-1 OK libexpat1 2.1.0-3 OK libfam0 0.1.10-14 OK libffi6 3.0.13-1 OK libfftw3_3 3.3.4-1 OK libfontconfig1 2.11.1-1 OK libfontenc1 1.1.2-1 OK libfpx1 1.3.1.2-1 OK libfreetype6 2.5.3-1 OK libFS6 1.0.6-1 OK libgc1 7.2d-2 OK libgcc1 4.8.2-3 OK libgcrypt11 1.5.0-1 OK libgd2 2.0.36RC1-1 OK libgdbm4 1.10-2 OK libgdk_pixbuf2.0_0 2.30.4-1 OK libgif4 4.1.6-12 OK libGL1 8.0.5-5 OK libglapi0 8.0.5-5 OK libglib2.0_0 2.38.2-2 OK libgmp10 6.0.0a-1 OK libgnutls28 3.2.0-4 OK libgomp1 4.8.2-3 OK libgpg-error0 1.10-1 OK libgraphite2_3 1.2.3-1 OK libgs9 9.06-2 OK libgssapi_krb5_2 1.12.1-2 OK libgtk2.0_0 2.24.23-1 OK libharfbuzz0 0.9.25-1 OK libhogweed2 2.7-1 OK libICE6 1.0.8-1 OK libiconv2 1.14-1 OK libicu51 51.2-1 OK libidn11 1.26-1 OK libintl8 0.18.1.1-3 OK libisl10 0.11.1-2 OK libjasper1 1.900.1-13 OK libjbig2 2.0-13 OK libjpeg8 1.2.1-2 OK libk5crypto3 1.12.1-2 OK libkpathsea6 20130529-1 OK libkrb5_3 1.12.1-2 OK libkrb5support0 1.12.1-2 OK liblcms2_2 2.5-1 OK libltdl7 2.4.2-3 OK liblzma5 5.0.4-1 OK liblzo2_2 2.06-1 OK libMagickCore5 6.7.6.3-4 OK libmcpp0 2.7.2-2 OK libmetalink3 0.1.2-1 OK libming1 0.4.5-1 OK libmpc3 1.0.2-1 OK libmpfr4 3.1.2-1 OK libncursesw10 5.9-4 OK libnetpbm10 10.61.02-1 OK libnettle4 2.7-1 OK libnspr4 4.10.3-1 OK libnss3 3.15.3.1-1 OK libopenjpeg1 1.5.1-3 OK libopenldap2_4_2 2.4.35-1 OK libopenssl100 1.0.1g-1 OK libp11-kit0 0.20.2-1 OK libpango1.0_0 1.36.3-1 OK libpaper-common 1.1.24-2 OK libpaper1 1.1.24-2 OK libpcre1 8.34-1 OK libpixman1_0 0.32.4-1 OK libpng15 1.5.14-1 OK libpoppler28 0.20.5-3 OK Empty package libpopt0 libpopt0 1.16-1 OK libpstoedit0 3.61-1 OK libptexenc1 20130529-1 OK libquadmath0 4.8.2-3 OK libreadline7 6.2-1 OK librsvg2_2 2.40.1-1 OK libsasl2_3 2.1.26-7 OK libSM6 1.2.2-1 OK libsqlite3_0 3.8.4.3-1 OK libssh2_1 1.4.2-1 OK libssp0 4.8.2-3 OK libstdc++6 4.8.2-3 OK libtasn1_6 3.3-1 OK libthai0 0.1.19-1 OK libtiff5 3.9.7-4 OK libturbojpeg 1.2.1-2 OK libuuid1 2.21.2-1 OK libwrap0 7.6-22 OK libX11-xcb1 1.6.2-1 OK libX11_6 1.6.2-1 OK libXau6 1.0.8-1 OK libXaw3d8 1.6.2-1 OK libXaw7 1.0.12-1 OK libxcb-composite0 1.9.1-2 OK libxcb-damage0 1.9.1-2 OK libxcb-ewmh2 0.3.9-1 OK libxcb-glx0 1.9.1-2 OK libxcb-icccm4 0.3.9-1 OK libxcb-image0 0.3.9-1 OK libxcb-keysyms1 0.3.9-1 OK libxcb-render0 1.9.1-2 OK libxcb-shape0 1.9.1-2 OK libxcb-shm0 1.9.1-2 OK libxcb-util1 0.3.9-1 OK libxcb-xfixes0 1.9.1-2 OK libxcb-xtest0 1.9.1-2 OK libxcb1 1.9.1-2 OK libXcomposite1 0.4.3-1 OK libXcursor1 1.1.14-1 OK libxcwm0 20130802-1 OK libXdamage1 1.1.4-1 OK libXdmcp6 1.1.1-1 OK libXext6 1.3.2-1 OK libXfixes3 5.0.1-1 OK libXfont1 1.4.8-1 OK libXft2 2.3.1-1 OK libXi6 1.7.2-1 OK libXinerama1 1.1.3-1 OK libxkbfile1 1.0.8-1 OK libXm4 2.3.4-1 OK libxml2 2.9.1-1 OK libXmu6 1.1.2-1 OK libXmuu1 1.1.2-1 OK libXpm4 3.5.11-1 OK libXrandr2 1.4.2-1 OK libXrender1 0.9.8-1 OK libxslt 1.1.28-1 OK libXss1 1.2.2-1 OK libXt6 1.1.4-1 OK libXtst6 1.2.2-1 OK libyaml0_2 0.1.6-1 OK libzzip0.13 0.13.62-1 OK links 2.7-1 OK listres 1.0.3-1 OK login 1.10-10 OK luit 20130217-1 OK lynx 2.8.7-2 OK lzip 1.14-1 OK lziprecover 1.14-1 OK lzop 1.03-1 OK m4 1.4.17-1 OK make 4.0-2 OK makeself 2.1.5+20120813+gitdcbe778-1 OK man 1.6g-2 OK mcpp 2.7.2-2 OK mintty 1.2-beta1-1 OK mkfontdir 1.0.7-1 OK mkfontscale 1.1.1-1 OK mksh 49-1 OK motif 2.3.4-1 OK multitail 5.2.12-1 OK ncurses 5.9-4 OK netpbm 10.61.02-1 OK nosleep 0.1.5-1 OK oclock 1.0.3-1 OK openssh 6.6.1p1-3 OK openssl 1.0.1g-1 OK p11-kit 0.20.2-1 OK p11-kit-trust 0.20.2-1 OK patch 2.7.1-1 OK patchutils 0.3.3-1 OK pax 20120606-1 OK perl 5.14.4-1 OK perl-Business-ISBN 2.06-1 OK perl-Business-ISBN-Data 20120719.001-1 OK perl-Business-ISMN 1.11-1 OK perl-Business-ISSN 0.91-1 OK perl-Data-Compare 1.22-1 OK perl-Data-Diver 1.0101-1 OK perl-Data-Dump 1.22-1 OK perl-Date-Simple 3.03-1 OK perl-DBI 1.623-2 OK perl-Encode-Locale 1.03-1 OK perl-File-Find-Rule 0.33-1 OK perl-File-Listing 6.04-1 OK perl-File-Slurp 9999.19-1 OK perl-File-Slurp-Unicode 0.7.1-1 OK perl-HTML-Parser 3.70-1 OK perl-HTML-Tagset 3.20-1 OK perl-HTTP-Cookies 6.01-1 OK perl-HTTP-Date 6.02-1 OK perl-HTTP-Message 6.06-1 OK perl-HTTP-Negotiate 6.01-1 OK perl-Image-Magick 6.7.6.3-4 OK perl-IO-Socket-SSL 1.88-1 OK perl-IPC-Run3 0.045-1 OK perl-List-AllUtils 0.03-1 OK perl-List-MoreUtils 0.33-1 OK perl-Log-Log4perl 1.41-1 OK perl-LWP 6.05-1 OK perl-LWP-MediaTypes 6.02-1 OK perl-LWP-Protocol-https 6.04-1 OK perl-Mozilla-CA 20130114-2 OK perl-Net-HTTP 6.06-1 OK perl-Net-SSLeay 1.54-1 OK perl-Number-Compare 0.03-1 OK perl-Params-Util 1.07-1 OK perl-Readonly 1.03-1 OK perl-Regexp-Common 2013031301-1 OK perl-Text-BibTeX 0.66-1 OK perl-Text-Glob 0.09-1 OK perl-Tie-Cycle 1.17-1 OK perl-Tk 804.030-3 OK perl-Unicode-Collate 0.97-1 OK perl-URI 1.60-1 OK perl-WWW-RobotRules 6.02-1 OK perl-XML-LibXML 2.0018-1 OK perl-XML-LibXML-Simple 0.93-1 OK perl-XML-LibXSLT 1.80-1 OK perl-XML-NamespaceSupport 1.11-1 OK perl-XML-Parser 2.41-1 OK perl-XML-SAX 0.99-2 OK perl-XML-SAX-Base 1.08-1 OK pinfo 0.6.10-1 OK ping 1.0.2-1 OK pkg-config 0.27.1-1 OK poppler-data 0.4.6-1 OK popt 1.16-1 OK procps 3.2.8-2 OK psmisc 22.20-1 OK python 2.7.5-3 OK python-tkinter 2.7.5-3 OK rebase 4.4.1-1 OK rgb 1.0.5-1 OK rlwrap 0.37-1 OK rpm 4.11.1-1 OK rsh 0.17-2 OK rstart 1.0.5-1 OK rsync 3.0.9-1 OK ruby 1.9.3-p545-1 OK ruby-json 1.8.0-1 OK ruby-rake 10.0.4-1 OK ruby-rdoc 3.12.2-1 OK run 1.3.0-1 OK sed 4.2.2-3 OK sessreg 1.0.8-1 OK setxkbmap 1.3.0-1 OK shared-mime-info 1.3-1 OK sharutils 4.14-1 OK showfont 1.0.4-1 OK stow 2.2.0-1 OK stunnel 5.01-1 OK t1lib5 5.1.2-1 OK tar 1.27.1-1 OK tcl 8.5.11-1 OK tcl-tix 8.4.3-2 OK tcl-tk 8.5.11-1 OK tcp_wrappers 7.6-22 OK tcsh 6.18.01-3 OK terminfo 5.9-4 OK texinfo 5.2-1 OK texlive 20130529-1 OK texlive-collection-basic 20130529-1 OK texlive-collection-bibtexextra 20130529-2 OK texlive-collection-binextra 20130529-1 OK texlive-collection-fontsrecommended 20130529-1 OK texlive-collection-fontutils 20130529-1 OK texlive-collection-latex 20130529-1 OK texlive-collection-latexextra 20130529-1 OK texlive-collection-latexrecommended 20130529-1 OK texlive-collection-mathextra 20130529-1 OK texlive-collection-pictures 20130529-1 OK tftp 5.2-1 OK transfig 3.2.5d-1 OK tzcode 2013c-1 OK unzip 6.0-1 OK util-linux 2.21.2-1 OK viewres 1.0.4-1 OK vim 7.4.264-1 OK vim-common 7.4.264-1 OK vim-minimal 7.4.264-1 OK w32api-headers 3.1.0-2 OK w32api-runtime 3.1.0-1 OK w3m 0.5.3-1 OK wdiff 1.1.2-1 OK wget 1.15-1 OK which 2.20-2 OK whois 5.0.26-1 OK xauth 1.0.8-1 OK xclipboard 1.1.3-1 OK xclock 1.0.7-1 OK xconsole 1.0.6-1 OK xcursor-themes 1.0.4-1 OK xditview 1.0.3-1 OK xdpyinfo 1.3.1-1 OK xedit 1.2.1-1 OK xev 1.2.1-1 OK xeyes 1.1.1-1 OK xf86-video-dummy 0.3.7-1 OK xf86-video-nested 0.1.0-4 OK xfd 1.1.2-1 OK xfontsel 1.0.5-1 OK xfs 1.1.3-1 OK xfsinfo 1.0.4-1 OK xhost 1.0.6-1 OK xhtml2ps 1.0b7-2 OK xinit 1.3.2-1 OK xkbcomp 1.2.4-1 OK xkbevd 1.1.3-1 OK xkbutils 1.0.4-1 OK xkeyboard-config 2.11-1 OK xlsatoms 1.1.1-1 OK xlsclients 1.1.3-1 OK xlsfonts 1.0.4-1 OK xlsx2csv 0.11+20120814+gitf54ab78-1 OK xmlto 0.0.26-1 OK xmodmap 1.0.8-1 OK xmon 1.5.6-3 OK xorg-docs 1.7-1 OK xorg-scripts 1.0.1-1 OK xorg-server 1.15.1-2 OK xorg-server-common 1.15.1-2 OK xorg-server-extra 1.15.1-2 OK xorg-util-macros 1.18.0-1 OK xprop 1.2.2-1 OK xproto 7.0.25-1 OK xrdb 1.1.0-1 OK xrefresh 1.0.5-1 OK xscope 1.4-1 OK xset 1.2.3-1 OK xsetroot 1.1.0-1 OK xsm 1.0.3-1 OK xstdcmap 1.0.3-1 OK xterm 302-1 OK XtoW 20130802-2 OK xwd 1.0.6-1 OK xwinclip 1.15.1-2 OK xwininfo 1.1.3-1 OK xwud 1.0.4-1 OK xxd 7.4.264-1 OK xz 5.0.4-1 OK zip 3.0-1 OK zlib0 1.2.8-1 OK zsh 5.0.2-1 OK zsync 0.6.2-1 OK zziplib 0.13.62-1 OK Use -h to see help about each section -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: text/x-log Size: 5376 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 Thu Jul 31 11:45:00 2014 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 31 Jul 2014 11:45:00 -0000 Subject: Resize a Cygwin64 xterm on Windows 7 64-bit jumps in increments of two or three columns In-Reply-To: <1406743450.20244.29.camel@lh8.linush.lan> References: <1406743450.20244.29.camel@lh8.linush.lan> Message-ID: <53DA2C58.6060108@dronecode.org.uk> On 30/07/2014 19:04, C Linus Hicks wrote: > I have run Cygwin on multiple versions of Windows including recently on > Windows XP and don't think I ever had this problem. Resizing or > specifying a geometry always resulted in the exact number of columns > requested, with increments of 1 column being available when dragging the > borders of a window to resize. > > Now, after upgrading to Windows 7 64-bit, I cannot get the window to > have 80 columns on resize. It jumps in increments of two or three, > depending on the number of columns prior to resizing. For example: Thanks for reporting this problem. I think this may be resolved by a fix "Correctly interpret WM_HINTS, WM_NORMAL_HINTS properties on x86_64" I made in 1.15.1-3 [1]. Can you please test with the latest version? > Should I be able to resize by increments of one column? Yes [1] https://cygwin.com/ml/cygwin-xfree/2014-06/msg00017.html -- Jon TURNEY Volunteer Cygwin/X X Server maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From linush@verizon.net Thu Jul 31 14:34:00 2014 From: linush@verizon.net (C Linus Hicks) Date: Thu, 31 Jul 2014 14:34:00 -0000 Subject: Resize a Cygwin64 xterm on Windows 7 64-bit jumps in increments of two or three columns In-Reply-To: <53DA2C58.6060108@dronecode.org.uk> References: <1406743450.20244.29.camel@lh8.linush.lan> <53DA2C58.6060108@dronecode.org.uk> Message-ID: <1406817238.20244.32.camel@lh8.linush.lan> On Thu, 2014-07-31 at 12:45 +0100, Jon TURNEY wrote: > On 30/07/2014 19:04, C Linus Hicks wrote: > > I have run Cygwin on multiple versions of Windows including recently on > > Windows XP and don't think I ever had this problem. Resizing or > > specifying a geometry always resulted in the exact number of columns > > requested, with increments of 1 column being available when dragging the > > borders of a window to resize. > > > > Now, after upgrading to Windows 7 64-bit, I cannot get the window to > > have 80 columns on resize. It jumps in increments of two or three, > > depending on the number of columns prior to resizing. For example: > > Thanks for reporting this problem. > > I think this may be resolved by a fix "Correctly interpret WM_HINTS, > WM_NORMAL_HINTS properties on x86_64" I made in 1.15.1-3 [1]. Can you > please test with the latest version? > > > Should I be able to resize by increments of one column? > > Yes Yes, I will try that within the next day or so. 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/