Re: X server causing IE lockups

2009-02-24 Thread rhubbell
On Tue, 10 Feb 2009 13:05:36 -0500
Frédéric Bron wrote:
  Maybe we have an exploit on our systems.
  Or possibly we have the same video driver?
  Or same network card. Etc.
  I'll gather together what hardware I've got and we can compare.
 
 I have a notebook : DELL Latitude D830, Video = nVidia Quadro NVS 140M

I have an ATI Mobility FireGL V5k.
But I have put this on the back-back burner for now. My work-around
is to only use X for when I need gnuplot and then I exit from 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/



Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
What's the [CFT] stand for?
Call For Test?

Are you requesting test volunteers?


On Tue, 24 Feb 2009 00:01:19 -0500
Charles Wilson wrote:

 The most recent release of libtool (2.2.7a-1 for cygwin-1.5, and
 2.2.7a-10 for cygwin-1.7) ought to support cross builds at least as well
 as libtool-1.5 did.  Note that in *ordinary* cross builds (SomeBUILD -
 SomeHOST) you can't run the $host executables on the $build machine --
 but you can still *build* them. That kind of thing has (hopefully)
 always worked, and still works, for -cygwin crosses.  However, under
 certain conditions, it USED to be possible to run the $host (cygwin)
 executables on the $build machine, provided $build's CPU was x86, and
 $build had wine installed, and $build was running linux with the
 'binfmt' kernel extension, and there was a cygwin installation in the
 wine arena, etc, etc.
 
 /That/ has been broken for about a year, due to a change in how
 wrapper executables are handled by libtool in libtool-2.2.2 and above.
 
  1 ==
 See, in the ANCIENT days, there was a wrapper script.  When you built an
 executable for $host=cygwin, libtool would create
 
myprog (a wrapper script)
.libs/myprog.exe (the actual exe)
 
 The wrapper script would set $PATH and various other environment
 variables so that the EXE would be able to find its (as yet
 uninstalled) DLLs, and then it would launch the EXE.  Obviously, scripts
 are not bound to any specific platform, so $build has no problem running
 the script.  So as long as $build could execute EXE (via wine, etc), the
 the wrapper/EXE combo worked fine.
 
 Why'd we change it? Well, there IS one little problem with that scheme:
 the Makefile rule for building the EXE looks like this:
 
 ./my_prog$EXEEXT: my_prog.o stuff
   ... some libtool commands ...
 
 But libtool doesn't create ./my_prog$EXEEXT -- it creates a wrapper
 named ./my_prog with NO $EXEEXT.  So make always believes that the
 executable must be rebuilt.  'make' - go link the exe. 'make check' -
 'go link the exe again'. 'make install' - go link the exe. Very annoying.
 
  2 ==
 So, in the OLD days, we had a wrapper executable AND a wrapper script:
 
   my_prog.exe (not the real exe; just a wrapper exe)
   my_prog (the wrapper script)
   .libs/my_prog.exe (the real exe)
 
 The way this scheme worked was: (a) the wrapper exe would launch the
 wrapper script, (b) the wrapper script would set $PATH and such, and
 then (c) launch the real exe.  This worked pretty well -- and was fairly
 transparent to cross builders: they'd try to run 'my_prog' (not
 my_prog.exe, because who types blahblah.EXE on unix?). But, my_prog is
 a shell script, and it Just Works(tm) like it did in the ANCIENT days.
 So cross-builders were happy -- they just ignored that wrapper exe (and,
 incidentally, never tested it...)
 
 So, what was wrong with this?  Did we fix something that wasn't broken?
 
 Well, not exactly. About three years ago, cygwin added a new feature:
 you could set the 'transparent_exe' option in the CYGWIN variable. Then,
 you could pretend you were even more unixy: files which end in .exe to
 be used by appropriate functions when an input filename is specified
 with no extension.  That is, you say spawn(foo) and if foo.exe exists,
 then cygwin will turn that in to spawn(foo.exe).
 
 So...what if I have foo.exe AND foo, and a really really want to
 spawn(foo) -- NOT spawn(foo.exe).  Say, for instance:
 
