Re: ssh logon failure

2013-11-12 Thread greenspan
I feel like a terrier peeling away an onion. Darn it, this is going to work! I agree with your comment about being in the weeds and started over, in the process discovering why HOME was set improperly (using the domain switch for mkpasswd instead of local). I reinstalled ssh, re-ran ssh-host-co

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread Yucong Sun
That's what lead me to use gnu++0x instead. For -rdynamic, apparently it would work for some simple c++ program, just not those with new c++11 features. It would be nice to fix it. Cheers. On Tue, Nov 12, 2013 at 3:37 PM, Ryan Johnson wrote: > On 12/11/2013 5:30 PM, JonY wrote: >> >> On 11/13/2

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread Ryan Johnson
On 12/11/2013 5:30 PM, JonY wrote: On 11/13/2013 02:35, Yucong Sun wrote: Good new! I've found the link failure issue, it is caused by "-rdynamic" sunyc@sunyc-wks ~ $ cat 2.cc #include struct tick_event { int i; }; int main() { std::deque list; tick_event *a = new tick_event

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread JonY
On 11/13/2013 02:35, Yucong Sun wrote: > Good new! I've found the link failure issue, it is caused by "-rdynamic" > > sunyc@sunyc-wks ~ > $ cat 2.cc > #include > > struct tick_event { > int i; > }; > > int main() { > std::deque list; > > tick_event *a = new tick_event; > list.

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Corinna Vinschen
On Nov 12 14:20, Tom Schutter wrote: > Index: faq-setup.xml > === > RCS file: /cvs/src/src/winsup/doc/faq-setup.xml,v > retrieving revision 1.30 > diff -u -r1.30 faq-setup.xml > --- faq-setup.xml 5 Jun 2013 07:57:39 - 1.3

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Tom Schutter
The second attempt was to make sure that I wasn't imagining the first attempt. And then I got a message that said I was already subscribed. At Tue, 12 Nov 2013 12:36:57 -0700 I sent the unified diff to the patches list, but it again does not appear to have gotten there. Puzzling. I was able to

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Tom Schutter
Index: faq-setup.xml === RCS file: /cvs/src/src/winsup/doc/faq-setup.xml,v retrieving revision 1.30 diff -u -r1.30 faq-setup.xml --- faq-setup.xml 5 Jun 2013 07:57:39 - 1.30 +++ faq-setup.xml 12 Nov 2013 19:34:19

[ANNOUNCEMENT] Updated: perl-Text-CSV_XS-1.02-1

2013-11-12 Thread David Stacey
Version 1.02-1 of perl-Text-CSV_XS has been uploaded. CHANGE LOG == 1.02- 2013-09-25, H.Merijn Brand * Add example for reading only a single column * Don't store NULL in _ERROR_INPUT (RT#86217/Clone) * Prevent double-decode in csv-check * Add decode_utf8 attribute (de

Re: Problem with latest setup-x86.exe

2013-11-12 Thread Harry G McGavran Jr
>On 11/12/2013 10:54 AM, Harry G McGavran Jr wrote: >> On only one of my Windows 7 machines the latest setup-x86.exe >> works but always exits with an Access Violation. >> >> So, I downloaded the source to setup and built it. >> >> But in order to make the build work, I had to remove -Werror >>

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread Yucong Sun
Good new! I've found the link failure issue, it is caused by "-rdynamic" sunyc@sunyc-wks ~ $ cat 2.cc #include struct tick_event { int i; }; int main() { std::deque list; tick_event *a = new tick_event; list.push_back(a); return 0; } sunyc@sunyc-wks ~ $ g++ -c --std=c++11

Re: Problem with latest setup-x86.exe

2013-11-12 Thread Christopher Faylor
On Tue, Nov 12, 2013 at 10:54:03AM -0700, Harry G McGavran Jr wrote: >On only one of my Windows 7 machines the latest setup-x86.exe >works but always exits with an Access Violation. I appreciate your looking at the source code but given what you changed, I don't understand how what you did would f

Re: something is wrong with cygwin's mirror checker

2013-11-12 Thread Christopher Faylor
On Tue, Nov 12, 2013 at 01:08:37PM -0500, Christopher Faylor wrote: >I don't know why but the mirror checker is screwed up. The last email I >got from the system said that the mirrors were in good shape but >http://cygwin.com/mirrors.html tells another story. > >Just a heads up. I'm investigating

something is wrong with cygwin's mirror checker

2013-11-12 Thread Christopher Faylor
I don't know why but the mirror checker is screwed up. The last email I got from the system said that the mirrors were in good shape but http://cygwin.com/mirrors.html tells another story. Just a heads up. I'm investigating. cgf -- Problem reports: http://cygwin.com/problems.html FAQ:

Problem with latest setup-x86.exe

2013-11-12 Thread Harry G McGavran Jr
On only one of my Windows 7 machines the latest setup-x86.exe works but always exits with an Access Violation. So, I downloaded the source to setup and built it. But in order to make the build work, I had to remove -Werror from the Makefile and add a definition for ARRAYSIZE to main.cc. The fix

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Christopher Faylor
On Tue, Nov 12, 2013 at 07:18:13AM -0700, Tom Schutter wrote: >I sent this email to the patches list (which I am subscribed to), but it >doesn't appear to have gotten there. At least it does not appear in the >archive. I don't see any indication of email from you to cygwin-patches in the logs. I

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Corinna Vinschen
Hi Tom, On Nov 12 07:18, Tom Schutter wrote: > I sent this email to the patches list (which I am subscribed to), but it > doesn't appear to have gotten there. At least it does not appear in the > archive. I don't know why this occured, but it doesn't matter for this patch. Can you please resend

Re: ssh logon failure

2013-11-12 Thread George Demmy
On Mon, Nov 11, 2013 at 6:48 PM, greenspan wrote: > Larry, thanks for your reply. I am using windows 7. I've tried changing > ownership of /var/empty to cyg_server, but this doesn't help. > > FYI my "Fix" only worked for a day before failing again. Now I'm back to > square one. FWIW I was strug

Re: suggestion for Cygwin FAQ 2.19 "How do I uninstall all of Cygwin?"

2013-11-12 Thread Tom Schutter
I sent this email to the patches list (which I am subscribed to), but it doesn't appear to have gotten there. At least it does not appear in the archive. Date: Sun, 10 Nov 2013 19:13:05 -0700 From: me To: patches list Subject: add uninstall of cyglsa to FAQ diff -r1.30 faq-setup.xml 475a476,484

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread JonY
On 11/12/2013 10:33, Yucong Sun wrote: > I've tried on both 32bit and 64bit clean cygwin install, the result is > same. Something is wrong with cygwin's gcc. > > my configure script by default uses g++ --std=c++11, this still have > problem of " no snprintf " , after I replace all snprintf() with

Re: C++11 program link failure under GCC 4.8.2-1

2013-11-12 Thread JonY
On 11/12/2013 07:37, Yucong Sun wrote: > Yes, the sha1 matches. > > sunyc@sunyc-wks /lib/gcc/i686-pc-cygwin/4.8.2 > $ sha1sum.exe libstdc++.* > f4dfadfddade3aceaf4852cd5db31372ab7ef0d1 *libstdc++.a > 963e2a697c3a1a7d036d975b07f4c408bbd1cb2d *libstdc++.dll.a > > Also I couldn't find GLIB_xxx versi