javac on cygwin

2003-01-04 Thread Kevin Cheng
Ok, I've searched for articles on getting a java compiler working on cygwin. I got very vague info. Can someone please give me the newbie quick setup on setting up a java compiler to work on cygwin. I've got the java JDK 1.4.1 from java.sun.com. Now what do I do?

Re: sed -i problem?

2003-01-04 Thread Bonzini
Ok, I tracked down the problem and it is because fopen is used for the file instead of ck_fopen. Alas I don't have a patch ready (a nice solution would be practically the diff from 4.0.5 to 4.0.6), but grepping for [^_]fopen.*"w and replacing fopen with ck_fopen will probably be a quick, workable

Start up tcsh window?

2003-01-04 Thread Peter Davis
Is there any way to start up a tcsh window without having to go through Bash? Thanks, -pd -- Peter Davis Funny stuff at http://www.pfdstudio.com List of resources for children's writers and illustrators at: http://www.p

RE: Start up tcsh window?

2003-01-04 Thread John Morrison
Edit your cygwin.bat file? @echo off C: chdir C:\cygwin\bin tcsh start tcsh for me. Doesn't log me in, but... I don't use tcsh. J. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf > Of Peter Davis > Sent: Saturday, 4 January 2003 1:10 pm > To: [EMAIL

Re: xinetd/ init not working for me

2003-01-04 Thread Sergey Okhapkin
OK, let's troubleshut the problem step by step. I need to find out first where the problem is, in init, initscripts or xinetd. I suspect when you run init-config you answered "yes" to overwrite an existing /etc/inittab installed by initscripts package. What are the last three lines of /etc/inittab?

Re: convert utility

2003-01-04 Thread Rui Carmo
Well, I got the December-ish CVS to compile (after fixing a few things, can't remember exactly what). Works well. R. Joshua Daniel Franklin wrote: What caused me a problem in searching, is that convert is a rather common word. From what I was told by an acquainance on a non computer list, im

Re: Minimal xserver-wm-ssh setup

2003-01-04 Thread Rui Carmo
Are you looking for a minimal list of packages required? I'm an atypical user (I have installed pretty much every available package at one time or another), but for my needs, a base cygwin install works fine after adding: - openssh - XFree (get the whole shebang while you're at it, clipboard in

Perl 5.8 status?

2003-01-04 Thread Rui Carmo
Erm... Could anyone update us on the status of Perl 5.8? It is working fine for me, with the minor annoyance of having to keep remembering to "Keep" the package while running Setup, because it offers to replace 5.8 with 5.6 every time... :) R. Gerrit P. Haase wrote: Hallo Linda, 5.8? Is

Re: Start up tcsh window?

2003-01-04 Thread Michael A Chase
On Sat, 4 Jan 2003 13:18:52 - John Morrison <[EMAIL PROTECTED]> wrote: > Edit your cygwin.bat file? > > @echo off > > C: > chdir C:\cygwin\bin > > tcsh > > start tcsh for me. Doesn't log me in, but... I don't > use tcsh. > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:

Re: javac on cygwin

2003-01-04 Thread David P. Caldwell
Kevin: >Ok, I've searched for articles on getting a java >compiler working on cygwin. I got very vague info. >I've got the java JDK 1.4.1 from java.sun.com. Now >what do I do? Not sure what your background is, so I'm not sure how to answer. Right now, you could be someone who doesn't know Java,

Re: javac on cygwin

2003-01-04 Thread Randall R Schulz
Kevin, Javac is not particularly special. It is a Windows-native program, and as such requires absolute file and directory names be provided in Windows format (forward slashes are OK, but drive letters are required and the Cygwin notion of root is completely unknown to such programs). PATH-like

FAO: cfg: defaults

2003-01-04 Thread John Morrison
> From: Christopher Faylor > On Mon, Dec 02, 2002 at 12:56:03PM -, Morrison, John wrote: > > You'd probably want something like: setup.hint: sdesc: "Conditionally move default files to proper location" category: _PostInstallLast requires: ash findutils fileutils sed sh-utils autodep: etc/def

IpcSemaphoreCreate

2003-01-04 Thread Durbar
Hi, Running Win XP I have a fresh install of CygWin on my PC, I'm trying to get up and running with PostgreSQL 7.3 but get the following $ initdb -D /usr/local/pgsql/data The database cluster will be initialized with locale C. creating directory /usr/local/pgsql/data... ok creating directory

g++, shared/static and exceptions

2003-01-04 Thread Lapo Luchini
Hi. As I said in other messages I'm "freshening" my C++ skills thanks to a university project I must do, guess what, in C++ (I passed from C to Java some years ago but now, with STL and exceptions... but that's another story). I'm using gcc 3.2 (but it must work also with 2.95), libexpat, libc