my_foo.exe
my_foo
 
 Uh...don't do that.
 
 See, transparent_exe caused all KINDS of pain for libtool -- cygwin (and
 libtool) got really confused by the situation.  However, as long as
 transparent_exe was just an option, we were ok though: you just had to
 follow some rules:
   1) if transparent_exe, then do not put files that differ only in
 .exe-extension in the same directory
   2) since libtool does this, do not use libtool and transparent_exe
 together.
 Not the greatest situation, but we lived with it.
 
 Backgrounders:
 http://cygwin.com/ml/cygwin/2006-03/msg00148.html
 http://cygwin.com/ml/cygwin-apps/2006-03/msg00028.html
 http://cygwin.com/ml/cygwin/2007-04/msg00543.html
 
 
 But then, along comes cygwin-1.7...in which 'transparent_exe' will be
 the default behavior. Oops.
 
 Don't use libtool and cygwin-1.7 is not a rule we can live with.
 
 So, (and this is the part that broke the cross-builders), we changed
 libtool's behavior...
 
  3 ==
 About two years ago, for $host cygwin/mingw, libtool was modified to no
 longer put a wrapper *script* in the build dir. Instead, it put an
 uglify-named version of it in .libs:
 
   my_prog.exe (not the real exe; just a wrapper exe)
   .libs/my_prog_ltshwrapper(the wrapper script #1)
   .libs/my_prog_ltshwrapperTMP (the wrapper script #2)
   .libs/my_prog.exe (the real exe)
 
 That way, no more 'transparent_exe' clashes. BUT, now the poor
 cross-builders have no wrapper script to execute. They have to 

Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 16:15:33 -0500
Greg Chicares wrote: 
 By the way, this list discourages full quoting:
   http://www.cygwin.com/acronyms/#TOFU

Ok, this is one neurotic list.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 18:12:00 -0500
Larry Hall (Cygwin) wrote:
 
 Thanks for sharing.  Well, of course, if this bothers you to some great
 extent, you need not stay.  We won't follow you home.  Promise! :-)

Thank you too for sharing. (^:

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 17:45:21 -0500
Ben Kamen wrote:
 What still always makes me laugh is the people who are so emphatic about top 
 vs. bottom posting.
If born sooner they would be shouting Get of my lawn!.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 17:33:53 -0500
Greg Freemyer greg.freem...@gmail.com wrote:
 A lot of Linux mailing lists have that policy.  Especially if it is
 high volume or has a large subscriber base.  The idea is that someone
 can read a single email and understand it without having to bounce all
 over the place.

I was mostly noticing how frequent the list policing is here.
And also what hypocrites there are too. Look at your .sig, a
lot of useless information, but you send it every time.
 
 
 
 Greg
 -- 
 Greg Freemyer
 Litigation Triage Solutions Specialist
 http://www.linkedin.com/in/gregfreemyer
 First 99 Days Litigation White Paper -
 http://www.norcrossgroup.com/forms/whitepapers/99%20Days%20whitepaper.pdf
 
 The Norcross Group
 The Intersection of Evidence  Technology
 http://www.norcrossgroup.com
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 22:32:23 -0500
Christopher Faylor wrote:
 Please stop this off-topic discussion.  Warning #1.
I'll stop if you do. Warning #1.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [OT] Re: [CFT] libtool on nix-cygwin cross, with wine

2009-02-24 Thread rhubbell
On Tue, 24 Feb 2009 22:22:05 -0500
Dave Korn wrote:
   How frequently you notice it may be different from how frequently other
 people notice it, hopefully in proportion to whether you are more or less of a
 jerk than whichever other people you choose to compare yourself against.

You seemed to have taken note. You have a delete button, right?

 
  And also what hypocrites there are too. Look at your .sig, a
  lot of useless information, but you send it every time.
 
   It's a fraction of the useless information that you send every time by
 always duplicating the entire previous post.  Just how many times do you need
 to see that list of URLs anyway?
 
   It certainly creates the impression that you believe that your wit and
 wisdom is of such great value that your every trivial and inconsequential
 thought must be broadcast to the world at large the moment it pours forth from
 your imagination, a matter of such earth-shattering import that we would not
 want to wait the three seconds it would take you to trim the spam from your
 post.  This is why you're getting the treatment: you come across to have an
 overly-high opinion of your own worth.

You're certainly happy with yourself, don't believe everything you think.

 
   FTR, I'd be happy to wait that extra 3 seconds.
An exemplary hypocrite.  Hall-o-famer. If only you could practice what you
spew.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Readline-6.0 available for FTP

2009-02-23 Thread rhubbell
On Mon, 23 Feb 2009 11:25:18 -0500
Christopher Faylor cgf-use-the-mailinglist-ple...@cygwin.com wrote:

 On Mon, Feb 23, 2009 at 08:16:34AM -0500, Chet Ramey wrote:
 The first public release of the GNU Readline library, version 6.0,
 is now available for FTP with the URLs
 
 *** cgf wonders why this merited email to the cygwin mailing list...

Could get busy with all the pkgs that comprise cygwin if we see
mails for updates.  Seem like these would be better suited to
cygwin-announce or the like.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [ANNOUNCEMENT] Updated: {ncurses/libncurses-devel/libncurses8/ncurses-demo}-5.7-1

2009-02-23 Thread rhubbell
Just curious since I'm new here. Why do announcements go to this list?
Isn't there an announcement list?

Yes, I can filter these to trash easily enough.

On Mon, 23 Feb 2009 20:21:46 -0500
Charles Wilson cyg...@cwilson.fastmail.fm wrote:

 ncurses is a package that provides character and terminal handling
 libraries, including 'gui-like' panels and menus.  It is often used
 instead of termcap.
 
 This will most likely be the final ncurses update for the cygwin-1.5
 distribution; future development will continue with ncurses-5.7-10
 for cygwin-1.7.
 
 
 IMPORTANT:  You must upgrade libncurses8 (to 5.7-1) and terminfo (to
 5.7_20090221-1) simultaneously.
 
 
 
 CHANGES since 5.5-3:
 
 o Update to latest release (5.7) with current patchset (20090221)
 o Build using stock cygport 0.4.3
 o Build with --with-ticlib (separate add-on library exposes
   internal ncurses details), so that the (now) separately-distributed
   tack program can link successfully.
   - libncurses8 package now additionally includes cygtic-8.dll
 o Upstream changes:
   - tack program now distributed separately
   - pkg-config .pc files now provided
   - ncurses8-config script now provided
   - many more demo programs in ncurses-demo
   - /usr/share/terminfo database now organized by hex code
 of first character (e.g. instead of r/rxvt, we have 72/rxvt
 (0x72 == 'r'). See warning, below.
 
 WARNING:
 
 Because of a slight change in the organization of the terminfo database,
 terminfo entries NOT part of the terminfo package may need to be
 manually upgraded or moved.  To improve operation on case-insensitive
 platforms, the terminfo database is now organizaed according to the
 two-digit hexadecimal code of the entry's first letter, instead of
 organized according to that first letter itself.  For instance:
 
   OLD ---   NEW
   r/rxvt-unicode 72/rxvt-unicode
 
 To fix any out-of-place entries, you may manually move them to the
 correct location, or re-run tic.exe on the original terminfo source for
 that terminal.  In the case of rxvt-unicode:
 
 $ /etc/postinstall/rxvt-unicode.sh.done
 
 will do the job.
 
 --
 Charles Wilson
 ncurses volunteer maintainer for cygwin
 
 To update your installation, click on the Install Cygwin now link on
 the http://cygwin.com/ web page.  This downloads setup.exe to your
 system.  Then, run setup and answer all of the questions.
 
   *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***
 
 If you want to unsubscribe from the cygwin-announce mailing list, 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-announce-unsubscribe-you=yourdomain@cygwin.com
 
 If you need more information on unsubscribing, start reading here:
 
 http://sources.redhat.com/lists.html#unsubscribe-simple
 
 Please read *all* of the information on unsubscribing that is available
 starting at the above URL.
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: [ANNOUNCEMENT] Updated: {ncurses/libncurses-devel/libncurses8/ncurses-demo}-5.7-1

2009-02-23 Thread rhubbell
On Tue, 24 Feb 2009 00:17:58 -0500
Charles Wilson wrote:

 rhubbell wrote:
  Just curious since I'm new here. Why do announcements go to this list?
 
 Because all messages sent to the announcements list are reflected to
 this one.  That's the way it's set up, because most subscribers prefer
 it that way.

Ok, that's odd. Do all the messages here reflect to announcements too?

 
  Isn't there an announcement list?
 
 Yes. In fact:
 http://lists.gnu.org/archive/html/libtool-patches/2007-04/msg00052.html
 
  On Mon, 23 Feb 2009 20:21:46 -0500
  Charles Wilson zzz wrote:
 
 Don't feed the spammers.
 
 --
 Chuck
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: RFE?: CygWinDir in ENV? (was Re: How does one find where Cygwin was installed from Windows?)

2009-02-18 Thread rhubbell
On Tue, 10 Feb 2009 15:47:10 -0500
Larry Hall (Cygwin) reply-to-list-only...@cygwin.com wrote:

 rhubbell wrote:
  Are you and Linda married by any chance?
 
 Now that's funny! :-)

I'm glad you laughed, whew! That exchange had me a little worried
about the list. But now I see all's fine.

 
 In case I need to be crystal clear on this subject, no we have no
 common relationship beyond that of both being participants on this
 list.
 
 -- 
 Larry Hall  http://www.rfk.com
 RFK Partners, Inc.  (508) 893-9779 - RFK Office
 216 Dalton Rd.  (508) 893-9889 - FAX
 Holliston, MA 01746
 
 _
 
 A: Yes.
   Q: Are you sure?
   A: Because it reverses the logical flow of conversation.
   Q: Why is top posting annoying in email?
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Tried mintty but it locks-up on enabling Copy on select

2009-02-12 Thread rhubbell
Turns out I tried again to see if some particular app was part of the problem.
Tried YIM, Word, etc. But couldn't pinpoint. But I did see the problem
again. Still occurred while in the Options menu but was not in the copy-on-
select menu.  Just switching between sub-menus.

Maybe I'll try again some time and use ollydbg.

On Thu, 12 Feb 2009 07:33:51 +
Andy Koppe andy.ko...@gmail.com wrote:

  1) run setup.exe
  2) download -- but don't install
  3) run setup.exe -- install from local dir
  4) in filemanager dbl-click mintty.exe
  5) in the term rt-click-Options-mouse-enable copy-on-select
  6) mintty becomes unresponsive
  7) kill mintty.exe and the associated bash.exe
 
  I tried these steps today and was unable to reproduce.
 
 Thanks for trying anyway!
 
  Q2) Have you got any clipboard utilities running?
  A2) Every application has access to the clipboard, right? So yes.
 
 You can get various 3rd party utilities for adding stuff like a
 clipboard history or Windows-wide copy-on-select.
 
  Q3) Does it work if you delete or rename ~/.minttyrc to go back to the 
  default settings and copy something through the context menu?
  A3) Didn't find a .minttyrc, does mintty create one when it starts?
 
 No, it only creates one when you press OK in the options dialog, but
 of course you didn't get to that.
 
 What does mintty put in there if it creates one?
 
 Its settings, in the form of key-value pairs like 'CopyOnSelect=1'.
 (I'd asked in case it was a particular combination of options that
 triggered the crash.)
 
 Andy
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: X server causing IE lockups

