Re: CVS and CR, LF
Which cvs do you use (cygwin?) and how do you connect to the repository? Doesn't the windows/dos cvs'es convert CRLF's to LF (or what it is ;-) When we use wincvs around here, talking to a repository-server on unix, I think it is taken care of automagically. Hmm could it be the mounts of the filesystems you edit the files on? If you mount it as textmode, cygwin cvs might just see the LF's.. /Andy / David Koski <[EMAIL PROTECTED]> wrote: | Hello, | | I have been using CVS successfully to maintain source code on a Linux based CVS | server. The files have been edited with DOS applications and have CR, LF record | terminators. The local source is on a Linux Samba share so it has been easy to -- The eye of the beholder rests on the beauty! -- 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: cygwin Digest 18 Dec 2001 13:12:55 -0000 Issue 1641
> Hmm. I am going to need something new for the > top of the cygwin web page since the company name > Cygnus is supposed to be phased out by early > January. Maybe I'll use that. > Maybe we can start transitioning away from this > UNIX compatibility scam and into the place where > there's some real money... what does this mean? Is it a joke? - Original Message - From: "Christopher Faylor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, December 22, 2001 1:18 AM Subject: Re: Fw: cygwin Digest 18 Dec 2001 13:12:55 - Issue 1641 > On Sat, Dec 22, 2001 at 01:55:17AM +0100, Stipe Tolj wrote: > >>I am having a weird problem with cygwin (1.3.6) and Internet Explorer > >>6.0 when running a bash shell. > >> > >>Internet explorer runs fine and I can surf the web, etc. However when > >>I close the last IE window, IE crashes with no real apparent error. > >>This does not occur when cygwin is running. > > > >So we may introduce Cygwin's new slogan "We make even IE more stable!" > >:)) > > Hmm. I am going to need something new for the top of the cygwin web > page since the company name Cygnus is supposed to be phased out by early > January. Maybe I'll use that. > > Maybe we can start transitioning away from this UNIX compatibility scam > and into the place where there's some real money... > > cgf > > -- > 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/ > > > > __ Einmal schenken, 12mal auspacken: Zeitschriften-Abos zu Weihnachten! http://rubriken.fireball.de/guj/ -- 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/
Cygwin Team and List members Merry Christmas Everyone !
Hi all, Being a reader of this list email I feel closeness to all you wonderful people who are doing a great job with CYGWIN. The motto I can think about cygwin is "CYGWIN : We add life to Microsoft Platform" LOL .. Fun apart, I wanted to wish everyone Happy Holidays and Merry Christmas. May God Bless everyone. Regards, Rahul _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- 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/
eg bison errors
Hello, Please point me to the appropriate group or forum for asking this question. Thank you. I'm using bison 1.28 and flex 2.5.4 for compilation. To better my understanding of Bison, I would like to see some good bison grammars that compile successfully. I particularly need help understanding yyparse, yylex, and other pertinent yy commands to successfully build a pascal-like compiler. The lexer is for the most part written. The scanner (parser) is what remains. If I can get some working examples on bison, that would help me see that my bison application is working and help me to use bison well enough to allow command line reading and writing. I have used the examples for arithmetic & leo from this university course site. The main course site: http://www.cs.colorado.edu/~main/proglang/programs/prog01.html The example files for lexer and parser: http://www.cs.colorado.edu/~main/proglang/ http://www.cs.colorado.edu/~main/proglang/examples/ By compiling downloaded the O'Reilly examples, the 'implicit declaration' error resulted. I think that the error means that the function needs to be prototyped in the bison or flex file _or_ a library file such as #include needs to be included. Here is an error that I received when I compiled ch1-05.l & ch1-05.y using Bison 1.28 under cygwin. /bfeg/egoreilly/c15> $ g++ -Wall -c -gstabs ch1-05.tab.c /usr/share/bison.simple: In function `int yyparse()': /usr/share/bison.simple:361: implicit declaration of function `int free(...)' /usr/share/bison.simple:432: implicit declaration of function `int yylex(...)' Error: /usr/share/bison.simple:361: implicit declaration of function `int free(...)' To get rid of this error, I included #include inside of the bison file. Error: /usr/share/bison.simple:432: implicit declaration of function `int yylex(...)' To get rid of this error, I think that I can prototype int yylex(); inside of the bison file. That seems to work. Error: /usr/share/bison.simple:643: warning: previous implicit declaration of `yyerror' ch1-05.y:38: warning: `yyerror' was previously implicitly declared to return `int' This one about yyerror is perplexing indeed. :) I don't understand why yyerror is having a problem right now. Do you think that I might need to include other header files or prototypes to get rid of the yyerror? I wasn't getting this error message before, but now I am. How might I fix this error? ch1-05.l:454: warning: `void yyunput(int, char *)' defined but not used /usr/lib/libfl.a(libmain.o)(.text+0xd):libmain.c: undefined reference to `yylex' collect2: ld returned 1 exit status Below is what I see at the cygwin prompt when I compile. $ flex -t ch1-05.l > ch1-05.cxx $ bison -d ch1-05.y $ gcc -Wall -gstabs -DFLEX_DEBUG ch1-05.cxx -lfl -o c1 ch1-05.l:454: warning: `void yyunput(int, char *)' defined but not used /usr/lib/libfl.a(libmain.o)(.text+0xd):libmain.c: undefined reference to `yylex' collect2: ld returned 1 exit status $ gcc -Wall -c -gstabs ch1-05.cxx ch1-05.l:454: warning: `void yyunput(int, char *)' defined but not used $ gcc -Wall -c -gstabs ch1-05.tab.c /usr/share/bison.simple: In function `yyparse': /usr/share/bison.simple:358: warning: implicit declaration of function `yyerror' ch1-05.y: At top level: ch1-05.y:31: warning: return type of `main' is not `int' ch1-05.y:38: warning: type mismatch with previous implicit declaration /usr/share/bison.simple:643: warning: previous implicit declaration of `yyerror' ch1-05.y:38: warning: `yyerror' was previously implicitly declared to return `int' $ gcc -Wall -gstabs ch1-05.tab.o ch1-05.lex.o -lfl -o c15 gcc: ch1-05.lex.o: No such file or directory = Fractal A.[EMAIL PROTECTED] __ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com -- 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: cygwin fork() rebase solution (was Re: dll_list::load_after_fork() blues ...)
Hi Jason et. al, FYI, Zope was broken under out-of-the-box Cygwin 1.3.6 because of the fork issue. The rebase solution allows Zope to work again. Many thanks, - C - Original Message - From: "Jason Tishler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 21, 2001 7:51 AM Subject: Re: cygwin fork() rebase solution (was Re: dll_list::load_after_fork() blues ...) > Chris, > > On Tue, Dec 18, 2001 at 10:28:13PM -0500, Christopher Faylor wrote: > > On Wed, Dec 19, 2001 at 08:33:50AM +1100, Robert Collins wrote: > > >Your results are enough for me Jason - I'm happy to include this in > > >setup in some form. > > > > Nice job, Jason. Thanks for following this through. > > You are very welcome. I still have more following through to do: > > 1. formal contribution of the tool (most likely to binutils) > 2. integration with setup.exe > > Jason > > -- > 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/ > > -- 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: Reincarnation of "Permission denied running programs in other directories"
Well, I made another big step in figuring this one out: First, I discovered that "/usr/i686-pc-cygwin/as.exe" is only 26 bytes in size, and "/usr/bin/zipinfo.exe" is only 20 bytes in size. I thought that was odd, so I reinstalled the "unzip" package stored my hard drive, and then ran "zipinfo". It worked just fine! When I typed "ls -l zipinfo", I noticed "zipinfo.exe" was now marked as a symlink pointing to "/usr/bin/unzip.exe", which, as I now recall, is the way it's supposed to be, right? At this point, I did a "cat /usr/i686-pc-cygwin/bin/as.exe". Look at what I found: !/usr/bin/as.exe\0 I'm going to take a wild guess here and say this file is also supposed to be a symlink, but isn't seen that way by the system. If I knew which package this particular file was located (Hint-hint, maybe a little help here someone?), I could re-install that package. Now, if someone could figure out why this symlink isn't being seen as a symlink by my system, we might make some more progress. I'm afraid I just don't know enough about unix file-system mechanics or how there implemented via Cygwin to do much about that last part. I don't know if this is relevant, but a few minutes ago, I ran my Symantec/Norton System Check program. It came back telling me that there was some kind of problem with c:\cygwin\...\X11\X.lnk. When I looked at the file's properties in the Windows File Properties Dialog Box, it was blank for both the "working directory" field and the "program" field. I thought I'd better leave it alone. I know I read somewhere that Cygwin can somehow use and/or modify standard ".lnk" files for it's own use using some kind of "trick" that lets both Windows and Cygwin use the link. I didn't understand it at the time. I don't understand it now. I don't know if this has something to do with the problem. I hope that someone can help me with this problem, and I'll try to keep this list posted (no pun intended) with any breakthroughs on my part. TTFN! = Sincerely, Aaron J. Outhier [EMAIL PROTECTED] __ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com -- 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: Midnight Commander mc-4.5.55
Hello rotaiv, you wrote: >pkgconfig-0.8.0.tar.gz >glib-1.3.11.tar.gz >mc-4.5.55.tar.gz > >1. Is it possible to install mc under cygwin? Yes, I've got 4.5.51 running here, although it's a bit wacky concerning subshell support. Compiled out of the box though. >2. Does anyone know where I can some binaries to avoid compiling it myself? I could package them together for you although I've got the mc installed in /usr/local together with other programs and might miss some files. >3. How can I tell what other packages I need to get pkgconfig and glib to >install? You only need a 1.2.x version of glib - I've got 1.2.10 IIRC and it compiled OOB although it complained about and disabled threading support. -- bye, Michael -- 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: talk(1) on WinXP -- perplexing behavior 1/2 solved
Ok...I figured out that my binding order was backwards. FYI, should anyone Need to know how to fix that problem: Right click on the "My Network Places" desktop icon. From the pop-up menu, chose Properties. From the Advanced drop down menu, choose Advanced Settings. Use the arrows on the right to change your Local Area Connection ordering. Reboot. This solved the "why do I need to disable Local Area Connection (2)" mystery. Still, I have this problem with talk(1) a) If I receive a talk request on this system from a remote system, everything seems to work fine. I can reply as specified, and talk. b) If I initiate a talk request on this system to a remote system, the remote user sees my request. I see: [No connection yet] [Waiting for your party to respond] [Ringing your party again] When he tries to reply to my request he gets the error: [No connection yet] [Unable to connect with initiator : Address already in use (48)] so, we seem to miss eachother. Thoughts welcomed. BTW, does anyone know of a secure talk, perhaps using SSH in some way? P.S. My Cygwin system is set up on a WinXP Box running ICF/ICS (Microsoft's Internet Connection Firewall and Internet Connection Sharing). The Local Area Connection (1) to the external Internet is setting its own external IP address as the "machine hosting this service on mynetwork," and it is permitting UDF 518 (ntalk) to pass thru. _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- 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: CVS and CR, LF
On 22 Dec 2001 10:15:51 +0100 Andrew Markebo <[EMAIL PROTECTED]> wrote: > Which cvs do you use (cygwin?) and how do you connect to the repository? cvs --version: Concurrent Versions System (CVS) 1.11 (Client/Server) uname -a: CYGWIN_98-4.10 PRO2 1.3.5(0.47/3/2) 2001-11-13 23:16 i686 unknown Environment CVS_RSH=ssh first. Then cvs commands are executed either from the DOS prompt or from bash. The results are the same. > Doesn't the windows/dos cvs'es convert CRLF's to LF (or what it is ;-) > When we use wincvs around here, talking to a repository-server on > unix, I think it is taken care of automagically. I suspect the CR is filtered out somewhere. They are definately in the repository. The files were created on a Samba share using the Borland IDE which produces CRLF's, before importing and commiting with a Linux client to a Linux server. Linux's CVS works perfectly and has no problem with the CR's. It is only Cygwin that has the problem with the existing repository. > Hmm could it be the mounts of the filesystems you edit the files on? > If you mount it as textmode, cygwin cvs might just see the LF's.. I will have to look into mounts. It is a default install but setting CYGWIN=binmode doesn't help. > /Andy > > / David Koski <[EMAIL PROTECTED]> wrote: > | Hello, > | > | I have been using CVS successfully to maintain source code on a Linux based CVS > | server. The files have been edited with DOS applications and have CR, LF record > | terminators. The local source is on a Linux Samba share so it has been easy to > > -- > The eye of the beholder rests on the beauty! -- 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/