Re: FAO: cfg: defaults

2003-01-04 Thread Christopher Faylor
On Sat, Jan 04, 2003 at 04:50:41PM -, John Morrison wrote: >> From: Christopher Faylor >> On Mon, Dec 02, 2002 at 12:56:03PM -, Morrison, John wrote: >> >> You'd probably want something like: > > >setup.hint: > >sdesc: "Conditionally move default files to proper location" >category: _PostIn

Re: FAO: cfg: defaults

2003-01-04 Thread Christopher Faylor
[Redirecting to cygwin-apps] On Sat, Jan 04, 2003 at 03:17:40PM -0500, Christopher Faylor wrote: >On Sat, Jan 04, 2003 at 04:50:41PM -, John Morrison wrote: >>> From: Christopher Faylor >>> On Mon, Dec 02, 2002 at 12:56:03PM -, Morrison, John wrote: >>> >>> You'd probably want something lik

Re: javac on cygwin

2003-01-04 Thread Igor Pechtchanski
On Sat, 4 Jan 2003, David P. Caldwell wrote: > Kevin: > > >Ok, I've searched for articles on getting a java > >compiler working on cygwin. I got very vague info. > > >I've got the java JDK 1.4.1 from java.sun.com. Now > >what do I do? > > Not sure what your background is, so I'm not sure how to an

[Mostly to Charles Wilson] Upgrading Cygwin's CVS

2003-01-04 Thread Max Bowsher
In http://sources.redhat.com/ml/cygwin/2002-06/msg00754.html, Charles withdrew a test cvs-1.11.2 package, saying that some bugs had been found. I've recently compiled cvs 1.11.4 for myself, because I wanted the new rlog command. I was wondering what these bugs were, in case I might encounter them i

Re: javac on cygwin