2009-02-10 Thread rhubbell
Maybe we have an exploit on our systems.
Or possibly we have the same video driver?
Or same network card. Etc.
I'll gather together what hardware I've got and we can compare.


On Tue, 10 Feb 2009 10:05:27 +0100
Frédéric Bron frederic.b...@m4x.org wrote:

  The common thing seems to be vncclient. I guess I'll check on the vncclient
  list and see if there are any clues.  Are we on our own?
  I will try to start vncclient after I start X and see if that matters.
  Have you tried sorting this out at all?
 
  Gentlemen start your finger pointing!  It's vncclient! No, it's Xfree!
  No it's winxp!  Yay! Not our problem!
 
 I found another person that has the same problem (2 years ago):
 http://lightbody.net/blog/2006/02/cygwinx_and_vnc_clipboard_conf.html
 He has only conflicts with clipboard. I have clipboard conflicts and
 network issues.
 
 F. Bron
 
 --
 Unsubscribe info:  http://cygwin.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/



Re: Tried mintty but it locks-up on enabling Copy on select

2009-02-10 Thread rhubbell
On Tue, 10 Feb 2009 07:29:03 +
Andy Koppe andy.ko...@gmail.com wrote:

  That's a new one actually. Can you reproduce it? If it's not too much
  bother, any details about the bug and your system would be
  appreciated. The ~/.minttyrc file might be helpful too.
 
  It's winxp with latest patches and I think I have latest cygwin.
  Although I'm not certain of that.
 
 I suspect most users will have 'copy on select' enabled and there've
 been no problems reported so far, so particular circumstances on your
 setup must be exposing a latent bug. Hence the .minttyrc and the
 stackdump would be useful.

