1.3.12: gcc bug: variable named "end"

2002-10-18 Thread Takashi Chikayama
CYGWIN_NT-5.1 X22CHIKAYAMA 1.3.12(0.54/3/2) 2002-07-06 02:16 i686 unknown gcc 2.95.3-5 The following program causes a segmentation fault. --- int end; main() { end = 0; } --- Seems that the problem is with the variable name "end". In the object code tries to store in some invalid address. Variable

Re: vs and use of diff

2002-10-18 Thread CBFalconer
"Pierre A. Humblet" wrote: > On Fri, 18 Oct 2002, CBFalconer wrote: > > ... snip ... > > > > They don't work. The saved versions have line endings, and > > the newly created files have endings. I thought that diff > > ignored these differences as long as the files were not binary (no > > s). T

Re: vs and use of diff

2002-10-18 Thread CBFalconer
Igor Pechtchanski wrote: > On Fri, 18 Oct 2002, CBFalconer wrote: > ... snip ... > > > > I also thought that I had read somewhere that the cygwin libraries > > generated output lines, but it is obviously not so. > > mount the directory with DJPP makefiles in text mode. Then the newly > produced

Re: 1.3.12: gcc bug: variable named "end"

2002-10-18 Thread Randall R Schulz
As it has been since time immemorial in compilers with a Unix lineage or patterned after compilers of that lineage. Clearly GCC is such a compiler. The linker binds the symbol "end" to the first unused address in the linked program. Some linkers also define "etext" and "edata" to indicate the e

Re: 1.3.12: gcc bug: variable named "end"

2002-10-18 Thread Elfyn McBratney
I believe this is to do with the code and not a bug. The code you gave segfault'ed and dumped the core, on a machine close to your arc (1.3.12-4). Im not a c programmer, yet ;), but i think its to do with declaration...This works: int main() { /* declare the variable so main() can see it */ i

Re: vs and use of diff

2002-10-18 Thread Pierre A. Humblet
On Fri, 18 Oct 2002, CBFalconer wrote: > I have some makefiles used with DJGPP which perform regression and > portability tests on my software. They check things by doing a > run and then executing "diff -q" between the captured run and a > saved version. > > They don't work. The saved versions h

Re: vs and use of diff

2002-10-18 Thread Igor Pechtchanski
On Fri, 18 Oct 2002, CBFalconer wrote: > I have some makefiles used with DJGPP which perform regression and > portability tests on my software. They check things by doing a > run and then executing "diff -q" between the captured run and a > saved version. The tests are run by a .bat file, and wa

vs and use of diff

2002-10-18 Thread CBFalconer
I have some makefiles used with DJGPP which perform regression and portability tests on my software. They check things by doing a run and then executing "diff -q" between the captured run and a saved version. The tests are run by a .bat file, and want to also be runnable by a shell script. They

Re: latest cvs fork problems

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 08:09:44PM -0400, Christopher Faylor wrote: >On Fri, Oct 18, 2002 at 04:27:46PM -0400, Jason Tishler wrote: >>On Fri, Oct 18, 2002 at 03:34:39PM -0400, Christopher Faylor wrote: >>>Are you running something like cygserver that would be using shared >>>memory? >> >>No. > >Ok.

Re: latest cvs fork problems

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 04:27:46PM -0400, Jason Tishler wrote: >On Fri, Oct 18, 2002 at 03:34:39PM -0400, Christopher Faylor wrote: >>Are you running something like cygserver that would be using shared >>memory? > >No. Ok. Do you have an exim config file, then? I don't see it doing anything with

Re: latest cvs fork problems

2002-10-18 Thread Jason Tishler
Chris, On Fri, Oct 18, 2002 at 03:34:39PM -0400, Christopher Faylor wrote: > Are you running something like cygserver that would be using shared > memory? No. > I don't see why shared memory would be a problem running bash. $ uname -a CYGWIN_NT-5.0 TISHLERJASON 1.3.14s(0.62/3/2) 20021015 13:13:

Re: latest cvs fork problems

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 11:13:19AM -0400, Jason Tishler wrote: >Chris, > >On Fri, Oct 18, 2002 at 10:23:40AM -0400, Christopher Faylor wrote: >> Can you send cygcheck output as an attachment? > >See attached. Are you running something like cygserver that would be using shared memory? I don't see w

Re: latest cvs fork problems

2002-10-18 Thread Jason Tishler
Chris, On Fri, Oct 18, 2002 at 10:23:40AM -0400, Christopher Faylor wrote: > I still can't duplicate this. A binary search of the recent snapshots indicates that 2002-Oct-14 is OK but 2002-Oct-15 is not. So, I think that we can conclude that one of the following changes is the culprit: http

