mkdir under Win98

2001-12-09 Thread Jerome BENOIT

Bonjour:

It seems that `mkdir' behaves strngely under Win98:
1] it works fine when the command is typed onlie;
2] sometimes it doesn't work when it is used in a (bash) script.

Please note that cygwin installation is uptodate.

Any idea ?

Thanks,
Jerome BENOIT


--
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: mkdir under Win98

2001-12-09 Thread Jerome BENOIT

By checking my script, I have just realized that
the strange behaviour comes from somewhereelse:

let us assume that dummy.tar.gz is an archive file of the directory
`dummy',
if I do under Win98:
1] mkdir -p dum
2] ln -s dum dummy
3] tar -zvxf FOO/dummy.tar.gz

then the directory dum is removed.

The step 3] worked fine a few months ago.

To quickly fix it, I do:
3p] tar -kzvxf FOO/dummy.tar.gz

Did I miss something ?

Thanks inadvance,
Jerome BENOIT


Jerome BENOIT wrote:
> 
> Bonjour:
> 
> It seems that `mkdir' behaves strngely under Win98:
> 1] it works fine when the command is typed onlie;
> 2] sometimes it doesn't work when it is used in a (bash) script.
> 
> Please note that cygwin installation is uptodate.
> 
> Any idea ?
> 
> Thanks,
> Jerome BENOIT
> 
> --
> 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/

-- 
  *º¤., ¸¸,.¤º*¨¨¨*¤Jerome BENOIT, Ph.D.*º¤., ¸¸,.¤º*¨¨¨*¤
  Institute of Molecular Biology
   Friedrich-Schiller University of Jena
 Winzerlaer Strasse 10, Jena 07745, Germany
  *º¤., ¸¸,.¤º*¨¨¨*¤[EMAIL PROTECTED]*º¤., ¸¸,.¤º*¨¨¨*¤


--
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/




Reg - KVM on Nucleus RTOS

2001-12-09 Thread Neelameghan Muralidharan

Hi,

I saw you from the mailing list. Can you please let me know how long is the
duration or effort to port a kvm on to Nucleus?

Thank you,

Regards,
MD



---
Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers and
is intended for use only by the individual or entity to which it is
addressed, and may contain information that is privileged, confidential or
exempt from disclosure under applicable law. If you are not the intended
recipient or it appears that this mail has been forwarded to you without
proper authority, you are notified that any use or dissemination of this
information in any manner is strictly prohibited. In such cases, please
notify us immediately at mailto:[EMAIL PROTECTED] and delete this mail
from your records.




--
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: Problem with "perl -MExtUtils::Embed -e ldopts"

2001-12-09 Thread Gerrit P. Haase @ cygwin

Hallo Pierre,

Am 2001-12-08 um 22:28 schriebst du:

> I have a package that uses perl itself to configure a makefile to
> use perl libraries. The command and its output are
 
>> perl  -MExtUtils::Embed -e ldopts
> Note (probably harmless): No library found for -lperl
>  -s  -s -L/usr/local/lib
> /usr/lib/perl5/5.6.1/cygwin-multi/auto/DynaLoader/DynaLoader.a
> -L/usr/lib/perl5/5.6.1/cygwin-multi/CORE -lcrypt

> 3 observations:
> 1) The "harmless note" suggests that the perl library is not where expected.
>Should it be -lperl5_6_1 or is there a missing link? 
> 2) The -s causes the linker to drop the symbol table [when the command 
>output is blindly used in a makefile]. Not nice while debugging!
> 3) why list /usr/local/lib?

> While not a show stopper, can this be fixed in future releases? 
> Thanks.

1.
This is from ExtUtils::Embed::ldopts:
my $libperl;
if ($^O eq 'MSWin32') {
$libperl = $Config{libperl};
}
else {
$libperl = (grep(/^-l\w*perl\w*$/, @link_args))[0] || "-lperl";
}

It seems that it doesn't work as it should.
I have patched this for now (attached), I'll look to get this in perl
included if it is still broken in bleadperl.

$ perl  -MExtUtils::Embed -e ldopts
 -s  -s -L/usr/local/lib 
/usr/lib/perl5/5.6.1/cygwin-multi/auto/DynaLoader/DynaLoader.a 
-L/usr/lib/perl5/5.6.1/cygwin-multi/CORE -lperl5_6_1 -lcrypt

Alternative: create a symlink libperl.a -> libperl5_6_1.a

2. Cygwin Perl is built with -s flag, that strips the binaries, if you want
to have symbols in your module you will need symbols in perl, that means
you will have to rebuild perl yourself with symbols, that is: change nothing
at the source and do: ./Configure -Doptimize='-g' which turns on DEBUGGING.
(Note that Cygwin Perl is also build with '-Dmultiplicity').

I really don'y know why the '-s' flag is passed twice here.
Probable because there are several flags involved (ldflags & ccdlflags)

3. I didn't add /usr/local/lib to the linkline, it is done somewhere automagically.

You may change the values in Config.pm.
ldflags=''
then you get:
$ perl  -MExtUtils::Embed -e ldopts
 -s  /usr/lib/perl5/5.6.1/cygwin-multi/auto/DynaLoader/DynaLoader.a 
-L/usr/lib/perl5/5.6.1/cygwin-multi/CORE -lperl5_6_1 -lcrypt

ccdlflags=''
$ perl  -MExtUtils::Embed -e ldopts
  /usr/lib/perl5/5.6.1/cygwin-multi/auto/DynaLoader/DynaLoader.a 
-L/usr/lib/perl5/5.6.1/cygwin-multi/CORE -lperl5_6_1 -lcrypt

but as stated above I don't know if it is sufficient, maybe you need to
rebuild perl to get the symbols.

Ciao,

Gerrit P. Haase   mailto:[EMAIL PROTECTED]
-- 
=^..^=


Embed.patch
Description: Binary data

--
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: broken "src" archives f. cygwin-1.3.6-5.src (was: cygwin-1.3.6-5 released)

2001-12-09 Thread Gerrit P. Haase @ cygwin

Hallo Urs,

Am 2001-12-08 um 13:57 schriebst du:

> I have just tried downloading the src archives for cygwin-1.3.6-5 on
> three different mirrors and all three said that the file ends
> unexpectedly when checked with "bzip2 -t -v cygwin-1.3.6-5.src.tar.bz2"

> Is this purely a mirror issue or is it a case of the original being corrupt?

None of these two possibilities.

> ftp://mirrors.rcn.net/mirrors/sources.redhat.com/cygwin/latest/cygwin/

I fetched the same package here yesterday and installed it, and it installs ok
and is already running.

Try to fetch again (1.3.6-6 now).

Ciao,

Gerrit P. Haase @ cygwinmailto:[EMAIL PROTECTED]
-- 
=^..^=


--
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/




kill all_applications with one kill?

2001-12-09 Thread hongxun lee

Hi, possible to kill all the running processes with just one kill ?
Thanks


--
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: kill all_applications with one kill?

2001-12-09 Thread Jochen Küpper

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, 9 Dec 2001 12:33:03 -0500 hongxun lee wrote:

hongxun> Hi, possible to kill all the running processes with just one
hongxun> kill ?

shutdown -f -s

SCR,
Jochen
- -- 
Einigkeit und Recht und Freiheithttp://www.Jochen-Kuepper.de
Liberté, Égalité, FraternitéGnuPG key: 44BCCD8E
Sex, drugs and rock-n-roll
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6-cygwin-fcn-1 (Cygwin)
Comment: Processed by Mailcrypt and GnuPG 

iD8DBQE8E6YpiJ/aUUS8zY4RAihBAJ9ma+v+hSC2cJBzHC18m8R90oetJwCfXr9R
mnw3rz7fbfHr+VHKEcSfMUA=
=IQ4i
-END PGP SIGNATURE-


--
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: kill all_applications with one kill?

2001-12-09 Thread Jochen Küpper

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, 9 Dec 2001 13:04:26 -0500 hongxun lee wrote:

hongxun> Do you mean Cygwin? I believe that shutdown is not a Cygwin
hongxun> command.  Regards

Nowadays it is. Update your installation.

Greetings,
Jochen
- -- 
University of North Carolina   phone: +1-919-962-4403
Department of Chemistryphone: +1-919-962-1579
Venable Hall CB#3290 (Kenan C148)fax: +1-919-843-6041
Chapel Hill, NC 27599, USAGnuPG key: 44BCCD8E
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6-cygwin-fcn-1 (Cygwin)
Comment: Processed by Mailcrypt and GnuPG 

iD8DBQE8E6+3iJ/aUUS8zY4RAvhaAJ9YOPiiDPdZhZ/rjdlYPiAbCQg0QgCdFth5
V1M8bwWNFzFHEwLdbeX2BVM=
=9T+A
-END PGP SIGNATURE-


--
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: login and ssh: can't authenticate

2001-12-09 Thread Ryan T. Sammartino

On Sat, Dec 08, 2001 at 12:10:58PM +0100, Corinna Vinschen wrote:
> On Fri, Dec 07, 2001 at 03:46:31PM -0800, Ryan T. Sammartino wrote:
> > 
> > As you can see, sshd is running, and it does accept connections:
> > 
> >  PIDPPIDPGID WINPID  TTY  UIDSTIME COMMAND
> >  1392  11392   1392?   18 15:07:57 /usr/sbin/sshd
> > 
> > 
> > Here is my entry in /etc/passwds, somewhat censored:
> > 
> > ryans:unused_by_nt/2000/xp:18:10513:Ryan T.
> > Sammartino,U-***\ryans,S-1-5-21-***:/home/ryans:/bin/bash
> > 
> > 
> > Now, my UID is 18 so that I could get cron working
> 
> UID 18 is reserved for SYSTEM.  You can't get user authentication
> working for your account just by giving yourself uid 18.  Run sshd
> as service under LocalSystem account.  Revert your /etc/passwd to
> use UID 18 for SYSTEM.  cron needs the same setting, btw.

This is probably my ignorance of NT/W2K security coming through, but
when I run things as "LocalSystem", I can't kill them either with "kill"
(I get "Not owner") or with W2K's Task List ("Access Denied").

How do I kill processes that I've started that got "promoted" to
LocalSystem?



-- 
Ryan T. Sammartino ([EMAIL PROTECTED])
http://members.shaw.ca/ryants/
Life is like bein' on a mule team.  Unless you're the lead mule, all the
scenery looks about the same.

--
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/




inetd weirdness on w2k

2001-12-09 Thread Justin Simms

Hi. I'm experiencing a weird problem in which inetd is not serving telnetd 
and ftpd (or anything else) when started as a service, but seems to be 
working when run from the bash prompt in debug mode (/usr/sbin/inetd -d). I 
believe I've followed all the instructions for setting this up properly, the 
global CYGWIN variable is set to ntsec and cygwin1.dll is in the global path.

When inetd is run as a service two confirmation messages appear in event 
viewer, followed by a separate error for each network service specified in 
/etc/inetd.conf. There error messages in event viewer state "ftp/tcp: unknown 
service." and so on for each service.

Any advice appreciated! Thanks,

Justin

--
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/




file ownership incorretly displayed

2001-12-09 Thread Gene C. Ruzicka

it seems that file ownership is often not displayed correctly.  for example,
if
i'm user1 and i type "ls -l" in directory /home , the system says that ALL
user
directories belong to user1 .  note that user1 need NOT be an administrator.
but
cygwin seems to obey the access permissions consistent with the correct
ownership.  for example, user1 can't cd into the directory /home/user2 even
though the ls command says that that directory belongs to user1.

what explains this behavior? is it a bug or some peculiarity of the
software?






--
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/




Midnight commander

2001-12-09 Thread gahan

hey, i'm one of the cygwin-bash users, is it possible to get mc for 
cygwin? maybe someone have it or can do it?

gahan.


--
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

2001-12-09 Thread Randall R Schulz

Gahan,

As ever, SAYSF:
   .

Randall Schulz
Mountain View, CA USA


At 12:20 2001-12-09, gahan wrote:
>Hey, I'm one of the cygwin-bash users--is it possible to get mc for 
>cygwin? Maybe someone have it or can do it?
>
>gahan.


--
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: ghostscript binmode weirdness

2001-12-09 Thread Gregory W. Bond

ok - i fixed the problem in the ghostscript port - how do i go about
getting the fix back into the cygwin distro?

p.s. the link you sent me to is very clear about what the CYGWIN=binmode
achieves - however, another part of the cywin manual (the one i happened
to be reading: http://cygwin.com/cygwin-ug-net/using-textbinary.html) is
not nearly so clear which led to my confusion


> On Fri, Dec 07, 2001 at 10:43:11AM -0500, Gregory W. Bond wrote:
> > thanks for the reply larry - i realize that fixing the ghostscript port would
> > be a solution, but my impression from reading the cygwin user manual is that
> > setting CYGWIN to binmode could serve as a workaround - in my case it didn't
> > and i don't understand why - i'm beginning to suspect that cygwin is ignoring
> > that i've set CYGWIN to binmode which would be a cygwin bug
>
> That's not what the CYGWIN=binmode setting is for.
>
> http://cygwin.com/cygwin-ug-net/using-cygwinenv.html
>
> The workaround you're talking about would be to use binary mount points.
>
> Corinna
>

--
Gregory W. Bond
AT&T Labs - Research
180 Park Avenue, Rm. D273, Bldg. 103
P.O. Box 971, Florham Park, NJ, 07932-0971, USA
tel: (973) 360 7216 fax: (973) 360 8187



--
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: ghostscript binmode weirdness

2001-12-09 Thread Robert Collins

Send a patch thats contains your fix to the Ghostscript maintainer, cc'd
to cygwin-patches.

Rob
===
- Original Message -
From: "Gregory W. Bond" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, December 10, 2001 8:32 AM
Subject: Re: ghostscript binmode weirdness


> ok - i fixed the problem in the ghostscript port - how do i go about
> getting the fix back into the cygwin distro?
>
> p.s. the link you sent me to is very clear about what the
CYGWIN=binmode
> achieves - however, another part of the cywin manual (the one i
happened
> to be reading: http://cygwin.com/cygwin-ug-net/using-textbinary.html)
is
> not nearly so clear which led to my confusion
>
>
> > On Fri, Dec 07, 2001 at 10:43:11AM -0500, Gregory W. Bond wrote:
> > > thanks for the reply larry - i realize that fixing the ghostscript
port would
> > > be a solution, but my impression from reading the cygwin user
manual is that
> > > setting CYGWIN to binmode could serve as a workaround - in my case
it didn't
> > > and i don't understand why - i'm beginning to suspect that cygwin
is ignoring
> > > that i've set CYGWIN to binmode which would be a cygwin bug
> >
> > That's not what the CYGWIN=binmode setting is for.
> >
> > http://cygwin.com/cygwin-ug-net/using-cygwinenv.html
> >
> > The workaround you're talking about would be to use binary mount
points.
> >
> > Corinna
> >
>
> --
> Gregory W. Bond
> AT&T Labs - Research
> 180 Park Avenue, Rm. D273, Bldg. 103
> P.O. Box 971, Florham Park, NJ, 07932-0971, USA
> tel: (973) 360 7216 fax: (973) 360 8187
>
>
>
> --
> 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/




bunzip2 missing

2001-12-09 Thread hongxun lee

Hi, i downloaded Cygwin and set it up just now, but found that bunzip2 is
missing.
Without it, i can't install Xwin.

What i have done wrong? Thanks.


--
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: bunzip2 missing

2001-12-09 Thread Gerrit P. Haase

Hallo hongxun,

Am 2001-12-09 um 22:44 schriebst du:

> Hi, i downloaded Cygwin and set it up just now, but found that bunzip2 is
> missing.
> Without it, i can't install Xwin.

> What i have done wrong? Thanks.

It isn't installed by default, run setup.exe and click on the 'view' button
to get the full list.
bzip2 is somewhere at the beginnig, click on skip in the middle pane several
times to look which version is the latest (I have installed 1.0.1-6).

Ciao,

Gerrit P. Haasemailto:[EMAIL PROTECTED]
-- 
=^..^=


--
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/




[ANNOUNCEMENT] Updated: OpenSSH-3.0.2p1-1

2001-12-09 Thread Corinna Vinschen

I've updated the version of OpenSSH in cygwin/latest to 3.0.2p1-1.

This is mainly a bugfix release.  It solves the "OpenSSH UseLogin
Environment Variable Passing Vulnerability" as described on

http://www.securityfocus.com/bid/3614

To update your installation, click on the "Install Cygwin now" link on
the http://sources.redhat.com/cygwin web page.  This downloads setup.exe
to your system.  The, run setup and answer all of the questions.

Note that we do not allow downloads from sources.redhat.com (aka
cygwin.com) due to bandwidth limitations.  This means that you will need
to find a mirror which has this update.

In the US, ftp://mirrors.rcn.net/mirrors/sources.redhat.com/cygwin/ is a
reliable high bandwidth connection.

In Germany,
ftp://ftp.uni-erlangen.de/pub/pc/gnuwin32/cygwin/mirrors/cygnus/ is
usually pretty good.

In the UK,
http://programming.ccp14.ac.uk/ftp-mirror/programming/cygwin/pub/cygwin/
is usually up-to-date within 48 hours.

If one of the above doesn't have the latest version of this package then
you can either wait for the site to be updated or find another mirror.

If you have questions or comments, please send them to the Cygwin
mailing list at:  [EMAIL PROTECTED] .  I would appreciate
if you would use this mailing list rather than emailing me directly.
This includes ideas and comments about the setup utility or Cygwin
in general.

If you want to make a point or ask a question the Cygwin mailing list is
the appropriate place.

  *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ***

If you want to unsubscribe to the cygwin-announce mailing list, look
at the "List-Unsubscribe: " tag in the email header of this message.
Send email to the address specified there.  It will be in the format:

[EMAIL PROTECTED]

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


--
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/




services

2001-12-09 Thread Mike Rennebeck

Hello. I am sure this is a rather triviazl question, but how do you get the ftpd to 
run in 
cygwin? I checked man and it said to just type ftpd, which I tried, but it did not 
work. I 
can not find an executable file for the ftpd so I'm not sure what to do. Please help 
me out.

Mike Rennebeck




--
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: file ownership incorretly displayed

2001-12-09 Thread Larry Hall (RFK Partners, Inc)

At 03:07 PM 12/9/2001, Gene C. Ruzicka wrote:
>it seems that file ownership is often not displayed correctly.  for example,
>if
>i'm user1 and i type "ls -l" in directory /home , the system says that ALL
>user
>directories belong to user1 .  note that user1 need NOT be an administrator.
>but
>cygwin seems to obey the access permissions consistent with the correct
>ownership.  for example, user1 can't cd into the directory /home/user2 even
>though the ls command says that that directory belongs to user1.
>
>what explains this behavior? is it a bug or some peculiarity of the
>software?



You might want to review the FAQ and the User's Guide on permissions, etc.
If you still have a question then, send it to the list with details on
what you're doing, what you're seeing, what you think it wrong, and the
output of cygcheck -s -r -v.



Larry Hall  [EMAIL PROTECTED]
RFK Partners, Inc.  http://www.rfk.com
838 Washington Street   (508) 893-9779 - RFK Office
Holliston, MA 01746 (508) 893-9889 - FAX


--
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/




Makefile variable with space

2001-12-09 Thread Attila Csosz

Hi,

How can be used variable in makefile that contains spaces?

I need something like this:
MYDIR = C:\Program Files\Mydir

But when I refer to MYDIR for example as include dirs like -IMYDIR I've got
error messages.
Make don't understand (I think)that is one string "C:\Program Files\Mydir".
I tried "C:\Program Files\Mydir",
'C:\Program Files\Mydir', C:\Progra~1\Mydir but didn't help.

Thanks for any help
 Attila



--
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: Makefile variable with space

2001-12-09 Thread Jochen Küpper

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 10 Dec 2001 01:09:09 +0100 Attila Csosz wrote:

Attila> I need something like this:
Attila> MYDIR = C:\Program Files\Mydir

/cygdrive/c/Program\ Files/Mydir

Greetings,
Jochen
- -- 
Einigkeit und Recht und Freiheithttp://www.Jochen-Kuepper.de
Liberté, Égalité, FraternitéGnuPG key: 44BCCD8E
Sex, drugs and rock-n-roll
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6-cygwin-fcn-1 (Cygwin)
Comment: Processed by Mailcrypt and GnuPG 

iD8DBQE8FAeQiJ/aUUS8zY4RAu8yAJ94tPc30L5fEJKCAiG+VS+9ZsSQLwCgtSs6
lxlTJjR02nc9moB+rYj/RtY=
=oUlU
-END PGP SIGNATURE-


--
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: kill all_applications with one kill?

2001-12-09 Thread hongxun lee

I can't get 'shutdown' installed.
The 'shutdown' command should be included in the 'shutdown' package? but i
ddin't see this package among those i have downloaded this afternoon. I
checked all the mirror sites in North America, and 2 in UK, none of them
includes that package.

Another question, does Cygwin include an Ada compiler? Thanks


- Original Message -
From: "Jochen Küpper" <[EMAIL PROTECTED]>
To: "Cygwin Cygnus" <[EMAIL PROTECTED]>
Sent: Sunday, December 09, 2001 1:38 PM
Subject: Re: kill all_applications with one kill?


> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On Sun, 9 Dec 2001 13:04:26 -0500 hongxun lee wrote:
>
> hongxun> Do you mean Cygwin? I believe that shutdown is not a Cygwin
> hongxun> command.  Regards
>
> Nowadays it is. Update your installation.
>
> Greetings,
> Jochen
> - --
> University of North Carolina   phone: +1-919-962-4403
> Department of Chemistryphone: +1-919-962-1579
> Venable Hall CB#3290 (Kenan C148)fax: +1-919-843-6041
> Chapel Hill, NC 27599, USAGnuPG key: 44BCCD8E
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.0.6-cygwin-fcn-1 (Cygwin)
> Comment: Processed by Mailcrypt and GnuPG 
>
> iD8DBQE8E6+3iJ/aUUS8zY4RAvhaAJ9YOPiiDPdZhZ/rjdlYPiAbCQg0QgCdFth5
> V1M8bwWNFzFHEwLdbeX2BVM=
> =9T+A
> -END PGP SIGNATURE-
>
>
> --
> 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/




cvs pserver authentication frustration

2001-12-09 Thread Geoff Soutter

Hi there,

I've just spent a day mucking around with CVS pserver mode under cvywin
trying to get it to work. I succeeded in getting inetd set up, and getting
CVS running under it.

(I added this to inetd.conf

cvspserver stream  tcp  nowait  root/bin/cvs
cvs -f --allow-root= pserver

and I added this to C:\WINNT\system32\drivers\etc\services

cvspserver   2401/tcp)

However, I can't seem to get the authentication to work.

I always get the following message:

cvs login: authorization failed: server devserver rejected access to
 for user 

I have consulted google and the mailing list archives in order to find a
solution. I see people have asked similar questions before but never
recieved a reply.

I've tried all kinds of authentication options: for example, I tried using a
real nt user, and creating users in CVSROOT/passwd. Neither options worked,
even when I used blank passwords. The FTP server authentication works ok, so
its not my system setup, presumably.

Has anyone got CVS pserver working under cygwin? Any hints for how to get
the authentication working? Or, perhaps it's known to be broken?

Cheers

Geoff




--
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 pserver authentication frustration

2001-12-09 Thread Charles Wilson

Geoff Soutter wrote:

> I have consulted google and the mailing list archives in order to find a
> solution. I see people have asked similar questions before but never
> recieved a reply.


Not entirely true. I have replied on occaision, but I get tired of 
answering the same question over and over.  The content of those replies 
was: "I have not tested pserver functionality.  AFAIK, pserver does not 
work on cygwin.  If you manage to get it to work, please post to the 
list how you did that,including configury and patches (if needed)"

I believe that cvs in pserver server mode will have problems with 
switching user context; I have added no windows-specific code to enable 
seteuid() to work, so I wouldn't be surprised if it doesn't work. 
Patches gratefully accepted.

Or, you could get sshd working, and use CVS_RSH=ssh on the remote 
machine...and then *cvs* would be run as a local process on the 
repository host; ssh would handle the network stuff.


> I've tried all kinds of authentication options: for example, I tried using a
> real nt user, and creating users in CVSROOT/passwd. Neither options worked,
> even when I used blank passwords. The FTP server authentication works ok, so
> its not my system setup, presumably.
> 
> Has anyone got CVS pserver working under cygwin? Any hints for how to get
> the authentication working? Or, perhaps it's known to be broken?


"Known to be broken" is probably the closest description.

--Chuck



--
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/