I'm passing on using mintty.  But I'll give you steps to reproduce.

1) run setup.exe
2) download -- but don't install
3) run setup.exe -- install from local dir
4) in filemanager dbl-click mintty.exe
5) in the term rt-click-Options-mouse-enable copy-on-select
6) mintty becomes unresponsive
7) kill mintty.exe and the associated bash.exe

I tried these steps today and was unable to reproduce.

 
 Also, a few more questions, if you're willing to help tracking it
 down. 

Q1) Does it lock up as soon as you start mintty or the first time you try to 
copy something? 

Q2) Have you got any clipboard utilities running? 

Q3) Does it work if you delete or rename ~/.minttyrc to go back to the default 
settings and copy something through the context menu?

A1) See steps to repro above
A2) Every application has access to the clipboard, right? So yes.
A3) Didn't find a .minttyrc, does mintty create one when it starts?
What does mintty put in there if it creates one?


 
 Andy
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: RFE?: CygWinDir in ENV? (was Re: How does one find where Cygwin was installed from Windows?)

2009-02-10 Thread rhubbell
Are you and Linda married by any chance?

On Tue, 10 Feb 2009 15:36:49 -0500
Larry Hall (Cygwin) reply-to-list-only...@cygwin.com wrote:

 On 02/10/2009, Linda Walsh wrote:
  Plblblblb! (*raz*)
  
  Um...so..um...
  I know it could spoil your day and all...but it really would
  be more *linux* like if it was added to the environment variables.
 
 OK, I need to be clear.  I have nothing against the enviroment variable
 idea.  I was making (a little) joke.
 
 If you'd like to see this happen, I'd suggest offering it as a patch
 to 'setup.exe'.  Since I'm not the gatekeeper for 'setup.exe' code,
 whether or not I'm convinced it's a good idea isn't necessarily
 going to help or hurt your cause.  The patch is likely to be the path of
 least (though not necessarily 'no') resistence.
 
  I forget, does Cygwin offer the option of installing for 1 user vs. 
  all users? I only remember it being installed for all...? 
 
 Both are offered in 1.7.
 
 -- 
 Larry Hall  http://www.rfk.com
 RFK Partners, Inc.  (508) 893-9779 - RFK Office
 216 Dalton Rd.  (508) 893-9889 - FAX
 Holliston, MA 01746
 
 _
 
 A: Yes.
   Q: Are you sure?
   A: Because it reverses the logical flow of conversation.
   Q: Why is top posting annoying in email?
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: X server causing IE lockups