Fw: About ENV?

2002-10-18 Thread Francois de Campagnolle
A more practical example (if you are in GMT-2 e.g France): TZ=GMT+22 eval lastlogfile=log_'$(date +%Y%m%d)'.log FRC - Original Message - From: "James Hu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 18, 2002 5:56 PM Subject: Re: About ENV? > In article <[EMAIL

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Elfyn McBratney
Sorry, I posted this over an hour ago, and ment to say to send errors and the like to the list. Just a means of finding out who maintains the package... Elfyn - Original Message - From: Christopher Faylor <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 18, 2002 6:46 PM Su

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 05:45:16PM +0100, Elfyn McBratney wrote: >If you need to find out maintains a cygwin package, take a look for a >filename like package-version.README in /usr/doc/Cygwin. tail or read the >file, at the bottom youll see who maintains it... And, if you contact someone personal

RE: New files are being created as the wrong userid

2002-10-18 Thread Gen Zhang
Also strange is that exe's produced by gcc are not executable, but mode 666. My umask is set to 0002, but that doesn't seem to make any difference. chmod doesn't work, but I can change the permissions from the Windows properties dialog. -- Search for 'ntsec' in th

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Elfyn McBratney
If you need to find out maintains a cygwin package, take a look for a filename like package-version.README in /usr/doc/Cygwin. tail or read the file, at the bottom youll see who maintains it... Elfyn - Original Message - From: Sven Köhler <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: F

Re: About ENV?

2002-10-18 Thread James Hu
In article <[EMAIL PROTECTED]>, Huang. wrote: > Why env in cygwin work like these: I am sure this is off topic, since all UNIX shells based on Bourne shell will behave this way. This is not specific to Cygwin. > $ =aaa echo $ This syntax says: Set variable AAA to aaa in the environment

Re: Dumper.exe doesn't work with libintl2-0.11.5-1. Was: RE: Another problem using GDB

2002-10-18 Thread Charles Wilson
Rolf Campbell wrote: Found 2 matches for cygintl-2.dll. libintl2/libintl2-0.11.2-2 GNU Internationalization runtime library libintl2/libintl2-0.11.5-1 GNU Internationalization runtime library I had 0.11.5-1 installed (I reinstalled it just to be sure). It still didn't work. I tried backing ou

Re: lastest cvs fork problem

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 11:53:28AM -0500, Steve O wrote: >>On Mon, Oct 14, 2002 at 11:14:46AM -0400, Christopher Faylor wrote: >>>On Sun, Oct 13, 2002 at 10:32:23PM -0500, Steve O wrote: On Mon, Oct 14, 2002 at 03:09:50AM -, [EMAIL PROTECTED] >+wrote: > <[EMAIL PROTECTED]>: > Sorry,

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 06:39:12PM +0200, Sven K?hler wrote: >>I recently posted a *specific* message saying that I thought I'd fixed >>your *specific* problem. This was after you reported that previous >>snapshots didn't work. It wasn't in response to a specific email from >>you but, that really

Error in latest Cygwin maybe?

2002-10-18 Thread Mark Jones
I have an old install of Cygwin from last spring, and now installed the newest in a different directory (about 2 weeks ago). Everytime I opened a bash prompt, I was not getting anything loaded from my .bashrc in my new install. I looked into it today and found the cause. In /etc/profile the n

Re: lastest cvs fork problem

2002-10-18 Thread Steve O
>On Mon, Oct 14, 2002 at 11:14:46AM -0400, Christopher Faylor wrote: >>On Sun, Oct 13, 2002 at 10:32:23PM -0500, Steve O wrote: >>>On Mon, Oct 14, 2002 at 03:09:50AM -, [EMAIL PROTECTED] +wrote: <[EMAIL PROTECTED]>: Sorry, only subscribers may post. See the project web page for detai

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Sven Köhler
I recently posted a *specific* message saying that I thought I'd fixed your *specific* problem. This was after you reported that previous snapshots didn't work. It wasn't in response to a specific email from you but, that really shouldn't be necessary. that true, but i tried the 20021017 snaps

Re: About ENV?

2002-10-18 Thread Max Bowsher
Andrew DeFaria <[EMAIL PROTECTED]> wrote: > It doesn't. If "This syntax is useful for setting environment > variables for one command invocation only" then the echo command > should have echoed "aaa". Otherwise the syntax is not useful for > setting environment variables for one command invocation.

Re: Which DLL should be active?

2002-10-18 Thread Elfyn McBratney
When you run setup and install a new copy of the dll, and the dll is in use it doesn't place the new dll in the dir (c:\cygwin\bin for ex.). Instead it calls it dllname.dll.new, and replaces the files when you next reboot your machine. Elfyn - Original Message - From: CBFalconer <[EMAIL PR

