From cabrera@wrc.xerox.com Fri Nov 1 00:53:00 2013 From: cabrera@wrc.xerox.com (jose isaias cabrera) Date: Fri, 01 Nov 2013 00:53:00 -0000 Subject: XWin hangs connecting to SunOS 5.11 References: <548BB839F9F2427A8F8C756C5E9A7C2E@stso.mc.xerox.com> Message-ID: <94132CF0E36B4D4EA19EAB21D074FFA3@stso.mc.xerox.com> "jose isaias cabrera" wrote... > > Attached is the log > > From: "jose isaias cabrera" wrote... >> >> Greetings! >> >> I have a SunOS 5.11, >> >> jcabrera@whale:~$ uname -a >> SunOS whale 5.11 11.1 i86pc i386 i86pc >> >> which has X installed. One of the folks that uses this machine connects >> = >> ok with XMing and putty, but I am trying to use it with XWin and the = >> display stays black for ever. I am using these two commands, >> >> xwin :0 -clipboard -query 13.121.188.152 -fp tcp/13.121.188.152:7100 >> >> and this one, >> >> xwin :0 -clipboard -query 13.121.188.152 >> >> they both connect, but no actual display from the SunOS display in the = >> PC, but just a dark screen. I have enabled xhost >> >> xhost + >> >> any other thoughts? Any help would be greatly appreciated. Thanks. >> >> jos?? >> >> -- >> Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple >> Problem reports: http://cygwin.com/problems.html >> Documentation: http://x.cygwin.com/docs/ >> FAQ: http://x.cygwin.com/docs/faq/ >> So, has anyone being able to connect to a SunOS 5.11 from Windows XP using cygwin XWin? If no one has, then, I will stop and see other options, but I would like to be able to do this with cygwin and not any other tool. I know cygwin pretty well and don't want to move. Thanks for the support. Oh, I tried these other options, Commented xdm DisplayManager.requestPort: 0 (!DisplayManager.requestPort: 0) Also added the ip and hostname of the window client to /etc/hosts and still no success. And also tried this command, xwin :0 -clipboard -query 13.121.188.152 -from 13.142.1.82 -fp tcp/13.121.188.152:7100 See attached log. Thanks for your support. jos?? -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 3460 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 WendelDRenner@comcast.net Fri Nov 1 13:33:00 2013 From: WendelDRenner@comcast.net (Wendel Dean Renner) Date: Fri, 01 Nov 2013 13:33:00 -0000 Subject: X11 open gl c++ code does not compile with new cygwin download Message-ID: <5273AD99.8050800@comcast.net> installing libGLU-devel solved that problem and I added it to my notes for next time. Thank you. The program IS working but I had to do one additional thing that I do not understand why. I got a popup message saying that the program could not run because it could not find cygXm-2.dll In the bin folder of the Xp system computer (where I had updated my spare hard drive with cygwin about a month ago) I had two files: cygwin/bin/cygXm-2.dll cygwin/bin/cygXm-4.dll but in the new install on the Windows 7 computer I had only cygwin/bin/cygXm-4.dll So I simply copied cygXm-2.dll from the other computer to the new and my compiled and linked program runs OK. -- 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 Fri Nov 1 13:49:00 2013 From: marco.atzeri@gmail.com (marco atzeri) Date: Fri, 01 Nov 2013 13:49:00 -0000 Subject: X11 open gl c++ code does not compile with new cygwin download In-Reply-To: <5273AD99.8050800@comcast.net> References: <5273AD99.8050800@comcast.net> Message-ID: <5273B15C.8060107@gmail.com> Il 11/1/2013 2:33 PM, Wendel Dean Renner ha scritto: > installing libGLU-devel solved that problem and I added it > to my notes for next time. Thank you. > > The program IS working but I had to do one additional thing > that I do not understand why. > > I got a popup message saying that the program could > not run because it could not find cygXm-2.dll > In the bin folder of the Xp system computer (where > I had updated my spare hard drive with cygwin about a month > ago) I had two files: > cygwin/bin/cygXm-2.dll > cygwin/bin/cygXm-4.dll > > but in the new install on the Windows 7 computer I had only > cygwin/bin/cygXm-4.dll > > So I simply copied cygXm-2.dll from the other computer > to the new and my compiled and linked program runs OK. > cygwin/bin/cygXm-2.dll -> lesstif-0.95 cygwin/bin/cygXm-4.dll -> motif-2.3.4-1 -- 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 mdl@alum.mit.edu Sat Nov 2 17:48:00 2013 From: mdl@alum.mit.edu (Mark Lillibridge) Date: Sat, 02 Nov 2013 17:48:00 -0000 Subject: Problem trying to build Cygwin X server from source In-Reply-To: <526E7923.5010000@dronecode.org.uk> (message from Jon TURNEY on Mon, 28 Oct 2013 14:48:03 +0000) Message-ID: <8738ney9vx.fsf@foil.strangled.net> Jon TURNEY writes: > This looks like [1], a mis-match in TLS-ness between XWin and libglapi. > > If you are building using the .cygport file it should have ./configure'ed with > --disable-glx-tls? > > [1] http://www.cygwin.com/ml/cygwin-xfree/2011-10/msg00065.html Ah! I had indeed screwed up the configuration -- I was manually building in src using autogen.sh rather than in build and thus had lost the configuration set up by cygport. When I blew everything away and did the cygport stuff again, cd /usr/src/ cygport xorg-server.cygport prep cd /usr/src/ cygport xorg-server.cygport compile things built fine. Thank you for all your help! (To be clear, this didn't work before the 2 patches you had me make.) - 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 WendelDRenner@comcast.net Mon Nov 4 17:35:00 2013 From: WendelDRenner@comcast.net (Wendel Dean Renner) Date: Mon, 04 Nov 2013 17:35:00 -0000 Subject: expose event not received by Open GL window in X11 application upon moving app window Message-ID: <5277DADF.5060709@comcast.net> I have compiled and linked an existing X/Motif/Open GL program under cygwin. So far the only problem I have seen is what happens when I move the main application window. I have an array of drawing widgets in the main application window. Where the drawing widget is strictly an X window, if I move the main application window, the contents continue to be visible without an expose event occuring (and so the draw loop is not called). But in the Open GL drawing area window (using glx) the contents disappears and one sees only the back ground color. There is no expose event generated. If I click the mouse on the window, an expose even is generated and it redraws. The same happens if I change the size of the window, but covering and uncovering the window with say a cygwin term window does not generate an expose event. Covering with a child of the application and uncovering does generate an expose event. The x window is created with the line %RUN% XWin -multiwindow -clipboard -silent-dup-error -wgl where I added the -wgl flag. Doing export LIBGL_ALWAYS_INDIRECT=1 before I run the application does not make any difference. I used a startxwin.bat script and modified it to run my application instead of a xterm. That allowed for an icon on the desktop to run the bat program to run the application. I also noted, like with Exceed, I cannot get a visual in the overlay planes, which I can do under Linux. I do not have glxinfo and can't figure out what package has that. cygwin was downloaded an installed on a Windows 7 computer just last week. The graphics card is an nvidia quadro fx 3800, driver version 320.92 On Performace Options: Show window contents while dragging is unchecked. Background: The program runs under Linux (was developedorginally under SGI IRIX) and I have been using Exceed,Exceed 3D, and Exceed XDK from OpenText (formally Hummingbird) to run on a Windows platform. I have only recented noted that OSF/Motif is now available with cygwin as opposed to the prior LessTiff implementation of motif, as of Oct 2012 evidently. My X/Motif program would not run correctly with LessTiff because of behavior differences where I was doing a lot of drawing widgets attached to the same place and managing and unmanaging them so that only one would appear at a time, allowing the user to change the layout of the draw area widgets. Thanks to any advice available. -- 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 Nov 4 18:30:00 2013 From: marco.atzeri@gmail.com (marco atzeri) Date: Mon, 04 Nov 2013 18:30:00 -0000 Subject: expose event not received by Open GL window in X11 application upon moving app window In-Reply-To: <5277DADF.5060709@comcast.net> References: <5277DADF.5060709@comcast.net> Message-ID: <5277E7AF.4020002@gmail.com> Il 11/4/2013 6:35 PM, Wendel Dean Renner ha scritto: > I have compiled and linked an existing X/Motif/Open GL program > under cygwin. So far the only problem I have seen is what happens > when I move the main application window. > > I have an array of drawing widgets in the main application window. > Where the drawing widget is strictly an X window, if I move the main > application window, the contents > continue to be visible without an expose event occuring (and so the > draw loop is not called). > > But in the Open GL drawing area window (using glx) the contents disappears > and one sees only the back ground color. There is no expose event > generated. If I click the mouse on the window, an expose even is generated > and it redraws. The same happens if I change the size of the window, but > covering and uncovering the window with say a cygwin term window > does not generate an expose event. Covering with a child of the > application > and uncovering does generate an expose event. > > The x window is created with the line > %RUN% XWin -multiwindow -clipboard -silent-dup-error -wgl > > where I added the -wgl flag. > Doing export LIBGL_ALWAYS_INDIRECT=1 before I run the application > does not make any difference. > I used a startxwin.bat script and modified it to run my application instead > of a xterm. That allowed for an icon on the desktop to run the bat program > to run the application. > > I also noted, like with Exceed, I cannot get a visual in the overlay > planes, > which I can do under Linux. I do not have glxinfo and can't figure out > what package has that. > > cygwin was downloaded an installed on a Windows 7 computer just > last week. The graphics card is an nvidia quadro fx 3800, driver > version 320.92 > On Performace Options: > Show window contents while dragging is unchecked. > > Background: > The program runs under Linux (was developedorginally under SGI IRIX) and > I have been using Exceed,Exceed 3D, and Exceed XDK from OpenText > (formally Hummingbird) to run on a Windows platform. > > I have only recented noted that OSF/Motif is now available with cygwin > as opposed to the prior LessTiff implementation of motif, as of Oct 2012 > evidently. > My X/Motif program would not run correctly with LessTiff because > of behavior differences where I was doing a lot of drawing widgets > attached > to the same place and managing and unmanaging them so that only one would > appear at a time, allowing the user to change the layout of the draw area > widgets. > > Thanks to any advice available. > it looks like this problem http://www.cygwin.com/ml/cygwin-xfree/2013-06/msg00050.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From powellelis1222@hotmail.com Wed Nov 6 13:15:00 2013 From: powellelis1222@hotmail.com (powell Ellis) Date: Wed, 06 Nov 2013 13:15:00 -0000 Subject: Good News Message-ID: ATTN Please we could only get your email from the records here and without further payment directives. You can call immediately on +2348178518132,for more clarifications and instructions on how you wish to be paid. Thanks. Best Regards Powell Ellis email;powellelis1222@hotmail.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From myllynen@redhat.com Mon Nov 11 13:12:00 2013 From: myllynen@redhat.com (Marko Myllynen) Date: Mon, 11 Nov 2013 13:12:00 -0000 Subject: x-app-open - open remote X app windows on Windows desktop with Cygwin Message-ID: <5280D7CD.4040102@redhat.com> Hi, FWIW, I've written the attached script to facilitate launching remote X applications on Windows desktop with Cygwin. I presume for most people on this list it does not provide anything new but its target audience is rather people who are not very familiar with Cygwin, Linux, X, or SSH and prefer using Windows, allowing them easily to run remote X applications just by clicking a desktop icon. In short, the script will start XWin and setup SSH keys with minimal user intervention allowing easy but secure use of remote X applications on Windows desktop. The complete installation instructions are as follows, this is a copy/paste from the script, after that one just needs to click on the newly created icon: # Installation instructions for Cygwin and this script: # # 1) Install from http://www.cygwin.com/ using 32 or 64-bit setup*.exe # 2) During installation, select at least these additional packages: # # keychain openssh psmisc xorg-server xterm # # 3) Place this script in C:\cygwin\bin # 4) Create a shortcut on Windows desktop with # a) "Start in" being the bin path 3) above # b) "Target" being # # C:\cygwin\bin\run.exe -p /bin /bin/sh -c "/bin/x-app-open host application" # # In case a user name needs to be specified use the form user@host. # I'm not a Cygwin packager and not planning to become one but if someone sees this valuable, creating an x-app-open Cygwin package with proper dependencies would allow making the second step above a bit more straightforward. But even by itself the script, now available in the list archives, has been helpful. Wrt to technical details, there might be a corner case or two when XWin is left behind but otherwise I'm not aware of any major issues with it. Thanks, -- Marko Myllynen -------------- next part -------------- #!/bin/sh # # x-app-open - open remote X app windows on Windows desktop with Cygwin # # Copyright (C) 2013 Marko Myllynen # This program is free software; it is released under the GPLv3. # # Installation instructions for Cygwin and this script: # # 1) Install from http://www.cygwin.com/ using 32 or 64-bit setup*.exe # 2) During installation, select at least these additional packages: # # keychain openssh psmisc xorg-server xterm # # 3) Place this script in C:\cygwin\bin # 4) Create a shortcut on Windows desktop with # a) "Start in" being the bin path 3) above # b) "Target" being # # C:\cygwin\bin\run.exe -p /bin /bin/sh -c "/bin/x-app-open host application" # # In case a user name needs to be specified use the form user@host. # SSH_OPTS="-oBatchMode=yes -oConnectTimeout=20 -oStrictHostKeyChecking=no" # Launch XWin if not there already XPID=$(ps -ef | grep /bin/XWin | grep -v grep | awk '{print $2}') if [ "$XPID" = "" ]; then run cygstart --hide /bin/XWin :0 -clipboard -multiwindow XPID=$(ps -ef | grep /bin/XWin | grep -v grep | awk '{print $2}') fi export DISPLAY=$HOSTNAME:0 # Setup SSH keys if needed while [ ! -f "$HOME/.ssh/id_rsa" ]; do xterm +tb -T "Setting up SSH keys..." -e \ "echo Generating SSH keys, enter a new passphrase, at least 5 characters.;\ ssh-keygen -f \"$HOME/.ssh/id_rsa\" > /dev/null; \ echo Copying SSH public key to the remote host...; \ ssh-copy-id -i \"$HOME/.ssh/id_rsa.pub\" \ -oStrictHostKeyChecking=no $1 2>&1 | grep -v INFO" done # Add SSH keys to ssh-agent with keychain if needed [[ -f "$HOME/.keychain/$HOSTNAME-sh" ]] && \ . "$HOME/.keychain/$HOSTNAME-sh" > /dev/null 2>&1 ssh-add -l 2>/dev/null | grep -q "$HOME/.ssh/id_rsa" if [ $? -ne 0 ]; then cygstart --hide xterm +tb -T '"Loading SSH keys..."' -e "keychain -q \"$HOME/.ssh/id_rsa\"" sleep 3 while true; do sleep 1 pstree -aA | grep -q -- "[-]xterm +tb -T Loading SSH keys..." || break done [[ -f "$HOME/.keychain/$HOSTNAME-sh" ]] && \ . "$HOME/.keychain/$HOSTNAME-sh" > /dev/null 2>&1 fi # Do the actual work ssh $SSH_OPTS -X $1 "${@:2}" > /dev/null 2>&1 if [ $? -eq 255 ]; then # Connection failed, perhaps a new host, try to copy the key xterm +tb -T "Setting up SSH keys..." -e \ "echo Copying SSH public key to the remote host...; \ ssh-copy-id -i \"$HOME/.ssh/id_rsa.pub\" \ -oStrictHostKeyChecking=no $1 2>&1 | grep -v INFO" ssh $SSH_OPTS -X $1 "${@:2}" > /dev/null 2>&1 fi # Terminate XWin if no active connections left sleep 1 sessions=$(pstree -aA | grep "[s]h $0" | wc -l) if [ $sessions -le 2 ]; then /bin/kill $XPID > /dev/null 2>&1 ; /bin/kill -f $XPID > /dev/null 2>&1 fi -------------- 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 Tue Nov 12 15:09:00 2013 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Tue, 12 Nov 2013 15:09:00 -0000 Subject: [ANNOUNCEMENT] Updated: xorg-server-1.14.4-1 Message-ID: The following packages have been updated in the Cygwin distribution: *** xorg-server-*1.14.4-1 These packages contain XWin and the other X.Org X11 servers. In addition to upstream fixes and improvements [1], this contains the following cygwin-specific changes since 1.14.3-2: * Fix a crash on shutdown which could occur when using '-depth 8' x86: 93badb3cc24ccad50595a3ab62c306d4 *xorg-server-1.14.4-1-src.tar.xz a5ce603ae02e4de4e9ea8475b04cca5b *xorg-server-1.14.4-1.tar.xz e05eb13557a396b56e4ec056473247e0 *xorg-server-common-1.14.4-1.tar.xz 0088dc534429c52b073a9aafe3182924 *xorg-server-debuginfo-1.14.4-1.tar.xz d1842a3efa3f42f2ee9bb9d7b45d1ef6 *xorg-server-devel-1.14.4-1.tar.xz 35cedcf55a44bb4b99dc35cf8e65049c *xorg-server-dmx-1.14.4-1.tar.xz b12cff63276e561d108843b6d4d62af4 *xorg-server-extra-1.14.4-1.tar.xz a45e9b09c33c3802f26d59d415b2fbe3 *xwinclip-1.14.4-1.tar.xz x86_64: d89feb079071d10ba4bcb9a4319104f4 *xorg-server-1.14.4-1-src.tar.xz 11f5040fcc7e82985ec5e88c7be73452 *xorg-server-1.14.4-1.tar.xz 146e394f7281c4fe1bca82dfbd658e25 *xorg-server-common-1.14.4-1.tar.xz 6476ca490ec21f036f5c86bfdd155d49 *xorg-server-debuginfo-1.14.4-1.tar.xz c67dcd4cdf08991cc6bfc8338b396517 *xorg-server-devel-1.14.4-1.tar.xz 428548d4159fcf814b0ae46ec705bd7e *xorg-server-dmx-1.14.4-1.tar.xz 058e2592b2b27ab5ada89b0272b7ed55 *xorg-server-extra-1.14.4-1.tar.xz 0a7d294a6095b2ed014eeab48136156b *xwinclip-1.14.4-1.tar.xz [1] http://lists.x.org/archives/xorg-announce/2013-November/002352.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From k.avgeropoulos@gmail.com Wed Nov 20 16:54:00 2013 From: k.avgeropoulos@gmail.com (Kostas Avgeropoulos) Date: Wed, 20 Nov 2013 16:54:00 -0000 Subject: DPI setting not respected in version 1.14.4 Message-ID: My Windows shortcut is 'C:\cygwin\bin\run.exe /usr/bin/bash.exe -l -c "/usr/bin/startxwin.exe -- -clipboard -emulate3buttons -dpi 80"' Yet Cygwin/X does not seem to respect the DPI setting. Fonts are too big. This worked with previous versions of Cygwin/X. Any ideas? -- 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 Nov 21 14:28:00 2013 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 21 Nov 2013 14:28:00 -0000 Subject: DPI setting not respected in version 1.14.4 In-Reply-To: References: Message-ID: <528E187F.6040801@dronecode.org.uk> On 20/11/2013 16:53, Kostas Avgeropoulos wrote: > My Windows shortcut is > > 'C:\cygwin\bin\run.exe /usr/bin/bash.exe -l -c "/usr/bin/startxwin.exe > -- -clipboard -emulate3buttons -dpi 80"' > > Yet Cygwin/X does not seem to respect the DPI setting. Fonts are too big. > > This worked with previous versions of Cygwin/X. > > Any ideas? I can't reproduce this: $ startxwin -- -clipboard -emulate3buttons -dpi 80 $ xdpyinfo -display :1 | grep resolution resolution: 80x80 dots per inch Can I please see your /var/log/xwin/XWin.0.log? -- 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 serialo@serialo.tv Thu Nov 21 15:02:00 2013 From: serialo@serialo.tv (Serialo.tv) Date: Thu, 21 Nov 2013 15:02:00 -0000 Subject: =?UTF-8?Q?Darmowe_seriale_na_zawo=C5=82anie_!?= Message-ID: <9b1983e2a1959af9b465a11e2d29c29b@localhost.localdomain> Witam, Czy wiesz ??e, mo??esz ogl? da?? seriale online i to za darmo. Kiedy chcesz i jaki chcesz. Serdecznie zapraszamy, www.serialo.tv Anulowanie wiadomo??ci: http://serialo.tv/wypisz?email -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jon.turney@dronecode.org.uk Thu Nov 21 17:45:00 2013 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 21 Nov 2013 17:45:00 -0000 Subject: Copy/paste broken from X to Windows In-Reply-To: <5264B159.9010503@codespunk.com> References: <5264B159.9010503@codespunk.com> Message-ID: <528E46C5.9050101@dronecode.org.uk> On 21/10/2013 05:45, Matt D. wrote: > Copy/paste seems to be broken when attempting to copy a large block of text > from X to Windows. See the attachment for an example. > > Copying the text from Windows to X seems fine but the reverse causes the mouse > cursor to spin and then a blank string to paste. Thanks for the bug report and reproduction steps. I can reproduce this problem, and there's definitely a timing sensitive bug here (which a larger paste seems to trigger). There is also perhaps something not quite right about the way select() is behaving here, as it seems to be returning 0 before the timeout expires, which I need to investigate further. I've uploaded a snapshot at [1] with a fix and a workaround. Perhaps you could try that and see if it improves things for you? [1] ftp://cygwin.com/pub/cygwinx/XWin.20131121-git-49551bf34e231173.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 jon.turney@dronecode.org.uk Thu Nov 21 17:51:00 2013 From: jon.turney@dronecode.org.uk (Jon TURNEY) Date: Thu, 21 Nov 2013 17:51:00 -0000 Subject: Clipboard periodically breaks In-Reply-To: <20131021144612.GB5297@win.tue.nl> References: <51B4D075.3050001@tiscali.co.uk> <51B5D4E2.20008@dronecode.org.uk> <51B6479A.5050707@tiscali.co.uk> <51C44820.4010307@dronecode.org.uk> <523E580D.8010807@codespunk.com> <524454A6.8030503@dronecode.org.uk> <5244D2C9.9000401@codespunk.com> <20131021144612.GB5297@win.tue.nl> Message-ID: <528E4801.7000808@dronecode.org.uk> > On Thu Sep 26 20:35:21 2013, Matt D. wrote: >> However, an environment variable that tells it which clipboard to >> use would provide an immediate solution and be used used on a >> per-application basis. For example, I can use aliases when launching >> programs: >> >> $ xclip=clipboard1 gedit $@ (monitor only clipboard 1) >> $ xclip=clipboard2 gedit $@ (monitor only clipboard 2) >> >> No option would indicate that both clipboard 1 and clipboard 2 would >> be handled as they are now. >> >> I'm not familiar with X programming but I'm assuming here that it >> would be possible for xclip to read from a particular process's own >> environment (rather than xclip's own) while processing a clipboard >> event to do this. >> >> What do you think? This is not straightforward to implement and is not really a good solution as it won't work for remote X clients. In theory, it might be possible to annotate the X client window with a property which tells XWin/xwinclip how to treat it's clipboard use, but since the clipboard-owning window is often a hidden one, getting that property on there poses problems. Hopefully the -noprimary option makes this less of an issue. -- 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 k.avgeropoulos@gmail.com Fri Nov 22 07:52:00 2013 From: k.avgeropoulos@gmail.com (Kostas Avgeropoulos) Date: Fri, 22 Nov 2013 07:52:00 -0000 Subject: DPI setting not respected in version 1.14.4 In-Reply-To: <528E187F.6040801@dronecode.org.uk> References: <528E187F.6040801@dronecode.org.uk> Message-ID: Thanks for the prompt reply. Actually after I installed xdpyinfo (with a few dependencies that I unfortunately did not take note of) and restarted X server, DPI 80 is there again. No idea how this got fixed. On Thu, Nov 21, 2013 at 4:28 PM, Jon TURNEY wrote: > On 20/11/2013 16:53, Kostas Avgeropoulos wrote: >> My Windows shortcut is >> >> 'C:\cygwin\bin\run.exe /usr/bin/bash.exe -l -c "/usr/bin/startxwin.exe >> -- -clipboard -emulate3buttons -dpi 80"' >> >> Yet Cygwin/X does not seem to respect the DPI setting. Fonts are too big. >> >> This worked with previous versions of Cygwin/X. >> >> Any ideas? > > I can't reproduce this: > > $ startxwin -- -clipboard -emulate3buttons -dpi 80 > > $ xdpyinfo -display :1 | grep resolution > resolution: 80x80 dots per inch > > Can I please see your /var/log/xwin/XWin.0.log? > > -- > 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 wwthunan@gmail.com Sat Nov 23 14:14:00 2013 From: wwthunan@gmail.com (GeeKer Wang) Date: Sat, 23 Nov 2013 14:14:00 -0000 Subject: Unable to use wgl direct rendering Message-ID: Hi, all I got a HP dv4 envy 5306tx laptop with dual cards(intel/Nvidia). I failed to install NVidia driver in linux, so I have to turn to cygwin in windows. I install the latest cygwin-32 and xserver under windows8-64. But when I started the xserver by 'xwin -wgl -multiwindow', I failed to start direct rendering. The result of 'glxinfo | grep -i rend' is direct rendering: No (If you want to find out why, try setting LIBGL_DEBUG=verbose) OpenGL renderer string: GeForce GT 650M/PCIe/SSE2 After I export LIBGL_DEBUG=verbose, nothing detail is shown. So I don't know why this doesn't work and where the problem is. Any advice will be appreciated! -- Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: XWin.0.log Type: application/octet-stream Size: 6073 bytes Desc: not available URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Sun Nov 24 02:00:00 2013 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin/X)) Date: Sun, 24 Nov 2013 02:00:00 -0000 Subject: Unable to use wgl direct rendering In-Reply-To: References: Message-ID: <52915DB5.1020007@users.sourceforge.net> On 2013-11-23 08:14, GeeKer Wang wrote: > Hi, all \> I install the latest cygwin-32 and xserver under windows8-64. > But when I started the xserver by 'xwin -wgl -multiwindow', I failed > to start direct rendering. The result of 'glxinfo | grep -i rend' is > > direct rendering: No (If you want to find out why, try setting > LIBGL_DEBUG=verbose) > OpenGL renderer string: GeForce GT 650M/PCIe/SSE2 Direct rendering is not supported on Cygwin; even with hardware acceleration enabled, rendering is still indirect. Yaakov Cygwin/X -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/