2009-02-09 Thread rhubbell

The common thing seems to be vncclient. I guess I'll check on the vncclient
list and see if there are any clues.  Are we on our own?
I will try to start vncclient after I start X and see if that matters.
Have you tried sorting this out at all?

Gentlemen start your finger pointing!  It's vncclient! No, it's Xfree!
No it's winxp!  Yay! Not our problem!



On Mon, 9 Feb 2009 06:57:01 +0100
Frédéric Bron frederic.b...@m4x.org wrote:

  I know there was another cygwin user that had similar experiences.
  Is this a limited situation?  Is anyone else seeing these kinds of issues?
 
 Same problem since I updated to the new X.org 7.4: I have xwin
 crashes. Also with XP and also using a vncclient (TightVNC)
 This is how it happens:
 - suddenly, all network connexions (cygwin and windows) stop working
 (no internet...). rxvt freezes
 - when I kill xwin (kill -9 from the cygwin bash shell), all works again.
 - often, at the same time, windows clipboard does not work any more.
 - this happens 1-2 times a week roughly.
 
 F. Bron
 
 --
 Unsubscribe info:  http://cygwin.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/



Re: current favorite terminal?

2009-02-09 Thread rhubbell
On Mon, 9 Feb 2009 04:58:15 -0500
Matt Wozniski godlyg...@gmail.com wrote:

 On Sat, Feb 7, 2009 at 9:56 PM, rhubbell wrote:
  What is everyone's favorite, full-featured term progam?
  I'd like to have something with more features than rxvt.
  Maybe something like konsole.
 
 I have yet to find anything that can match the feature set of xterm.

