RE: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Siegfried Heintze
I figured it out. This does work after all: CLASSPATH=.\;c\:\\dev\\xalan\\xalan-j_2_7_0\\samples\\xsltcservlet.jar\;c\:\ \dev\\xalan\\xalan-j_2_7_0\\samples\\xsltcejb.jar\;c\:\\dev\\xalan\\xalan-j_ 2_7_0\\samples\\xsltcbrazil.jar\;c\:\\dev\\xalan\\xalan-j_2_7_0\\samples\\xs ltcapplet.jar\;c\:\\dev

Re: signals and read blocking - EINTR

2005-10-31 Thread Christopher Faylor
On Mon, Oct 31, 2005 at 08:49:30PM -0700, Jim Easton wrote: >I'm wondering what am I missing? Is there a flag in sigaction >or something else that I could be setting? Yes. SA_RESTART is the flag. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cy

Re: Console Setup

2005-10-31 Thread Larry Hall (Cygwin)
Rudi wrote: Hy, will there sometimes be a Setup-program available that works on the console? I would like to update or add new packages through ssh instead of Windows GUI to speedup these processes There are command line options. Below is an old pointer. I'm sure you can find more up-to-date

RE: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Igor Pechtchanski
On Mon, 31 Oct 2005, Siegfried Heintze wrote: > Thanks Igor! > > > As someone mentioned, you can use "cygpath -p" to convert a POSIX-style > > path into a Win32-style one. > > I think I need to go the other way. Given a CLASSPATH variable in > windows, how do I convert it to cygwin? Do I use ":" t

Console Setup

2005-10-31 Thread Rudi
Hy, will there sometimes be a Setup-program available that works on the console? I would like to update or add new packages through ssh instead of Windows GUI to speedup these processes -- hochachtungsvoll / best regards Rudolf Spitaler 3580 Horn, Zwettlerstrasse 1/G/1 [EMAIL PROTECTED] -- Unsu

signals and read blocking - EINTR

2005-10-31 Thread Jim Easton
Hi, Correct me if I'm wrong but it is my understanding that a signal, specifically SIGALRM, should free a blocked read request and, for example, getchar() or read(), should return an EINTR error. (viz. Interrupted system call) This happens on Solaris, sun 4, Sgi and AIX machines but apparently no

Re: Newbie: How to change $HOME path?

2005-10-31 Thread frank
You can right click "my computer" and \properties\advanced\environment variables. add HOME variable and class path there. and restart bash. That's my way Larry Hall (Cygwin) wrote: Thomas Hartmann wrote: Hi, I suppose I ask a quite obvious newbie-question, but: How can I change the $HOME

Re: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Larry Hall (Cygwin)
On 10/31/2005, Siegfried Heintze wrote: >As someone mentioned, you can use "cygpath -p" to convert a POSIX-style >> path into a Win32-style one. I think I need to go the other way. Given a CLASSPATH variable in windows, how do I convert it to cygwin? Do I use ":" to separate the elements, or do

RE: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Siegfried Heintze
Thanks Igor! > As someone mentioned, you can use "cygpath -p" to convert a POSIX-style > path into a Win32-style one. I think I need to go the other way. Given a CLASSPATH variable in windows, how do I convert it to cygwin? Do I use ":" to separate the elements, or do I use "\;". If I use ":", wh

Hang with 1.5.18, 1.5.19 snapshot 20051029

2005-10-31 Thread Peter Rehley
Hi, I have a problem where a configure script is hanging. I first saw the behavior in 1.5.18, and it's still there in the latest snapshot. The only machines that we are seeing it hang on are windows 2000 machines, sp4, with duel pentinum 933 mhz processors, and using ssh to login to the

Re: Newbie: How to change $HOME path?

2005-10-31 Thread Larry Hall (Cygwin)
Thomas Hartmann wrote: Hi, I suppose I ask a quite obvious newbie-question, but: How can I change the $HOME path? At the moment it points onto my desktop and I want to change to another directory since ".*" files are not hidden (because I tinker with my system so it displays all files...).

Re: cscope compilation error in cygwin

2005-10-31 Thread frank
Problem solved. I installed libcurses-dev package which was missing. This is different from ncurses. frank wrote: I can't find curse package in cygwin setup. but i did installed ncurses. Below is returned by cygcheck -c ncurses 5.4-2 OK thanks, Reid Thompson wro

