Re: automake troubles

2002-03-31 Thread Sergei Lodyagin
Well, tank you, but it didn't help. I've got: bash-2.05a$ autoreconf -i doc/Makefile.am:5: installing `config/texinfo.tex' replace/Makefile.am: installing `config/depcomp' /usr/autotool/devel/share/automake/am/depend2.am: AMDEP does not appear in AM_CO NDITIONAL /usr/autotool/devel/share/automak

RE: automake troubles

2002-03-31 Thread \(1pH3r_IVI4IV14\(
Run autoreconf -i -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Sergei Lodyagin Sent: Monday, 1 April 2002 7:24 To: [EMAIL PROTECTED] Subject: automake troubles Hello. I get strange error while compile my project: cd ../../.. && automake --gnu src/l

RE: ssh with non-console programs?

2002-03-31 Thread Robert Collins
Scratch this, ssh works just fine - I had a different problem that was causing the symptoms. Rob -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://

ssh with non-console programs?

2002-03-31 Thread Robert Collins
I haven't looked into this with a debugger yet, this is just a heads-up incase someone else _already_ has. cygwin ssh when invoked from a non-console program (i.e. MS Visual studio's SCC interface) seems to hang quite dead. I find this strange, as AFAIK, ssh works with ttys, which should present

automake troubles

2002-03-31 Thread Sergei Lodyagin
Hello. I get strange error while compile my project: cd ../../.. && automake --gnu src/lib/uvm/Makefile src/lib/uvm/Makefile.am: required file `config/depcomp' not found /usr/autotool/devel/share/automake/am/depend2.am: AMDEP does not appear in AM_CO NDITIONAL /usr/autotool/devel/share/automake

Virtual Memory Exhausted from GDB

2002-03-31 Thread David Ward
Hi, I'm getting a "virtual memory exhausted" error while running a GDB cross I built under Cygwin 6 months ago. Mail archive shows a similiar error with GCC compiling large files - the work around, remove -O. I also saw some discussion on a GCC list for native on NT - which made me think this

RE: Perl module DBD::ODBC 0.39 wont compile on CYGWIN

2002-03-31 Thread Jeff Urlwin
Try the following, which was sent to me recently: FWIW, I was not able to make without adding the following line to Makefile.PL under cygwin (1.3.9): line 106 of Makefile.PL (DBD-ODBC-0.39) +$opts{INC} .= " -I/usr/include/w32api" if $^O eq 'cygwin'; > -Original Message- > From: Pau

Exception handling across dll?

2002-03-31 Thread Yi-An Huang
Does the shared library linking currently handle C++ exception handling across dll properly? I have a sample program which tries to throw some exception in dll and catch it in main program, which fails. If I use static linking, it works. The program uses autoxxx/libtool and is heavily borrowed fr

Re: xfree86 not working with 1.3.10-1

2002-03-31 Thread Christopher Faylor
On Sun, Mar 31, 2002 at 01:15:08PM -0800, Bob Calco wrote: >Anybody: > >I just tried to install XFree86, and I'm getting the "Cannot open display >127.0.0.1:0.0" error described as a bug in some versions of cygwin1.dll in >the startxwin.sh startup script. > >I have the latest greatest cygwin 1.3.1

Cron configuration problem on XP, cygwin 2.125.2.10, cron 3.0.1-6

2002-03-31 Thread Steven Caswell
Greetings. I am having trouble with cron on Windows XP. I have installed it as a service using cygrunsrv as described in the cron.README. I have not changed the etc/group SYSTEM entry as described in the readme. I can start the cron server and it attempts to execute commands in the crontab. But I

xfree86 not working with 1.3.10-1

2002-03-31 Thread Bob Calco
Anybody: I just tried to install XFree86, and I'm getting the "Cannot open display 127.0.0.1:0.0" error described as a bug in some versions of cygwin1.dll in the startxwin.sh startup script. I have the latest greatest cygwin 1.3.10-1 (just checked in fact) and I was wondering if this is a known

queue::top compile problem

2002-03-31 Thread Michael Labhard
The following program demonstrates the problem.  Is this a bug? #include #include class Test { public:  Test()  {   std::queue q;   for( int i =3D 0; i > 5; ++i )    q.push(i);   for( int i =3D 0; i > 5; ++i )   {    ::printf("top=3D %d\n", q.top());    q.pop();   }  } }; int main(char** ar

64-bit file support in ls

2002-03-31 Thread Chris January
Will the 'ls' command support 64-bit file sizes anytime soon? I thought a 4Gb file had suddenly shrunk to 180Mb before realising the file size had wrapped round. Chris -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Document

sshd login bash.exe fails to initialize

2002-03-31 Thread Thor Anders Aarhaug
hi, been running sshd for a while w/o any problems. after I installed the latest current version (as of today), the sshd fails to initialize bash.exe, returning a memory error. the login is ok, and the passwd verified prior to this. I also observe (again) that PS1 promt are garbled in rxvt, ie

Minor texi2html (tetex-beta) change

2002-03-31 Thread Billinghurst, David (CRTS)
The file texi2html, in the tetex-beta package, starts #!/usr/local/bin/perl Of course, it should be #!/usr/bin/perl -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ:

starting programs from a windows prompt

2002-03-31 Thread Albert Russel
Hi, I have a problem with programs that start processes when they are run from the windows2000 prompt: // Parent program parent.c #include #include int main() { system("child"); return 0; } // Child program child.c #include int main() { printf("frn\n"); return 0; } Both pro