Does xterm have tabs? I haven't looked at xterm in so long that I have
no idea what is xterm's current state.  Or maybe tabs are not default
but are configurable?

 
 ~Matt
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: current favorite terminal?

2009-02-09 Thread rhubbell

Has anyone tried this one? Impressions?

 Terminator probably has most of what you're looking for. 
 http://software.jessies.org/terminator/
 http://software.jessies.org/salma-hayek/cygwin-setup.html

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Tried mintty but it locks-up on enabling Copy on select

2009-02-09 Thread rhubbell
Maybe a known issue.

Just tried mintty 0.3.5:

Options-Mouse-Copy on select

mintty becomes unresponsive and I have to kill it.
The virtual set size goes to 450megabytes

After killing it it leaves behind a bash.exe which also has to be killed.
It's an 0.3.5 so I guess I'll wait a little while.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Are there vnc packages?

2009-02-09 Thread rhubbell
I looked for vnc packages in cygwin but didn't find any.
Do they exist? Maybe no need since there are plenty of vnc packages
that run on winxp already?

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Tried mintty but it locks-up on enabling Copy on select

2009-02-09 Thread rhubbell
On Mon, 9 Feb 2009 18:54:58 +
Andy Koppe andy.ko...@gmail.com wrote:

  Maybe a known issue.
 
  Just tried mintty 0.3.5:
 
  Options-Mouse-Copy on select
 
  mintty becomes unresponsive and I have to kill it.
  The virtual set size goes to 450megabytes
 
 That's a new one actually. Can you reproduce it? If it's not too much
 bother, any details about the bug and your system would be
 appreciated. The ~/.minttyrc file might be helpful too.

Yes, it's reproducible. I just installed mintty and then ran it.
So whatever mintty does to .minttyrc is what's in that file.

