Re: Did anyone even try?

2002-12-16 Thread Christopher Faylor
Of course I tried. I run gcc -mno-cygwin test cases before I release the software. On Sun, Dec 15, 2002 at 11:58:07PM -0800, Jim wrote: I have XP, links is not the problem... I have mingw installed, this is not the problem... I included such a simple example, yes, I broke down and subscribed

emacs 21.2-11 available

2002-12-16 Thread Joe Buehler
New GNU emacs package files are available at: http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11-src.tar.bz2 http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11.tar.bz2 http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-el/emacs-el-21.2-11.tar.bz2

Re: emacs 21.2-11 available

2002-12-16 Thread Pavel Tsekov
New GNU emacs package files are available at: http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11-src.tar.bz2 http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11.tar.bz2 http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-el/emacs-el-21.2-11.tar.bz2

Re: emacs 21.2-11 available

2002-12-16 Thread Christopher Faylor
On Tue, Dec 17, 2002 at 12:05:29AM +0100, Pavel Tsekov wrote: New GNU emacs package files are available at: http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11-src.tar.bz2 http://68.98.180.124:3000/cygwin/emacs-21.2-11/emacs-21.2-11.tar.bz2

Re: Xwinclip

2002-12-16 Thread Keith D. Tyler
John Buttery was recently quoted as saying... For the record, in case the xwinclip developers know something about the different Windows versions that would halp them debug, I've been using xwinclip in a NT 4.0 Workstation SP6a environment for a long time with zero, and I mean not even one,

ctrl-c with X11 fwd'ing

2002-12-16 Thread Matthew Bailey
I need to use X11 forwarding to help display my programs remotely from work. But, when using X11 forwarding, the ctrl-c command kills all ssh connections I have, and I must start my jobs all over again. Is there any way for me to get around this? Any config files I can edit to stop this from

Re: ctrl-c with X11 fwd'ing

2002-12-16 Thread Igor Pechtchanski
On Mon, 16 Dec 2002, Matthew Bailey wrote: I need to use X11 forwarding to help display my programs remotely from work. But, when using X11 forwarding, the ctrl-c command kills all ssh connections I have, and I must start my jobs all over again. Is there any way for me to get around this?

Re: Windows Manager

2002-12-16 Thread Martín De Marchi
Thanks Harold and Cary for the answers. I have other questions... Can I launch the remote program from a cygwin shell (cygwin.bat) or a dos shell (not a XWindows session, startxwin.bat) ? I try it in both ways and the message program: cannot connect to X sever is showed... There is any way for

Re: Xwinclip