Re: cscope compilation error in cygwin

2005-10-31 Thread frank
I can't find curse package in cygwin setup. but i did installed ncurses. Below is returned by cygcheck -c ncurses 5.4-2 OK thanks, Reid Thompson wrote: Original Message From: frank [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 1:59 PM To: cygwin@c

Re: Cygwin Fails

2005-10-31 Thread Christopher Faylor
On Mon, Oct 31, 2005 at 01:19:49PM -0600, Samvel Khalatian wrote: >Hi, > >I am using cygwin very tight since I am working with Linux system a lot. >I downloaded it's release from: > http://fsources-redhat.mirror.redwire.net/cygwin >one year ago. Installed and was enjoying working in it. Recently

Cygwin Fails

2005-10-31 Thread Samvel Khalatian
Hi, I am using cygwin very tight since I am working with Linux system a lot. I downloaded it's release from: http://fsources-redhat.mirror.redwire.net/cygwin one year ago. Installed and was enjoying working in it. Recently I had problems with my Windows System so I reinstalled it. After I dow

RE: cscope compilation error in cygwin

2005-10-31 Thread Reid Thompson
Original Message From: frank [mailto:[EMAIL PROTECTED] Sent: Monday, October 31, 2005 1:59 PM To: cygwin@cygwin.com Subject: cscope compilation error in cygwin > hi, > I try to use cscope in cygwin. My pc is win2000. the > cygwin version is > > $ cygcheck -V > cygcheck version 1.64 > Sy

cscope compilation error in cygwin

2005-10-31 Thread frank
hi, I try to use cscope in cygwin. My pc is win2000. the cygwin version is $ cygcheck -V cygcheck version 1.64 System Checker for Cygwin Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc. Compiled on Mar 1 2005 try to use cscope-15.5. Could anybody help me out? thanks in advance

Re: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Igor Pechtchanski
On Mon, 31 Oct 2005, Siegfried Heintze wrote: > Can someone help me translate this to bash? It works with CMD.EXE. java > and javac are programs for sun that are not cygwin based so I believe > they want windows style file specifications and not cygwin/bash/unix > style file specifications. > > He

sub

2005-10-31 Thread frank
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

RE: [ANNOUNCEMENT] Updated: openssl-0.9.8a-1 - core dump

2005-10-31 Thread Ralf Hauser
Hi Corinna, As per your message cited below, I am trying to use the new openssl version as follows and it core dumps: >>> openssl smime -decrypt -inkey decryptionKey.pem -in mimeMessageEncrypted.eml >>>Enter pass phrase for decryptionKey.pem: >>>Segmentation fault (core dumped) >>>What did I do w

RE: [ANNOUNCEMENT] Updated: openssl-0.9.8a-1 - core dump

2005-10-31 Thread Ralf Hauser
Hi Corinna, As per your message cited below, I am trying to use the new openssl version as follows and it core dumps: >>> openssl smime -decrypt -inkey decryptionKey.pem -in mimeMessageEncrypted.eml >>>Enter pass phrase for decryptionKey.pem: >>>Segmentation fault (core dumped) >>>What did I do w

Re: Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Wayne Willcox
If I understand your question you can convert paths to and from dos by using the cygpath command. On Mon, Oct 31, 2005 at 10:29:56AM -0700, Siegfried Heintze wrote: > Can someone help me translate this to bash? It works with CMD.EXE. java and > javac are programs for sun that are not cygwin based

Wanted: Help translating classpath from CMD.EXE to bash

2005-10-31 Thread Siegfried Heintze
Can someone help me translate this to bash? It works with CMD.EXE. java and javac are programs for sun that are not cygwin based so I believe they want windows style file specifications and not cygwin/bash/unix style file specifications. Here is the CMD.EXE script: SET CLASSPATH=.;c:\dev\xalan\xa

Newbie: How to change $HOME path?

2005-10-31 Thread Thomas Hartmann
Hi, I suppose I ask a quite obvious newbie-question, but: How can I change the $HOME path? At the moment it points onto my desktop and I want to change to another directory since ".*" files are not hidden (because I tinker with my system so it displays all files...). Cheers & Thanks, Thomas

Re: Ugly prompt with ksh

2005-10-31 Thread Igor Pechtchanski
On Mon, 31 Oct 2005, al1_24 wrote: > I would like to use ksh as shell but, if most of commands work as > desired, an ugly prompt is displayed before each line, something like > "[e]0;[EMAIL PROTECTED] [e[33m]w[e[0m]n$", until I change the PS1 value. > Is there a way to get the "[EMAIL PROTECTED] p

Re: Ugly prompt with ksh

2005-10-31 Thread Wayne Willcox
Sure change PS1 in your .profile or .kshrc file. Export it to be whatever you want it to be. Not a cygwin specific question by the way. On Mon, Oct 31, 2005 at 05:22:48PM +0100, al1_24 wrote: > I would like to use ksh as shell but, if most of commands work as > desired, an ugly prompt is displa

Ugly prompt with ksh

2005-10-31 Thread al1_24
I would like to use ksh as shell but, if most of commands work as desired, an ugly prompt is displayed before each line, something like "[e]0;[EMAIL PROTECTED] [e[33m]w[e[0m]n$", until I change the PS1 value. Is there a way to get the "[EMAIL PROTECTED] pwd $" prompt inside ksh ? -- Unsubscribe in

Re: PostgreSQL : Bad system calls

2005-10-31 Thread Alexander Gottwald
On Mon, 2005-10-31 at 10:32 -0500, Larry Hall (Cygwin) wrote: > > According to the README, I wasn't running cygserver (and > > cygserver-config). I tried doing that, but get "bad system call" > > errors anyway. You must have set server in the CYGWIN environment variable too. CYGWIN="server $CYGWI

Re: PostgreSQL : Bad system calls

2005-10-31 Thread Larry Hall (Cygwin)
Alex Goldman wrote: On 10/30/05, Larry Hall (Cygwin) <[EMAIL PROTECTED]> wrote: Alex Goldman wrote: Hi I get "Bad system call" errors, when I try to run 'initdb'. I searched the net for "cygwin" + "postgresql" + "bad system call", and saw that others are complaining about this problem too, b

Re: problem with displaying graphical chars in mc under rxvt (CYGWIN=codepage:oem didnt fix it)

2005-10-31 Thread Pavel Tsekov
On Mon, 31 Oct 2005, Brian Dessent wrote: > Pavel Tsekov wrote: > > > You can get a font with line drawing characters here: > > http://www.neuro.gatech.edu/users/cwilson/cygutils/bashprompt/luconP.zip > > This is a 404, I think Charles shut down his site in 2004. For the sake > of the archive

Re: Cygwin setup of sshd for non-administrators documentation?

2005-10-31 Thread Brian Dessent
Theo Kanter wrote: > Two often cited pages with guides for setting up sshd on Win32: > > http://pigtail.net/LRP/printsrv/cygwin-sshd.html > http://ncyoung.com/entry/389 These sites are wrong if they suggest that users must be administrators. In general we frown on sites like the above on th

Re: problem with displaying graphical chars in mc under rxvt (CYGWIN=codepage:oem didnt fix it)

2005-10-31 Thread Brian Dessent
Pavel Tsekov wrote: > You can get a font with line drawing characters here: > http://www.neuro.gatech.edu/users/cwilson/cygutils/bashprompt/luconP.zip This is a 404, I think Charles shut down his site in 2004. For the sake of the archives, you can get this at

Re: problem with displaying graphical chars in mc under rxvt (CYGWIN=codepage:oem didnt fix it)

2005-10-31 Thread Pavel Tsekov
On Sat, 29 Oct 2005, Andy Kosela wrote: > I got a problem with displaying graphical characters in mc 4.6.1-2 > under rxvt 2.7.10-6. The lines are screwed up. I tried setting > CYGWIN=codepage:oem but the problem persists. When I launch bash under > cmd.com everything is ok with mc. It only happens

Cygwin setup of sshd for non-administrators documentation?

2005-10-31 Thread Theo Kanter
The following message contains my findings regarding a working setup of Cygwin of sshd for non-administrators -- a topic I would like to see addressed in the official documentation, since no other source was found (at least via Google) with conclusive information on the subject: INTRODUCTION Two