2003-01-04 Thread Shankar Unni
Randall R Schulz wrote: Javac is not particularly special. It is a Windows-native program, and as such requires absolute file and directory names be provided in Windows format (forward slashes are OK, but drive letters are required and the Cygwin notion of root is completely unknown to such pr

Re: javac on cygwin

2003-01-04 Thread Randall R Schulz
Shankar, At 14:17 2003-01-04, Shankar Unni wrote: Randall R Schulz wrote: Javac is not particularly special. It is a Windows-native program, and as such requires absolute file and directory names be provided in Windows format (forward slashes are OK, but drive letters are required and the Cy

Re: FAO: cfg: defaults

2003-01-04 Thread Randall R Schulz
John, At 08:50 2003-01-04, John Morrison wrote: ... Please find for you perusal and review... (long links, will wrap!) Why don't you enclose all URLs in email within angle brackets instead of forcing people to reintegrate the wrapped links? Even a short URL can fall on a line wrap boundary i

Re: [Mostly to Charles Wilson] Upgrading Cygwin's CVS

2003-01-04 Thread Charles Wilson
Max Bowsher wrote: In http://sources.redhat.com/ml/cygwin/2002-06/msg00754.html, Charles withdrew a test cvs-1.11.2 package, saying that some bugs had been found. I've recently compiled cvs 1.11.4 for myself, because I wanted the new rlog command. I was wondering what these bugs were, in case I mi

Re: javac on cygwin

2003-01-04 Thread Christopher Faylor
On Sat, Jan 04, 2003 at 04:20:36PM -0800, Randall R Schulz wrote: >At 14:17 2003-01-04, Shankar Unni wrote: >>Randall R Schulz wrote: >> >>>Javac is not particularly special. It is a Windows-native program, and as >>>such requires absolute file and directory names be provided in Windows >>>format

Re: FAO: cfg: defaults

2003-01-04 Thread Christopher Faylor
On Sat, Jan 04, 2003 at 04:24:53PM -0800, Randall R Schulz wrote: >At 08:50 2003-01-04, John Morrison wrote: >>Please find for you perusal and review... (long links, will wrap!) > >Why don't you enclose all URLs in email within angle brackets instead >of forcing people to reintegrate the wrapped l

Re: FAO: cfg: defaults

2003-01-04 Thread Robert Collins
On Sun, 2003-01-05 at 12:33, Christopher Faylor wrote: > On Sat, Jan 04, 2003 at 04:24:53PM -0800, Randall R Schulz wrote: > >At 08:50 2003-01-04, John Morrison wrote: > >>Please find for you perusal and review... (long links, will wrap!) > > > >Why don't you enclose all URLs in email within angle

Re: FAO: cfg: defaults

2003-01-04 Thread Randall R Schulz
Chris, I think it's in one of the email RFCs. I remember tracking it down once during an (ill-considered) "debate" on one of the Bay Area Usenet groups. I should have made note of where I found it, but I didn't. I can find a variety of non-official mentions of this as a recommended convention u

Re: FAO: cfg: defaults

2003-01-04 Thread Christopher Faylor
On Sat, Jan 04, 2003 at 05:58:10PM -0800, Randall R Schulz wrote: >Chris, > >I think it's in one of the email RFCs. I remember tracking it down once >during an (ill-considered) "debate" on one of the Bay Area Usenet groups. > >I should have made note of where I found it, but I didn't. I can find a

Re: FAO: cfg: defaults

2003-01-04 Thread Scott W Brim
On Sun, Jan 05, 2003 12:38:25PM +1100, Robert Collins allegedly wrote: > On Sun, 2003-01-05 at 12:33, Christopher Faylor wrote: > > On Sat, Jan 04, 2003 at 04:24:53PM -0800, Randall R Schulz wrote: > > >At 08:50 2003-01-04, John Morrison wrote: > > >>Please find for you perusal and review... (long

1.3.18: slow pipe performance when cpu busy

2003-01-04 Thread David Rothenberger
I've noticed slow pipe performance when my CPU is busy running low-priority programs (e.g., SETI@home). For example, if I run: % grep keychain .profile the command completes very fast. However, when I run % cat .profile | grep keychain the command takes 6-7 seconds to complete. However, if

Re: IpcSemaphoreCreate

2003-01-04 Thread Jason Tishler
Durbar, On Sat, Jan 04, 2003 at 06:02:28PM +, Durbar wrote: > creating template1 database in /usr/local/pgsql/data/base/1... IpcSemaphoreCreate: >semget(key=1, num=17, 03600) failed: Function not implemented Do you Google? http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=IpcS

Re: 1.3.18: slow pipe performance when cpu busy

2003-01-04 Thread Randall R Schulz
David, I reported this exact same thing on Dec. 26, '02 (Subject: "Delays With Pipes In Cygwin 1.3.18"). For me having a CPU soaker going is not optional ("You have completed more work units than 99.199% of our users.", if you get my drift) and I make extensive use of pipes both explicitly and

Re: FAO: cfg: defaults

2003-01-04 Thread Randall R Schulz
Chris, I hope this isn't too far off-topic or excessive in its protractedness. If you'd like, I'll tease the cat a little and get some scratches on my arms. Anyway, I found this in RFC 1738, "Uniform Resource Locators (URL)" (, lines 1183 through 1225): -

Re: perl error messages with cygwin 1.3.18-1

2003-01-04 Thread Jeremy Hetzler
At 05:03 AM 1/2/2003 -0600, Tommy Butler wrote: Greg Matheson wrote: Further, perldoc.exe isn't rendering pages correctly since 5.8 either. For example, "$ perldoc UNIVERSAL" produces the following when run from cygwin bash (quoted text snippet indented 3 spaces.) ESC[1mNAMEESC[0m