Re: Which DLL should be active?

2002-10-18 Thread Igor Pechtchanski
On Fri, 18 Oct 2002, CBFalconer wrote: > I recently did a download and install while a cygwin bash window > was open. I now find the following files present: > > [2] c:\cygwin>dir bin\cygwin1.dll* > > Volume in drive C is WD30-PRI41 Serial number is 3CE4:239B > Directory of C:\cygwin\bin\c

Re: Which DLL should be active?

2002-10-18 Thread Max Bowsher
CBFalconer <[EMAIL PROTECTED]> wrote: > I recently did a download and install while a cygwin bash window > was open. I now find the following files present: > > [2] c:\cygwin>dir bin\cygwin1.dll* > > Volume in drive C is WD30-PRI41 Serial number is 3CE4:239B > Directory of C:\cygwin\bin\cy

Re: [PATCH] Re: Improving List Archive Searching

2002-10-18 Thread Igor Pechtchanski
On Fri, 18 Oct 2002, Christopher Faylor wrote: > On Fri, Oct 18, 2002 at 11:30:18AM -0400, Igor Pechtchanski wrote: > >Attached are patches to bugs.html and src/winsup/doc/how-resources.texinfo. > > Thanks. I've applied a modified version of your patch to bugs.html and > forwarded the FAQ patch t

Which DLL should be active?

2002-10-18 Thread CBFalconer
I recently did a download and install while a cygwin bash window was open. I now find the following files present: [2] c:\cygwin>dir bin\cygwin1.dll* Volume in drive C is WD30-PRI41 Serial number is 3CE4:239B Directory of C:\cygwin\bin\cygwin1.dll* 7-06-02 2:19 904,008 cygwin

Re: [PATCH] Re: Improving List Archive Searching

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 11:30:18AM -0400, Igor Pechtchanski wrote: >Attached are patches to bugs.html and >src/winsup/doc/how-resources.texinfo. Thanks. I've applied a modified version of your patch to bugs.html and forwarded the FAQ patch to the FAQ maintainer. >Oh, and they probably don't need

Re: [PATCH] Re: Improving List Archive Searching

2002-10-18 Thread Igor Pechtchanski
Doh! *bangs head on wall* It's been so long since I had to check out a new repository, I plain forgot... Thanks! Igor On Fri, 18 Oct 2002, Elfyn McBratney wrote: > Igor, the password for the cvs server is anoncvs... > > Elfyn > - Original Message - > From: Igor Pechtchanski

Re: [PATCH] Re: Improving List Archive Searching

2002-10-18 Thread Elfyn McBratney
Igor, the password for the cvs server is anoncvs... Elfyn - Original Message - From: Igor Pechtchanski <[EMAIL PROTECTED]> To: Randall R Schulz <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, October 18, 2002 4:30 PM Subject: [PATCH] Re: Improving List Archive Searching > On Tu

Re: About ENV?

2002-10-18 Thread Igor Pechtchanski
On Fri, 18 Oct 2002, Andrew DeFaria wrote: > John Vincent wrote: > > > Hi, > > > > Not quite right there ... You can preceed a command with an > > assignment, and the assigned variable is then put into the environment > > of the command that is run. Thus the command > > "echo" is run with an envir

New files are being created as the wrong userid

2002-10-18 Thread kevin birch
I'm having a problem with a recent installation of Cygwin 1.3.13. Any files that I create (directly or indirectly) are assigned to userid 3199, rather than Administrator. The id and whoami commands report that I am Administrator. Files I created before the installation are the correct userid

[PATCH] Re: Improving List Archive Searching

2002-10-18 Thread Igor Pechtchanski
On Tue, 15 Oct 2002, Randall R Schulz wrote: > Hi, > > I would like to suggest and request that "cygcheck -s" output not be > included in the body of postings to the Cygwin mailing list. Because that > output includes a list of packages, DLLs and key executables, including it > in the body of a me

Re: About ENV?

2002-10-18 Thread Andrew DeFaria
John Vincent wrote: Hi, Not quite right there ... You can preceed a command with an assignment, and the assigned variable is then put into the environment of the command that is run. Thus the command "echo" is run with an environment variable with the value . However, this does not c

Re: latest cvs fork problems

2002-10-18 Thread Jason Tishler
Chris, On Fri, Oct 18, 2002 at 10:23:40AM -0400, Christopher Faylor wrote: > Can you send cygcheck output as an attachment? See attached. Jason Cygwin Win95/NT Configuration Diagnostics Current System Time: Fri Oct 18 11:05:16 2002 Windows 2000 Professional Ver 5.0 Build 2195 Service Pack