2002-12-16 Thread John Buttery
* Keith D. Tyler [EMAIL PROTECTED] [2002-12-16 13:55:52 -0500]: ...but I heaviliy use a proprietary product which does not do normal cut and paste (from what I can tell, I don't know the details) because of the special conditions of the objects being handled. Yes, yes, we all use Windows,

Re: Minor additions to winbase.h and ntdll.def

2002-12-16 Thread Earnie Boyd
Hartmut Honisch wrote: Winbase.h - Changed NMPWAIT_WAIT_FOREVER constant from (-1) to 0x (like in Why? Microsoft's header file) - Added LOGON32_LOGON_NETWORK ntdll.def: - Added Nt-/ZwConnectPort, Nt-/ZwOpenEvent, Nt-/ZwRequestWaitReplyPort, Nt-/ZwWaitForSingleObject Looking at

Re: Minor additions to winbase.h and ntdll.def

2002-12-16 Thread Earnie Boyd
Hartmut Honisch wrote: Winbase.h - Changed NMPWAIT_WAIT_FOREVER constant from (-1) to 0x (like in Why? I have a piece of own code that passes NMPWAIT_WAIT_FOREVER as a parameter to CallNamedPipe. The compiler gave me a warning because the function prototype expected a DWORD value

security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Pierre A. Humblet
Corinna, Here are the changes to security.cc and sec_acl.cc to use well_known_creator_xxx_sid. They seem to work fine on NT4. There is peculiar effect: if a directory was created e.g. 427 by a ntsec user with uid != gid and a file is created in the directory by a Windows user with gid == uid,

Re: security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Corinna Vinschen
Hi Pierre, On Mon, Dec 16, 2002 at 10:31:16AM -0500, Pierre A. Humblet wrote: I have a question: there is code in setacl (new line 139) to merge non-default ACE's with previous default ACEs. As the acl was sorted, I don't see how that code can ever be exercised. Should we try to merge

Re: security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Pierre A. Humblet
Corinna Vinschen wrote: Hi Pierre, On Mon, Dec 16, 2002 at 10:31:16AM -0500, Pierre A. Humblet wrote: I have a question: there is code in setacl (new line 139) to merge non-default ACE's with previous default ACEs. As the acl was sorted, I don't see how that code can ever be exercised.

Re: security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Pierre A. Humblet
Pierre A. Humblet wrote: But frankly I don't understand why it happens! OK, I do now. The code is looking forward to entries that are not yet processed. Pierre

Re: security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Pierre A. Humblet
Pierre A. Humblet wrote: But frankly I don't understand why it happens! OK, I do now. The code is looking forward to entries that are not yet processed. ... and thus it may merge entries for the current owner and for the default owner (creator_owner). Ditto for groups. That's not good, I

Re: security.cc and sec_acl.cc (ntsec, inheritance and sec_acl)

2002-12-16 Thread Corinna Vinschen
On Mon, Dec 16, 2002 at 01:26:31PM -0500, Pierre A. Humblet wrote: ... and thus it may merge entries for the current owner and for the default owner (creator_owner). Ditto for groups. What? How should it? It only merges entries with the same uid/gid and with the same type (USER/GROUP). It

Re: [PATCH] to_slave pipe is full fix

2002-12-16 Thread Steve O
On Mon, Dec 16, 2002 at 10:51:14PM -0500, Christopher Faylor wrote: One more question, though. In accept_input, shouldn't ret be set to something besides 1 when there is an error writing to pipe? True. I hadn't been considering the error case. I've attached a patch for this. It's not

Re: [ANNOUNCEMENT] Updated: groff-1.18.1-1

2002-12-16 Thread Roman Belenov
Christopher Faylor [EMAIL PROTECTED] writes: I've made a new version of groff available for download. This is a refresh from the GNU web site, so it has whatever fixes are in this version. Just installed it; on my system it generates Escape codes in formatted pages and man displays them

Re: [ANNOUNCEMENT] Updated: groff-1.18.1-1

2002-12-16 Thread Roland Schwingel
Roman Belenov wrote. Christopher Faylor [EMAIL PROTECTED] writes: I've made a new version of groff available for download. This is a refresh from the GNU web site, so it has whatever fixes are in this version. Just installed it; on my system it generates Escape codes in formatted

RE: Individual vs. list-only replies (Was Re: Force bash to start as administrator)

2002-12-16 Thread Pavel Rozenboim
Just another 2 cents on the issue. I'm using MS Outlook with MS Exchange Server. Whenever I press reply on any message from this list, Outlook tryes to send the reply to sender only. It happens for everyone except messages from Christopher Faylor. It never happened for me on other mailing lists I

RE: Individual vs. list-only replies (Was Re: Force bash to startas administrator)

2002-12-16 Thread Robert Collins
On Mon, 2002-12-16 at 21:18, Pavel Rozenboim wrote: Does anyone have a suggestion how Outlook can be configured to reply to the list instead of replying to sender? Uhmm reply-to-all. Or write a macro (and ideally, GPL it :]) . Rob -- --- GPG key available at:

Re: How did I get it?

2002-12-16 Thread Robert Collins
On Sat, 2002-12-14 at 23:19, Michael Schaap wrote: And this could indeed be a virus or worm. There is at least one that includes cygwin1.dll: http://vil.mcafee.com/dispVirus.asp?virus_k=99529 I'd certainly check your PC carefully for viruses, if I were you. I wonder if they included

how to use cygwin_attach_handle_to_fd?

2002-12-16 Thread Harshavardhana Adiga
Title: Message Hi, I am new to cygwin.I am creating a windows named pipe using the normal windows api. In the cygwin documetation it is said that select call works for file descriptors,handles etc.Can I able to pass this handle directly to a select call? if no can I use

using select for named pipes

2002-12-16 Thread Harshavardhana Adiga
Title: Message Hi, I am new to cygwin.I am creating a windows named pipe using the normal windows api. In the cygwin documetation it is said that select call works for file descriptors,handles etc.Can I able to pass this handle directly to a select call? if no can I use

c problem

2002-12-16 Thread mohit batra
hi i am trying to run a c program in cygwin howevr when i run the program the printf statements output is not shown on screen . also i want to know what is the extension that must be given to c++ file in order to compile with c++ . whwn i tried to compile with C or c++ or .cpp extensions it

Cygwin License ( Query )

2002-12-16 Thread Sajad Bashir Qadri
Title: Message Hi, We have a software that runs on Windows platform .The software is a commercial one. And at its backend we want to use PostgreSQL. Since the application will be running on windows platform we need to bundle cygwin withit , to use postgreSQL. The software will not be

gawk : Input file remaining locked after program termination

2002-12-16 Thread Capiez Lionel
Hi, I have a gawk program that parses a file and spawns (as needed) an external (non-gawk) program through the 'system(...)' built-in function. If the external program remains active after gawk's termination, the file that was used as the input to gawk remains locked and can not be modified.

Re: c problem

2002-12-16 Thread Max Bowsher
mohit batra [EMAIL PROTECTED] wrote: i am trying to run a c program in cygwin howevr when i run the program the printf statements output is not shown on screen . also i want to know what is the extension that must be given to c++ file in order to compile with c++ . whwn i tried to

problem with building the gcc-mingw-3.2-20020817-1

2002-12-16 Thread James Michael DuPont
Dear list, I have tried to build the newest mingw from source, after looking at the source package from the net installer, it seems to be precompiled, and not contain any needed support files. There was no readme in the package, so next i will search the mailling list, but here is what I needed

Re: Giving up trying to get Cygwin OpenSSH3.5 to work on Win2000 Pro SP3

2002-12-16 Thread Emilio A Icaza
Max, As per your instructions, mounts are now: D:\Cygwin\bin on /usr/bin type system (binmode) D:\Cygwin\lib on /usr/lib type system (binmode) D:\Cygwin on / type system (binmode) c: on /cygdrive/c type user (textmode,noumount) d: on /cygdrive/d type user (textmode,noumount) e: on /cygdrive/e

building the gcc-3.2-3 bootstrap fails on libstdc++-v3

2002-12-16 Thread James Michael DuPont
As promised, I have started to check the releases of cygwin by bootstrapping them. This one got pretty far, all the way to libstdc++-v3. The error is : ../../../../include/getopt.h:115: declaration of C function `int getopt()' conflicts with /usr/include/sys/unistd.h:125: previous declaration

ntsec Question

2002-12-16 Thread ext-Elaine.Andrews
I have a user who wants to be able to use ssh without inputted a password. I have installed and got this running successfully. However, now there is a problem with security as anybody who logs into his laptop/desktop would be able to login to numerous UNIX servers without inputting a password.

Re: More pipe (and other) improvements in snapshot

2002-12-16 Thread Pavel Holejsovsky
20021214 snapshot seems to work ok, my testcase below does not fail any more. Thanks! Pavel [EMAIL PROTECTED] wrote: On Sat, Dec 14, 2002 at 12:37:43AM -0500, Christopher Faylor wrote: On Sat, Dec 14, 2002 at 12:27:44AM -0500, Christopher Faylor wrote: On Fri, Dec 13, 2002 at 03:48:28PM

Re: how to use cygwin_attach_handle_to_fd?

2002-12-16 Thread Christopher Faylor
Please check out the project web page for links to available information and ports: http://cygwin.com/ . If you don't see what you need there, then the cygwin mailing list is the best place to make observations or get questions answered. Information on the mailing list is available at the

RE: Individual vs. list-only replies (Was Re: Force bash to start as administrator)

2002-12-16 Thread Randall R Schulz
Hi, In Eudora CTRL-R replies and shift modifies the to originator / to all recipients mode. There is an application-wide option to control which reply mode goes with CTRL-R and which with CTRL-SHIFT-R. Randall Schulz Mountain View, CA USA At 02:19 2002-12-16, Robert Collins wrote: On Mon,

Re: building the gcc-3.2-3 bootstrap fails on libstdc++-v3

2002-12-16 Thread Christopher Faylor
On Mon, Dec 16, 2002 at 03:26:27AM -0800, James Michael DuPont wrote: As promised, I have started to check the releases of cygwin by bootstrapping them. This one got pretty far, all the way to libstdc++-v3. The error is : ../../../../include/getopt.h:115: declaration of C function `int getopt()'

RE: ntsec Question

2002-12-16 Thread Vince Hoffman
I think your confusion here comes from thinking that Cygwin controls the user login. Windows handles the login process. To change which user is logged in you will need to either log off windows then log the new user on, or use ssh Running cygwin.bat does not do anything than start an interactive

RE: Cygwin Network Programming Problem

2002-12-16 Thread Parker, Ron
-Original Message- From: Elfyn McBratney [mailto:[EMAIL PROTECTED]] snip I tried your source, looks o.k. at first glance, and it works perfectly. I tried to reproduce your problem, about 10 times, and I always got: Hello, world! Connection closed snip I did have the

RE: Did anyone even try?

2002-12-16 Thread [EMAIL PROTECTED]
Yes, I did try your example and I did have the same problem on one machine. Did you read my reply to your email? I suggested a solution that worked for me on the machine I had the trouble with (in case Chris's suggestion wasn't the obvious fix for you). Larry Original Message:

Re: Problems downloading and installing the basic package

2002-12-16 Thread Igor Pechtchanski
On Sun, 15 Dec 2002, Dmitry Epstein wrote: [CDROM installation part snipped] This is discouraged, although im not quite sure why, but it can be a pain if you need to un-install. About the cygdrive prefix this is just default and you can change where and how you access your windows drives

RE: Cygwin License ( Query )

2002-12-16 Thread [EMAIL PROTECTED]
I think http://cygwin.com/licensing.html should answer your basic questions. Larry Original Message: - From: Sajad Bashir Qadri [EMAIL PROTECTED] Date: Mon, 16 Dec 2002 19:35:05 +0530 To: [EMAIL PROTECTED] Subject: Cygwin License ( Query ) Hi, We have a software that

Re: c problem

2002-12-16 Thread [EMAIL PROTECTED]
Quite true, although the second problem looks like the age-old problem of the user not using the right compiler (g++) for the right job (C++). But it would be nice not to have to use my extensive mind-reading skills to devine the problem and provde an answer. ;-) Larry Original Message:

Re: c problem

2002-12-16 Thread Igor Pechtchanski
On Mon, 16 Dec 2002, Max Bowsher wrote: mohit batra mohit2kin at yahoo.com wrote: i am trying to run a c program in cygwin howevr when i run the program the printf statements output is not shown on screen . also i want to know what is the extension that must be given to c++ file in

RE: ntsec Question

2002-12-16 Thread [EMAIL PROTECTED]
This summary sounds good to me and should go a long way towards helping Elaine sort out the issues here. I would like to point out as well that it seems the system in question is apparently not current in terms of Cygwin software as well (or at least the password file is not). I'd recommend

[ANNOUNCEMENT] cmake-1.4.7-1

2002-12-16 Thread Bill Hoffman
CMake 1.4.7-1 is now available on Cygwin mirrors. CMake is a cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used

Re: [ANNOUNCEMENT] Updated: groff-1.18.1-1

2002-12-16 Thread Christopher Faylor
On Mon, Dec 16, 2002 at 12:38:14PM +0300, Roman Belenov wrote: Christopher Faylor [EMAIL PROTECTED] writes: I've made a new version of groff available for download. This is a refresh from the GNU web site, so it has whatever fixes are in this version. Just installed it; on my system it

Building a specific version of Cygwin

2002-12-16 Thread Tran, Jantz C
Hi, Is there any way I can get the source to specific versions of the Cygwin source (via CVS or otherwise). I'm primarily interested in being able to build 1.3.1 and 1.3.9. Thanks in advance. -Jantz -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting:

Re: Building a specific version of Cygwin

2002-12-16 Thread Igor Pechtchanski
On Mon, 16 Dec 2002, Tran, Jantz C wrote: Hi, Is there any way I can get the source to specific versions of the Cygwin source (via CVS or otherwise). I'm primarily interested in being able to build 1.3.1 and 1.3.9. Thanks in advance. -Jantz Some (unfortunately, not all) of the releases are

Re: Building a specific version of Cygwin

2002-12-16 Thread Corinna Vinschen
On Mon, Dec 16, 2002 at 09:12:50AM -0800, Tran, Jantz C wrote: Is there any way I can get the source to specific versions of the Cygwin source (via CVS or otherwise). Other than using the CVS tags? Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin

Re: Building a specific version of cygwin

2002-12-16 Thread Christopher Faylor
On Mon, Dec 16, 2002 at 12:29:55PM -0500, Igor Pechtchanski wrote: On Mon, 16 Dec 2002, Tran, Jantz C wrote: Is there any way I can get the source to specific versions of the Cygwin source (via CVS or otherwise). I'm primarily interested in being able to build 1.3.1 and 1.3.9. Thanks in advance.

Re: IBM Java 13 + JNI + Cygwin fails

2002-12-16 Thread Shankar Unni
Frank Traenkle wrote: Calling a DLL under Cygwin from IBM Java13 via JNI fails if the DLL depends on cygwin1.dll. That may be because the JNI loader looks for its libraries along the path defined by the Java property java.library.path. Do a

htdig

2002-12-16 Thread Stuardo Rodriguez
Hi ppl: I'm new to the list and to cgywin. I started with it because a client wants out aplication to run in a Windows PC... What i need is apache, postgresql and htdig I downloaded apache, and postgresql.. but i didn't find where to get htdig... Do i need to download the src and compile

free ATMEL 8051 c cross compilers - SDCC ..... any more ???

2002-12-16 Thread Karthik Bala Guru
Dear Cygwin Community, We r @ present using the KEIL Cross compiler for ATMEL 8051 in Windowz platform. I came across SDCC that supports ATMEL in Windows platform . Is there any other Free cross cross compilers for ATMEL 8051 in windowz ?? It must be free or much less than that of the KEIL

Re: gawk : Input file remaining locked after program termination

2002-12-16 Thread Peter S Tillier
- Original Message - From: Capiez Lionel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 16, 2002 1:26 PM Subject: gawk : Input file remaining locked after program termination Hi, I have a gawk program that parses a file and spawns (as needed) an external (non-gawk)

Re: [ANN] Re: cyg-wrapper.sh

2002-12-16 Thread Matt Armstrong
Luc Hermitte [EMAIL PROTECTED] writes: Hello Matt, * On Tue, Dec 10, 2002 at 09:38:02AM -0700, Matt Armstrong * [EMAIL PROTECTED] wrote: Luc, you might consider adding an option to unset the PWD environment variable (or convert it to a Windows path). That's done. I haven't done any test

Re: htdig

2002-12-16 Thread Elfyn McBratney
Hi, You will need to download the source distribution of htdig and compile it yourself. You can get the source from http://htdig.org/where.html. Hint on installing: $ cd /tmp $ wget http://www.htdig.org/files/htdig-3.1.6.tar.gz $ tar zxf htdig-3.1.6.tar.gz $ ./configure

unable to allocate heap

2002-12-16 Thread Rolf Campbell
During a lengthy build of some proprietary software today, I received this error: c:\cygwin\bin\sh.exe: *** unable to allocate heap, heap_chunk_size 0, Win32 error 0 make[1]: Leaving directory `d:/nodeloadbuild/Incremental/p4/release1.0/main/node/pload' c:\cygwin\bin\make: *** [pload] Error 2

LFTP: Cygwin and setupterm

2002-12-16 Thread Frédéric L. W. Meunier
Anybody know what's wrong ? I tried to compile LFTP 2.6.3 with ncurses 5.2-8 and got the following: /cygdrive/g/Linux/lftp/src/lftp_tinfo.cc: In function `void init_terminfo()': /cygdrive/g/Linux/lftp/src/lftp_tinfo.cc:50: implicit declaration of function `int setupterm(...)' There's the

Re: LFTP: Cygwin and setupterm

2002-12-16 Thread Larry Hall (RFK Partners, Inc)
At 11:03 PM 12/16/2002, Frédéric L. W. Meunier wrote: Anybody know what's wrong ? I tried to compile LFTP 2.6.3 with ncurses 5.2-8 and got the following: /cygdrive/g/Linux/lftp/src/lftp_tinfo.cc: In function `void init_terminfo()': /cygdrive/g/Linux/lftp/src/lftp_tinfo.cc:50: implicit declaration

RE: LFTP: Cygwin and setupterm

2002-12-16 Thread Frédéric L. W. Meunier
On Mon, 16 Dec 2002, [EMAIL PROTECTED] wrote: The setupterm() function lives in the ncurses package (/usr/include/ncurses/term.h). The problem happens in the if pre-processor clause on line 26 of lftp_tinfo.cc. I got around that by changing the order and switching an if to an elif statement

RE: LFTP: Cygwin and setupterm

2002-12-16 Thread Frédéric L. W. Meunier
On Mon, 16 Dec 2002, [EMAIL PROTECTED] wrote: May not have been the right thing to do but got past that problem. Actually I think you and Larry are right. What would happen if I had /usr/include/termcap.h from libtermcap and not ncurses ? I don't think LFTP or anything should mix headers. I

Re: LFTP: cygwin and setupterm

2002-12-16 Thread Christopher Faylor
On Tue, Dec 17, 2002 at 02:12:54AM -0300, Fr?d?ric L. W. Meunier wrote: On Mon, 16 Dec 2002, [EMAIL PROTECTED] wrote: The setupterm() function lives in the ncurses package (/usr/include/ncurses/term.h). The problem happens in the if pre-processor clause on line 26 of lftp_tinfo.cc. I got around

Upgrading Less (I think) breaks BitKeeper?

2002-12-16 Thread Javier
Hi all!! I've just done my weekly update cygwin and associated thingies routine. Today I had a fairly hefty go: less-378 cpio-2.5-1 patch-2.5.8-2 groff-1.18.1-1 gcc-mingw-20020817-3 gdb-20021215-1 and after updating, I set to changing my web site, and when I issued a simple bk citool (to check

subsrcibe

2002-12-16 Thread Nugroho Nursuwito
subscribe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: Gcc 3.2 -mno-cygwin

2002-12-16 Thread Christopher Faylor
On Mon, Dec 16, 2002 at 09:07:57PM -0800, Paul G. wrote: Redirecting this, too. On Sun, Dec 15, 2002 at 03:18:00PM -0800, Paul G. wrote: Well, if your Win32 system doesn't support links (NT4 shortcuts), this isn't really surprising. Did you actually read this email or were you just

Re: LFTP: cygwin and setupterm

2002-12-16 Thread Christopher Faylor
On Tue, Dec 17, 2002 at 12:37:45AM -0500, [EMAIL PROTECTED] wrote: Just checked on both of my servers, they symlink /usr/include/term.h with ncurses/term.h, running RedHat 6.1 and 8.0. Should cygwin/ncurses do the same? The QNX proprietary term_* functions have been deprecated in favor of

Re: LFTP: Cygwin and setupterm

2002-12-16 Thread Frédéric L. W. Meunier
On Mon, 16 Dec 2002, Larry Hall (RFK Partners, Inc) wrote: At 11:03 PM 12/16/2002, Frédéric L. W. Meunier wrote: Anybody know what's wrong ? I tried to compile LFTP 2.6.3 with ncurses 5.2-8 and got the following: /cygdrive/g/Linux/lftp/src/lftp_tinfo.cc: In function `void init_terminfo()':

Re: LFTP: Cygwin and setupterm

2002-12-16 Thread Larry Hall (RFK Partners, Inc)
At 11:46 PM 12/16/2002, Frédéric L. W. Meunier wrote: On Mon, 16 Dec 2002, Larry Hall (RFK Partners, Inc) wrote: At 11:03 PM 12/16/2002, Frédéric L. W. Meunier wrote: Anybody know what's wrong ? I tried to compile LFTP 2.6.3 with ncurses 5.2-8 and got the following:

subsrcibe

2002-12-16 Thread Nugroho Nursuwito
subscribe -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: is inetd telnet slowness fixed?

2002-12-16 Thread Danilo Turina
I had the same problem some time ago and I found that it was caused by FTP Software's InterDrive 5.0 (a NFS client). Uninstalling that product all worked flawlessly. I think that, in general, a problem like that can be caused by network drivers (possibly virtual ones) that causes broadcast or

CMake 1.4.7-1

2002-12-16 Thread William A. Hoffman
CMake 1.4.7-1 is now available on Cygwin mirrors. CMake is a cross-platform, open-source make system. CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used