I found a mintty.exe.stackdump
Exception: STATUS_ACCESS_VIOLATION
The stack trace is incomplete and ends with 
(probably corrupted stack)

 
  After killing it it leaves behind a bash.exe which also has to be killed.
 
 Yep, if it crashes, the child process won't get killed. But of course
 it's not supposed to crash. :)
 
 Andy
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Tried mintty but it locks-up on enabling Copy on select

2009-02-09 Thread rhubbell
On Mon, 9 Feb 2009 18:54:58 +
Andy Koppe andy.ko...@gmail.com wrote:

  Maybe a known issue.
 
  Just tried mintty 0.3.5:
 
  Options-Mouse-Copy on select
 
  mintty becomes unresponsive and I have to kill it.
  The virtual set size goes to 450megabytes
 
 That's a new one actually. Can you reproduce it? If it's not too much
 bother, any details about the bug and your system would be
 appreciated. The ~/.minttyrc file might be helpful too.

It's winxp with latest patches and I think I have latest cygwin.
Although I'm not certain of that.

 
  After killing it it leaves behind a bash.exe which also has to be killed.
 
 Yep, if it crashes, the child process won't get killed. But of course
 it's not supposed to crash. :)
 
 Andy
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: current favorite terminal?

2009-02-09 Thread rhubbell
Nope, xterm no good.  Needs an X server.
(see previous message on X lockups)

On Mon, 9 Feb 2009 04:58:15 -0500
Matt Wozniski godlyg...@gmail.com wrote:

 On Sat, Feb 7, 2009 at 9:56 PM, rhubbell wrote:
  What is everyone's favorite, full-featured term progam?
  I'd like to have something with more features than rxvt.
  Maybe something like konsole.
 
 I have yet to find anything that can match the feature set of xterm.
 
 ~Matt
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: current favorite terminal?

2009-02-08 Thread rhubbell
On Sun, 08 Feb 2009 00:36:29 -0600
Yaakov (Cygwin/X) yselkow...@users.sourceforge.net wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
 rhubbell wrote:
  What is everyone's favorite, full-featured term progam?
  I'd like to have something with more features than rxvt.
 
 Have you tried mintty?

No, will have a look, thanks.

 
  Maybe something like konsole.
 
 There aren't a lot of options in the distro, but Cygwin Ports does
 include konsole, xfce4-terminal, and gnome-terminal.

Well sounds like I'd have to take all the baggage that goes along
with any one of those.  I just want a full-featured term app. without
all the other extras.


 
 
 Yaakov
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (Cygwin)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iEYEAREIAAYFAkmOfW0ACgkQpiWmPGlmQSMOugCgkGwZ+vsJ67AJQ6Jv03tWgtZH
 QOoAnAzGIg6vWe8LytCISviOsMzA1sz2
 =H3dE
 -END PGP SIGNATURE-
 
 --
 Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
 Problem reports:   http://cygwin.com/problems.html
 Documentation: http://cygwin.com/docs.html
 FAQ:   http://cygwin.com/faq/
 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



X server causing IE lockups

2009-02-07 Thread rhubbell
Recently started using the Xserver and have issues now with IE. IE will become
unresponsive. When I kill the xserver IE becomes responsive again.

I also have issues with any vncclient sessions I'm running. The cut-n-paste
buffers stop working in vnc. Vnc doesn't require the xserver.

It's not a showstopper because I can kill the xserver and get expected
behavior back. Is this a known issue/limitation? This is on winxp.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



X server causing IE lockups

2009-02-07 Thread rhubbell
Recently started using the Xserver and have issues now with IE. IE will become
unresponsive. When I kill the xserver IE becomes responsive again.

I also have issues with any vncclient sessions I'm running. The cut-n-paste
buffers stop working in vnc. Vnc doesn't require the xserver.

It's not a showstopper because I can kill the xserver and get expected
behavior back. Is this a known issue/limitation? This is on winxp.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



current favorite terminal?

2009-02-07 Thread rhubbell
What is everyone's favorite, full-featured term progam?
I'd like to have something with more features than rxvt.
Maybe something like konsole.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/