Re: cygwin feature request - setup.exe release notes

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 03:21:45PM +0100, Max Bowsher wrote: >>Is this a bad idea? (And no, I can't send patches for this :-) > >No, its not a bad idea. When will it happen? When someone sends >patches for it! ...just distilling this down to its essence for the archives... -- Unsubscribe info:

Re: latest cvs fork problems

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 08:23:21AM -0400, Jason Tishler wrote: >Chris, > >On Thu, Oct 17, 2002 at 02:29:52PM -0400, Christopher Faylor wrote: >> On Thu, Oct 17, 2002 at 02:12:18PM -0400, Rob Napier wrote: >> >Just another datapoint. On XP SP1 + Cygwin 1.3.13-2, here's what I get >> >whenever someth

Re: Cygwin feature request - setup.exe release notes

2002-10-18 Thread Max Bowsher
Scott Prive <[EMAIL PROTECTED]> wrote: > Feature request: For SOME packages, release Notes that can be pulled > up from the installer. > > Many people run Cygwin and are not members of this list. Ideally, > people would read the mailing list before installing, and again > before upgrading. > > Thi

Re: ssh refuses to enter binmode. WinCVS problem explained? Try a snapshot!

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 08:04:25AM +0100, Mike Lerwill wrote: >I can confirm that snapshot 1.3.14s(0.62/3/2) 20021017 21:45:13 does indeed >fix this problem for me. Sob. Thank you! Thank you for trying a snapshot! I'm so happy. cgf -- Please do not send me personal email with cygwin questions.

Re: ssh refuses to enter binmode (fwd)

2002-10-18 Thread Christopher Faylor
On Fri, Oct 18, 2002 at 08:14:27AM +0200, Sven K?hler wrote: >>Why are you refusing to use the snapshot? >> >>This is very perplexing. > >you said "use a snapshot" and so i did, but you ignored me when i said, >that the latest snapshot i found didn't fix th problem. I recently posted a *specific*

Cygwin feature request - setup.exe release notes

2002-10-18 Thread Scott Prive
Feature request: For SOME packages, release Notes that can be pulled up from the installer. Many people run Cygwin and are not members of this list. Ideally, people would read the mailing list before installing, and again before upgrading. This is not the reality and human nature is difficult t

Re: Subdirectory name : release/ELFIO/ or release/elfio/

2002-10-18 Thread fergus
>> In a recent version of setup.ini the subdirectory for ELFIO >> named release/ELFIO/ became release/elfio/. Now >> (setup-timestamp: 1034885409) it's back to >> release/ELFIO/. > There was a short dicussion in cygwin-apps that week. > You can check the archive. OK. Thank you. I read it. I prefe

Re: setup trouble with "Download from Internet"

2002-10-18 Thread Max Bowsher
Laurent COGNE <[EMAIL PROTECTED]> wrote: > I'm using the "Download from Internet" facility to share the > downloaded packages with several > machines, but I'm faced with a problem I didn't figure before : when > downloading new or released > packages, the setup program (v2.249.2.5) uses the /etc/s

Re: Setup and recovering from mistakes.

2002-10-18 Thread Max Bowsher
>>> Max Bowsher wrote: >> Less than 1 sec on my P4 1.2GHz. I think you should hear disc access >> during this phase. (I can't tell - 1GB of RAM allows a lot of disc >> cache :-) ) Randall R Schulz <[EMAIL PROTECTED]> wrote: > You have got to be kidding! You must have very few packages > installed.

Re: latest cvs fork problems

2002-10-18 Thread Jason Tishler
Chris, On Thu, Oct 17, 2002 at 02:29:52PM -0400, Christopher Faylor wrote: > On Thu, Oct 17, 2002 at 02:12:18PM -0400, Rob Napier wrote: > >Just another datapoint. On XP SP1 + Cygwin 1.3.13-2, here's what I get > >whenever something tries to fork: > > > >O:\>c:\cygwin\bin\bash > >bash-2.05b$ ls >

2.0.21 sort problem with '.' position

2002-10-18 Thread George Eccles
Running NT4.0, sp6a. cygwin version: I just downloaded what I think is 1.3.1 sort version: "sort (textutils) 2.0.21" eg: run "sort +.18 -.43 +.47 <\work\time\raw" this gives error "sort: invalid option -- ." typical record from file \work\time\raw: 0:00:42lmd40: 020913.0

Re: Subdirectory name : release/ELFIO/ or release/elfio/

2002-10-18 Thread Pavel Tsekov
On Fri, 18 Oct 2002 [EMAIL PROTECTED] wrote: > In a recent version of setup.ini the subdirectory for ELFIO named > release/ELFIO/ became release/elfio/. Now (setup-timestamp: 1034885409) it's > back to release/ELFIO/. (Sorry. I just seem to notice this sort of thing, > and then I worry about it.)

1.3.13-2: problem running apache with mod_ssl FIXED

2002-10-18 Thread Jim Sproull
As you all know, this is/was a rebase issue. Should have done some more research before I posted. Thanks, Jim Sproull Using a clean Windows 2000 server machine (has never had cygwin installed on it), I installed the latest cygwin (1.3.13-2) and selected apache 1.3.24-5 an

Re: 1.3.13-2: problem running apache with mod_ssl

2002-10-18 Thread Jason Tishler
Jim, On Thu, Oct 17, 2002 at 10:59:59AM -0400, Jim Sproull wrote: > C:\cygwin\usr\sbin\httpd.exe: *** unable to remap C:\cygwin\bin\cygssl.dll to same >address as parent -- 0x1B33 > > Is this a problem with my particular setup? No. > Has anyone else noticed this behaviour? Yes. In fact,

RE: Setup and recovering from mistakes.

2002-10-18 Thread Zieg, Mark
> > > Progess [wait] > > > > How long is the "Progress [wait]" step under what > > conditions including CPU speed (mine is very slow, a 486/80)? > > Less than 1 sec on my P4 1.2GHz. I think you should hear disc access during > this phase. (I can't tell - 1GB of RAM allows a lot of disc cache :-) )

Re: About ENV?

2002-10-18 Thread John Vincent
Hi, Not quite right there ... You can preceed a command with an assignment, and the assigned variable is then put into the environment of the command that is run. Thus the command "echo" is run with an environment variable with the value . However, this does not change the shell vari

Re: rebase of apache DLLS

2002-10-18 Thread Jason Tishler
J.J., On Wed, Oct 16, 2002 at 03:19:51PM -0600, J Ekstrom wrote: > rebase ran way too fast for my liking so I tried the -v option > > It says that every single .dll was skipped because "not rebaseable". Please post your *exact* error messages. Note that I get the following: $ cd /usr/lib/a

Re: Setup and recovering from mistakes.

2002-10-18 Thread Max Bowsher
Zieg, Mark <[EMAIL PROTECTED]> wrote: Progess [wait] >>> >>> How long is the "Progress [wait]" step under what >>> conditions including CPU speed (mine is very slow, a 486/80)? >> >> Less than 1 sec on my P4 1.2GHz. I think you should hear disc access >> during this phase. (I can't tell - 1GB

RE: m4: add an option to specify an output file for stdout

2002-10-18 Thread Ralf Hauser
> -Original Message- > From: Max Bowsher [mailto:maxb@;ukf.net] > Ralf Hauser <[EMAIL PROTECTED]> wrote: > > > Otherwise, if only pipe redirection (">") is possible, the interaction > > for example with jakarta "ant" becomes very complicated. > > see http://www.seindal.dk/forum/read.php?f=

Re: File permission problems with new cygwin dll

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 03:17:11PM +1300, Ross Smith wrote: >If you take any command-line program that writes to stdout -- plain old >"hello world" will do fine -- compile it with gcc, and run it several >times with >> somefile, then you get a file containing several copies >of "hello world", as yo

bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Sven Köhler
hi! i'm using ssh.exe as my CVS_RSH from eclipse. until today, it worked fine - i would even say perfectly. but since i installed 1.3.13-2 the response from the CVS-server seems to get modified. i cannot installed 1.3.13-1 again with the setup.exe, but 1.3.12-4 works, 1.3.13-2 does not. i thin

Can't start apache-1.3.24-5 with cygwin-1.3.13-2 as a service underW2K

2002-10-18 Thread Dr. Volker Zell
Hi I get the following errors in /var/log/apache/error_log when starting apache-1.3.24-5 as a service under Win2K with latest cygwin-1.3.13-2 (of course this used to work under 1.3.12-4 :-)) [Wed Oct 16 23:28:34 2002] [alert] (22)Invalid argument: setuid: unable to change to uid: 65535 [Wed O

Re: bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Sven Köhler
We have a similar problem with WinCVS and ssh. Up to 1.3.12-4 it works but with 1.3.13-2 not. The server response and/or the ssh output seems to have changed. How can I track this problem further down ? BTW: cygwin's cvs does work with ssh, so only external non-cygwin programs seem to have probl

1.3.13-2: problem running apache with mod_ssl

2002-10-18 Thread Jim Sproull
Using a clean Windows 2000 server machine (has never had cygwin installed on it), I installed the latest cygwin (1.3.13-2) and selected apache 1.3.24-5 and mod_ssl 2.8.8-1.3.24-1. This selected openssl 0.9.6g-1 as a dependancy and the installation went smoothly (except for one problem which i'll m

Re: bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Sven Köhler
i tried http://cygwin.com/snapshots/cygwin1-20021016.dll.bz2 and copied the dll over to one in c:\cygwin\bin nothing new - the bug still exists. installed 20021017 now, same bug BTW: it's not the problems which were caused by ntsec-option, my ssh is working fine, as long as i use it from wi

Re: bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Sven Köhler
TRY A SNAPSHOT. hmmm ... i tried http://cygwin.com/snapshots/cygwin1-20021016.dll.bz2 and copied the dll over to one in c:\cygwin\bin nothing new - the bug still exists. is it easy to compile a new one from the cvs-sources? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: Cannot download cygwin-1.3.13-2

2002-10-18 Thread Igor Pechtchanski
On Thu, 17 Oct 2002, Koide Yousuke wrote: > I use cygwin setup-2.249.2.5 and tried to download > the new cygiwn-1.3.13-2.But setup displays only cygwin- > 1.3.12-4 (Now I use) and 1.3.10.So I can not download it. Some mirrors fall really behind on the latest updates. I used the following proced

Re: bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Olaf Foellinger
On Thu, Oct 17, 2002 at 04:44:55PM +0200, Sven Köhler wrote: > hi! > > i'm using ssh.exe as my CVS_RSH from eclipse. until today, it worked > fine - i would even say perfectly. > > but since i installed 1.3.13-2 the response from the CVS-server seems to > get modified. > i cannot installed 1.3.

Re: errno reset when using thread enabled gcc

2002-10-18 Thread Anurag Sharma
On Thu, 17 Oct 2002 10:09:26 -0400 (EDT) Igor Pechtchanski <[EMAIL PROTECTED]> wrote: > On Thu, 17 Oct 2002, Anurag Sharma wrote: > > > Hi All, > > > > I have come across a strange behaviour using native gcc on cygwin. I > > understand that this issue is not 100% relevant to this list, but I am >

Re: Setup and recovering from mistakes.

2002-10-18 Thread Max Bowsher
CBFalconer <[EMAIL PROTECTED]> wrote: > Max Bowsher wrote: >> There is no such option 'install from download'. Do you mean 'install >> from internet' or 'install from local directory'? > > From local. IIRC running setup only gives the three options, > including 'download'. Either of the download

Re: Setup and recovering from mistakes.

2002-10-18 Thread CBFalconer
Max Bowsher wrote: > Zieg, Mark <[EMAIL PROTECTED]> wrote: > > Progess [wait] > >>> > >>> How long is the "Progress [wait]" step under what > >>> conditions including CPU speed (mine is very slow, a 486/80)? > >> > >> Less than 1 sec on my P4 1.2GHz. I think you should hear disc access > >> d

No buffer space available

2002-10-18 Thread Vince Hoffman
Hi all, I have a strange problem here, I've had an ssh window open to a remote host pretty much all day, and about 5 minutes ago the terminal froze, fair enough I thought and opened another rxvt window to ssh in to see how much work I had lost and got this error Vince.Hoffman@JHARY ~ $ ssh [EMAIL

Re: File permission problems with new cygwin dll

2002-10-18 Thread Pavel Tsekov
On Thu, 17 Oct 2002, Christopher Faylor wrote: > On Thu, Oct 17, 2002 at 03:17:11PM +1300, Ross Smith wrote: > >If you take any command-line program that writes to stdout -- plain old > >"hello world" will do fine -- compile it with gcc, and run it several > >times with >> somefile, then you get a

ssh-agent hangs bash at logout even when started with keychain 1.9-1

2002-10-18 Thread Nathan Barham
Hello all, I'm trying to get keychain working on an NT 4.0 server. In ~/.bash_profile I have the following: keychain ~/.ssh/id_rsa . ~/.ssh-agent-${HOSTNAME} Upon starting bash (w/the desktop icon and an unmodified cygwin.bat) ssh-agent is started, I get prompted for my passphrase, the PID of

rxvt & java

2002-10-18 Thread Keith Starsmeare
I've only recently discovered java's ability to show a traceback from the dos box by pressing Ctrl-Break. Does anyone know how to get this to work using rxvt's? I tried changing a few stty settings (brkint, ignbrk, cbreak) but it always just echoes an 'i' when I hit ctrl-break. Keith -- http://uk

Re: How do I run shell?

2002-10-18 Thread James Robertson
All, I got it working, finally! Thanks for all the help. I ran "regedit" and wiped out all entries for cygwin. A fresh install of cygwin then went without a hitch. - Jim Robertson -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.ht

Re: m4: add an option to specify an output file for stdout

2002-10-18 Thread Max Bowsher
Ralf Hauser <[EMAIL PROTECTED]> wrote: > Otherwise, if only pipe redirection (">") is possible, the interaction > for example with jakarta "ant" becomes very complicated. > see http://www.seindal.dk/forum/read.php?f=2&i=76&t=76 and > and > http://www.mail-archive.com/ant-user@;jakarta.apache.org/m

Warning: Latest version of Cygwin DLL makes WinCVS (through Cygwin SSH) not work (Intern)

2002-10-18 Thread Arne-Christian.Harseth
Hi! I upgraded Cygwin yesterday (Cygwin DLL 1.3.13-2?). When I used WinCVS today through Cygwin OpenSSH I got an error message when updating a file saying 'OK unknown response'. After downgrading to 1.3.12-4 this error disappeared. We had a similar problem with a previous version of Cygwin DLL.

questions about Cygwin setup.exe. Any documentation available?

2002-10-18 Thread Ed
Is there any documentation for the cygwin setup program? THanks, Ed -- 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: Installation Problem (Can't open C:\/ftp%3a%2f%2farchive.progeny.com[...] for writing: No such file or directory)

2002-10-18 Thread CBFalconer
Eddy Boxerman wrote: > > I tried to download cygwin and do a local install. This failed, so > I uninstalled (deleted links, directories & registry entries) and > tried a direct from internet install. It seems that no matter what > options I choose, I get an error (see subject or below). > > OS: W

Re: latest cvs fork problems

2002-10-18 Thread Christopher Faylor
On Mon, Oct 14, 2002 at 11:14:46AM -0400, Christopher Faylor wrote: >On Sun, Oct 13, 2002 at 10:32:23PM -0500, Steve O wrote: >>On Mon, Oct 14, 2002 at 03:09:50AM -, [EMAIL PROTECTED] wrote: >>> <[EMAIL PROTECTED]>: >>> Sorry, only subscribers may post. See the project web page for details: >

Re: RFD: cygwin-bug mailing list/bugzilla [was Re: Bug in cvs cygwin1.dll ?]

2002-10-18 Thread Ralf Hauser
Nicholas Wourms wrote: [snip] Furthermore, if we were to establish a profile on the redhat bugzilla, I believe that bug-reporting could be streamlined and potentially provide more details. At the very least, it would mean less things for people to remeber to do. I strongly support this because

Re: About ENV?

2002-10-18 Thread Elfyn McBratney
Its just bash topology... If your setting a variable and calling a command after it, or doing anything on one line with another expression after it you need to end the expression before starting another one, which is done with the semi-colon ';'. On the first one: $ =aaa echo $ now

Re: ssh refuses to enter binmode. WinCVS problem explained? Try a snapshot!

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 05:50:09PM -0400, Andrew Greene wrote: >I upgraded to the latest cygwin this morning (not sure when I last >did) and ssh is suddenly replacing LF with CRLF. This prevents Unison >from working, along with who knows what else (I'm afraid to try CVS!) That's interesting. Cori

Upgraded to latest stuff this morning, and ssh refuses to enter binmode. Help!

2002-10-18 Thread Andrew Greene
I upgraded to the latest cygwin this morning (not sure when I last did) and ssh is suddenly replacing LF with CRLF. This prevents Unison from working, along with who knows what else (I'm afraid to try CVS!) Thanks in advance for your help and explanation!

Re: Setup and recovering from mistakes.

2002-10-18 Thread Max Bowsher
CBFalconer <[EMAIL PROTECTED]> wrote: > Max Bowsher wrote: >> >> I'm going to describe exactly how setup behaves for me. Explain >> carefully how it differs for you. >> >> Setup Splash Page [Next] >> Choose a Download Source [Install from Local Directory, Next] >> Select Root Install Directory [Ne

Re: Re: Another problem using GDB

2002-10-18 Thread [EMAIL PROTECTED]
OK, maybe I didn't say this right. Let me try again. Please treat all information as provided by the Cygwin web site as superior to information derived from other web sites when researching Cygwin. It's not necessary to use the Cygwin email archives search engine to find information on the Cyg

RE: File permission problems with new cygwin dll

2002-10-18 Thread Ross Smith
> From: Christopher Faylor [mailto:cgf@;redhat.com] > > On Thu, Oct 17, 2002 at 03:17:11PM +1300, Ross Smith wrote: > >If you take any command-line program that writes to stdout > -- plain old > >"hello world" will do fine -- compile it with gcc, and run it several > >times with >> somefile, then

Re: Can't start apache-1.3.24-5 with cygwin-1.3.13-2 as a serviceunderW2K

2002-10-18 Thread Dr. Volker Zell
> "Elfyn" == Elfyn McBratney <[EMAIL PROTECTED]> writes: Elfyn> Hi, Elfyn> This sounds like you have invalid an User directive in your httpd.conf... Elfyn> What is the User and or Group values? Elfyn> Does the user exist in /etc/passwd? Elfyn> 65535 is an awfully large uid

RE: gcc builds executables but they're not executable?

2002-10-18 Thread Rolf Campbell
Your /etc/passwd file is not valid. I fixed mine using "mkpasswd -du mywinusername > /etc/passwd", I'm not sure what the 'right thing' to do is. -Rolf > -Original Message- > From: Lane, Frank L [mailto:frank.l.lane@;boeing.com] > Sent: Thursday, October 17, 2002 7:44 PM > To: [EMAIL PRO

Re: bug introduced in cygwin 1.3.13-2

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 04:47:25PM +0200, Olaf Foellinger wrote: >On Thu, Oct 17, 2002 at 04:44:55PM +0200, Sven K?hler wrote: >> hi! >> >> i'm using ssh.exe as my CVS_RSH from eclipse. until today, it worked >> fine - i would even say perfectly. >> >> but since i installed 1.3.13-2 the response

RE: Warning: Latest version of Cygwin DLL makes WinCVS (through Cygwin SSH) not work (Intern)

2002-10-18 Thread [EMAIL PROTECTED]
For anyone reading this, please see the email archives for the same proclamation by others and the recommended solution. The results will be more useful than this warning. As for the side issue of available "downgrades", this has been discussed before on the list. It's not worth rehashing here

Re: latest cvs fork problems

2002-10-18 Thread [EMAIL PROTECTED]
Hm, seems to me the name may be scaring people off. I mean "snapshot". Sounds painful. "Snap" sounds like slap and I don't want to be slapped. "Shot" doesn't sound nice either. Too painful. How about calling it a "serene image". Sounds tranquil. Maybe even inviting! Egads, That almost sound

Re: Re: Another problem using GDB

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 08:48:12PM +0200, [EMAIL PROTECTED] wrote: >On Thu, Oct 17, 2002 at 10:06:21AM -0400, [EMAIL PROTECTED] wrote: >> I'd highly recommend thoroughly exploring the information provided at >> www.cygwin.com for answers before resorting to any "external" web site for >> Cygwin in

gcc builds executables but they're not executable?

2002-10-18 Thread Lane, Frank L
Okay, I'm trying to do some stuff with time so downloaded the gnu time command from the install site. A couple of other things also got grabbed, I think they were texinfo and fi I forget. Point being now when I build an executable it's not executable and chmod won't let me make it executable. I

Re: Can't start apache-1.3.24-5 with cygwin-1.3.13-2 as a service under W2K

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 04:29:36PM +0200, Dr. Volker Zell wrote: >Is anybody else seeing this or can provide any hints what to do ? TRY A SNAPSHOT. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://c

Re: m4: add an option to specify an output file for stdout

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 04:37:35PM +0200, Ralf Hauser wrote: >> -Original Message- >> From: Max Bowsher [mailto:maxb@;ukf.net] >> Ralf Hauser <[EMAIL PROTECTED]> wrote: >> >> > Otherwise, if only pipe redirection (">") is possible, the interaction >> > for example with jakarta "ant" become

A good question for the maintainers of binary tools for Cygwin

2002-10-18 Thread Gregg C Levine
Hello from Gregg C Levine I am having more then my usual problems with building a collection of programs. But that's not your problem fellows, this is: Does a tool exist that will convert the binary format of a VC library file, into the binary format of the libraries used by Cygwin? I am using a va

Internal Server Error when searching the mailing list

2002-10-18 Thread Igor Pechtchanski
Hi, Searching the mailing list for "make bash" (which goes to the following URL for me: http://www.cygwin.com/cgi-bin/htsearch?method=and&format=builtin-long&sort=time&config=htdig&restrict=%2Fml%2Fcygwin%2F&exclude=&words=make+bash ) results in "500 Internal Server Error"... Igor --

setup trouble with "Download from Internet"

2002-10-18 Thread Laurent COGNE
I'm using the "Download from Internet" facility to share the downloaded packages with several machines, but I'm faced with a problem I didn't figure before : when downloading new or released packages, the setup program (v2.249.2.5) uses the /etc/setup base of the machine that performs the dow

Re: Re: Another problem using GDB

2002-10-18 Thread Christopher Faylor
On Thu, Oct 17, 2002 at 10:06:21AM -0400, [EMAIL PROTECTED] wrote: >I'd highly recommend thoroughly exploring the information provided at >www.cygwin.com for answers before resorting to any "external" web site >for Cygwin information. While there may be good information on Cygwin >elsewhere, it's

  1   2   >