RE: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Hildenbrand, Patrick
Malcolm, never gets started means that cygrunsrv does not seam to exec /usr/sbin/sshd at all (we've replaced the exec with somthing else to try this). Started with invoker, there is NO delay in starting the sshd. Just the same as for the installations with a working cygrunsrv. The long startup on

Re: how to create a new user

2002-02-12 Thread Ryan T. Sammartino
On Tue, Feb 12, 2002 at 05:26:54PM -0500, Alex BATKO wrote: > I'm not sure if you made a mistake or not, in typing the '-u' flag, > because my mkpasswd doesn't support that option. I have the latest greatest Cygwin possible (don't have version numbers in front of me at the moment), but mkpasswd -

Re: RCS 5.7 (?) + setup.exe advice

2002-02-12 Thread Dylan Cuthbert
Ah, I get it now, I had a full installation of an older version of cygwin and of course when I ran the setup program to update it doesn't automatically tell you about new packages, one of which was rcs. It isn't obvious to the average user (ie. me) to have to step through the rather large package

Best way to run SSHD, etc., on Win9x?

2002-02-12 Thread Chuck Messenger
I run some Cygwin daemons on Win98 boxes. The way I do it is to put the following shortcut in the Windows Startup folder: c:\cygwin\bin\bash.exe --rcfile /usr/local/bin/startup.sh -i Then in startup.sh, I have: /usr/sbin/sshd /usr/bin/rsync --daemon /usr/sbin/cron I could be wrong about some

RE: how to create a new user

2002-02-12 Thread Gary R. Van Sickle
> I'm not sure if you made a mistake or not, in typing the '-u' flag, > because my mkpasswd doesn't support that option. > You have an old mkpasswd. "-u,--username username only return information for the specified user" is relatively new. -- Gary R. Van Sickle Brewer. Patriot. -- Unsubscri

Re: bash 2.05a command completion spec bug

2002-02-12 Thread Christopher Faylor
On Tue, Feb 12, 2002 at 07:09:53PM -0800, David Gluss wrote: >What's a command completion spec? Given a simple testcase, I could >look into it. Jason included everything you need to duplicate the problem in his original message. I haven't actually duplicated it myself since my version of cygwin

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread David Gluss
Hmm. You're right about that. In that case I will do nothing. Of course I've always objected to that behavior...but so it is. DG - Original Message - From: "Christopher Faylor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 12, 2002 5:54 PM Subject: Re: /usr/bin/env

Re: bash 2.05a command completion spec bug

2002-02-12 Thread David Gluss
What's a command completion spec? Given a simple testcase, I could look into it. DG - Original Message - From: "Christopher Faylor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 12, 2002 6:25 PM Subject: Re: bash 2.05a command completion spec bug > On Tue, Feb 12,

Re: RCS 5.7 (?)

2002-02-12 Thread Christopher Faylor
On Wed, Feb 13, 2002 at 11:46:43AM +0900, Dylan Cuthbert wrote: >Weird - I notice that RCS 5.7 is in the setup package listing. Is this >really the case? Of course. >I have the full installation of cygwin 1.39 but the standard rcs >command set (rcs/rdiff etc) doesn't seem to exist? Cygwin 1.3.

Re: bash 2.05a command completion spec bug

2002-02-12 Thread Christopher Faylor
On Tue, Feb 12, 2002 at 09:29:28AM -0500, Jason Tishler wrote: >Command completion specs causes bash 2.05a specifically *and* Cygwin >in general to behave "poorly." By "poorly," I mean that bash becomes >unusable after attempting command completion and Cygwin cannot start >new processes: > >$ ps

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Christopher Faylor
On Tue, Feb 12, 2002 at 05:31:03PM -0800, David Gluss wrote: >The problem looks to be that bash "helps out" the system by executing >scripts beginning with #!. In the source for bash, look in >execute_cmd.c, line 3369. Only one argument is allowed. So e.g. >#!/usr/bin/env perl -w becomes "/usr/

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread David Gluss
The problem looks to be that bash "helps out" the system by executing scripts beginning with #!. In the source for bash, look in execute_cmd.c, line 3369. Only one argument is allowed. So e.g. #!/usr/bin/env perl -w becomes "/usr/bin/env" "perl -w" If I make a patch for this, should it go to th

Re: CVS with pserver: Binary files get corrupted

2002-02-12 Thread Holger Spielmann
Hi, Charles Wilson <[EMAIL PROTECTED]> writes: > Holger Spielmann wrote: > > Charles Wilson <[EMAIL PROTECTED]> writes: > >>The repository itself must be on a binary (unix) mounted drive -- > > I did mount the repository as binary, but that didn't help. > > As a system mount? Did you then resta

Too many open files

2002-02-12 Thread David Ryan
I attempted to find an answer to this online and in archives, but had no success. I have a large make file with thousands of files which failed at the linking step. On restarting the make after changing the link settings I discovered the make file halted with "Too many open files". I am runnin

/usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Chris January
> > > I use different computers where Perl is installed different > > > places, so I can't hardcode the location of perl in the shebang > > > line. Thus, I use env, which works great on all UNIXes I work on, > > > for instance > > > > > > #!/usr/bin/env perl -w > > > > > > print "This is

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread David Gluss
I think it takes a while to get used to the style of this list. Thank you for explaining what was meant by "because... we're mean". Perhaps a little forgiveness and tolerance all around would (slap)...oops, never mind... DG PS: % env foobar env: foobar: No such file or directory % env foobar -w e

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Chris January
> I use different computers where Perl is installed different > places, so I can't hardcode the location of perl in the shebang > line. Thus, I use env, which works great on all UNIXes I work on, > for instance > > #!/usr/bin/env perl -w > > print "This is Perl version $]\n"; > > but on C

Re: how to create a new user

2002-02-12 Thread Alex BATKO
+--- | On Tue, Feb 12, 2002 at 01:57:48PM -0500, Alex BATKO wrote: | > | > OK. I have a particular user who already has a windows account, | > but now i'd like to be able to allow that user (username: billy) | > to ssh into the domain controller (to be able to use cygwin). | >

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Charles Wilson
Peter J. Acklam wrote: > Christopher Faylor <[EMAIL PROTECTED]> wrote: > > >>Peter J. Acklam wrote: >> >> >>>[...] >>>why does Cygwin look for the file "perl -w". No UNIX I >>>have worked on would parse the shebang line that way. >>> >>Because... we're mean. >> > > I'm new here so I don't kn

Re: CVS with pserver: Binary files get corrupted

2002-02-12 Thread Charles Wilson
[please keep the replies on list] Holger Spielmann wrote: > Hi, > > Charles Wilson <[EMAIL PROTECTED]> writes: > >>The repository itself must be on a binary (unix) mounted drive -- >>within the conext of the service! Since you are probably starting the >>pserver daemon from inetd, which is st

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread David Gluss
I've only tried it with csh, tcsh, sh, and bash. I put that first line in with a colon to put emacs into perl-mode. It could probably be a # instead...as long as it's not #!. - Original Message - From: "Peter J. Acklam" <[EMAIL PROTECTED]> To: "David Gluss" <[EMAIL PROTECTED]> Cc: <[EMAI

cal misspells "January"

2002-02-12 Thread Paul Milazzo
cal seems to use "Janurary" instead of "January": $ cal -V cal from cygutils version 0.9.6 $ cal 1 2002 Janurary 2002 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -- Unsubscribe info: http://cygwin.com/ml/#unsubs

Re: how to create a new user

2002-02-12 Thread Ryan T. Sammartino
On Tue, Feb 12, 2002 at 01:57:48PM -0500, Alex BATKO wrote: > > OK. I have a particular user who already has a windows account, > but now i'd like to be able to allow that user (username: billy) > to ssh into the domain controller (to be able to use cygwin). > This is what I do: #! /bin/bas

Re: CVS with pserver: Binary files get corrupted

2002-02-12 Thread Charles Wilson
Holger Spielmann wrote: > Hello, > > due to company policy, I have to use Windows in my current project, so > I started using Cygwin to get a halfway decent environment. > > I successfully managed to set up a CVS pserver on Cygwin. In our > project, we want to add some JAR files to the CVS, so

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Peter J. Acklam
"David Gluss" <[EMAIL PROTECTED]> wrote: > I don't know if it's constructive to suggest an alternative trick, rather > than trying to fix cygwin, in this forum. However, this might work > for you: >> >>: # -*-Mode: perl;-*- use perl, wherever it is >>eval 'exec perl -wS $0 ${1+"$@"}'

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Peter J. Acklam
Christopher Faylor <[EMAIL PROTECTED]> wrote: > Peter J. Acklam wrote: > > > [...] > > why does Cygwin look for the file "perl -w". No UNIX I > > have worked on would parse the shebang line that way. > > Because... we're mean. I'm new here so I don't know who you are, but I hope one can expec

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread David Gluss
I don't know if it's constructive to suggest an alternative trick, rather than trying to fix cygwin, in this forum. However, this might work for you: > >: # -*-Mode: perl;-*- use perl, wherever it is >eval 'exec perl -wS $0 ${1+"$@"}' > if 0; >#!/usr/local/bin/perl -w > D

Re: shell script returning a value

2002-02-12 Thread Randall R Schulz
John, I hope this reaches you in time to solve your very urgent problem. There is nothing Cygwin-specific about this. Java.lang.Runtime.exit(int status) is available as always, and the exit status code of the Java program will be returned to its invoker just as it would if a C program or a s

shell script returning a value

2002-02-12 Thread John Albert
Hi can anyone help me. Is it possible to return a value from a shell script. I'm using a java program to execute a shell script, to that java program shell script has to return a value. - is it possible? very urgent pls tell me ur suggestions Thanks John -- Unsubscribe info: http://c

RE: a problem with search path? (was: Multiple backslashes)

2002-02-12 Thread Stephan Mueller
I'm using Windows XP. stephan(); -Original Message- From: Dmitry Bely [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 8:10 AM To: Stephan Mueller Cc: [EMAIL PROTECTED] Subject: Re: a problem with search path? (was: Multiple backslashes) "Stephan Mueller" <[EMAIL PROTECTED]>

Re: how to create a new user

2002-02-12 Thread Alex BATKO
OK. I have a particular user who already has a windows account, but now i'd like to be able to allow that user (username: billy) to ssh into the domain controller (to be able to use cygwin). What I did so far is `mkpasswd -d | grep billy >> /etc/passwd`. Then billy tries to do `ssh host_name -

Re: /usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Christopher Faylor
On Tue, Feb 12, 2002 at 07:38:21PM +0100, Peter J. Acklam wrote: >I use different computers where Perl is installed different >places, so I can't hardcode the location of perl in the shebang >line. Thus, I use env, which works great on all UNIXes I work on, >for instance > >#!/usr/bin/env per

Re: how to create a new user

2002-02-12 Thread Corinna Vinschen
On Tue, Feb 12, 2002 at 01:35:06PM -0500, Alex BATKO wrote: > > Where in the documentation on the cygwin site is there information > about how to create a new user ? Nowhere. It's in the Windows documentation. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin t

/usr/bin/env - Incorrect parsing of #! line?

2002-02-12 Thread Peter J. Acklam
I use different computers where Perl is installed different places, so I can't hardcode the location of perl in the shebang line. Thus, I use env, which works great on all UNIXes I work on, for instance #!/usr/bin/env perl -w print "This is Perl version $]\n"; but on Cygwin I get

Re: Problems linking against Mingw DLL

2002-02-12 Thread Christopher Faylor
On Tue, Feb 12, 2002 at 01:47:15PM +0100, Daniel Abad wrote: >Hello all, > >I have build a mingw DLL. Then I have build a program using functions >exported from that DLL, and linked against the import library generated by >dlltool, with no problem (not using -mno-cygwin) > >When I run the program

how to create a new user

2002-02-12 Thread Alex BATKO
Where in the documentation on the cygwin site is there information about how to create a new user ? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http

Re: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Lassi A. Tuura
> I did follow this discussion, but this one is totally unrelated as the > startup fails every time using cygrunsrv and works ok every time using > invoker AND because sshd even never gets started. sshd never gets started, or never executes? IIRC "service starts" means that it does something mag

Re: [ANNOUNCEMENT] Updated: postgresql-7.2-2

2002-02-12 Thread Jason Tishler
On Tue, Feb 12, 2002 at 08:01:56AM -0800, Rick Rankin wrote: > --- Jason Tishler <[EMAIL PROTECTED]> wrote: > > > > > > Note that this distribution will *not* function correctly with Cygwin > > 1.3.9-1. If you want to use this distribution, then you *must* upgrade > > your Cygwin DLL to a recen

Re: bash 2.05a command completion spec bug

2002-02-12 Thread Jason Tishler
Michael, On Tue, Feb 12, 2002 at 08:26:55AM -0800, Michael A Chase wrote: > Could you have a development version of cygwin1.dll somewhere in $PATH? Nope: $ which -a cygwin1.dll /usr/bin/cygwin1.dll A Windows search comes up empty too. Like I said in my previous post, the Cygwin proble

Problem with menu configuration in Cygwin

2002-02-12 Thread Jurgen Defurne
Dear lists, I send this to comp.lang.perl.tk and [EMAIL PROTECTED] because I think it is necessary for both to know the problem I have. I have isolated my problem to the following code : use strict; use warnings; use Tk; my $main; my $menu; $main = MainWindow->new; $menu = $main->Menu(-t

RE: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Hildenbrand, Patrick
Lassi, I did follow this discussion, but this one is totally unrelated as the startup fails every time using cygrunsrv and works ok every time using invoker AND because sshd even never gets started. Mit besten Grüssen, Kind regards, Patrick Hildenbrand > Patrick Hildenbrand > Operations & Te

Re: AW: problems with bash

2002-02-12 Thread morad m
My script fails randomly, some time it work at the end and some time it fails with win32 error 128, when it try to call a program or in other place script shell. I know, that creation process failed but i don't know how to resolve this pb. >From: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Su

Re: problems with bash

2002-02-12 Thread Michael A Chase
This is a general shell script debugging problem, probably not Cygwin specific. I'm a bit nervous about $a and $b not being quoted. If either is absent or empty, the effects could be unexpected. Try to eliminate some of the 2000 lines that aren't causing the problem. "set -x -v" before the if m

Re: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Luke Bakken
I specifically remember someone mentioning the "Browser" service Good Luck! On Tue, 12 Feb 2002, Lassi A. Tuura wrote: > This could be due to service start-up delays. There was discussion on > this in last October or thereabouts: exactly what other services sshd > should depend on to start re

AW: problems with bash

2002-02-12 Thread KRISTOF . DOFFING
Possible Reasons: - You made a mistake - There is a problem with your computer - other regards Kristof Doffing Lufthansa Systems Airline Services GmbH, FRA AS/N FAC, Hugo-Eckener-Ring A.8.02 60549 Frankfurt/Main Tel.: +49 69 / 696 92630 Fax : +49 69 / 696 92062 -Ursprüngliche Nachricht

Re: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Lassi A. Tuura
This could be due to service start-up delays. There was discussion on this in last October or thereabouts: exactly what other services sshd should depend on to start reliably. IIRC there were different solutions for different conditions and no universal solution; the failures were caused by TCP/

Re: unix domain socket with shared memory ?

2002-02-12 Thread Corinna Vinschen
On Tue, Feb 12, 2002 at 05:11:22PM +0100, Ralf Habacker wrote: > Excuse me, I don't understand, what do you. > Do you mean that this link would be enough and the rest of the mail is useless or >that this Power Point > presentation has so many useless pages for you ? This PP presentation is compl

RE: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Larry Hall (RFK Partners, Inc)
At 11:28 AM 2/12/2002, Hildenbrand, Patrick wrote: >just try to install the source ;-) Just did, using mirrors.rcn.net. Source is available. Clicking on "Skip" showed "Source", which should download source. Clicking "Source" showed the latest package release (0.94-2) and added a check box t

problems with bash

2002-02-12 Thread morad m
I have noticed one problem when using bash: In my script : if [ $a = $b ]; then (about 2000 lines of shell stuff here) fi Then bash fails with the following error: fork_helper: child died before initialization with win32 error 128 fork: No more processes M. Mekki ___

Re: bash 2.05a command completion spec bug

2002-02-12 Thread Michael A Chase
- Original Message - From: "Jason Tishler" <[EMAIL PROTECTED]> To: "Cygwin" <[EMAIL PROTECTED]> Sent: Tuesday, February 12, 2002 06:29 Subject: bash 2.05a command completion spec bug > Command completion specs causes bash 2.05a specifically *and* Cygwin > in general to behave "poorly."

RE: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Hildenbrand, Patrick
just try to install the source ;-) the source checkbox is showing n/a for cygrunsrv package. Maybe it's part of an other package, but if it is, I did not find it. (Though actually I did also not search extensively, as the source checkbox was marked n/a, so maybe just some bad assumption on my s

Re: cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Larry Hall (RFK Partners, Inc)
At 10:45 AM 2/12/2002, Hildenbrand, Patrick wrote: >As I do not have access to the source, is there anybody, who either has >access to the source, so we can try to find out the reason or likes to >investigate this ? I'm curious. Why don't you "have access to the source"? You realize that it is

Re: a problem with search path? (was: Multiple backslashes)

2002-02-12 Thread Dmitry Bely
"Stephan Mueller" <[EMAIL PROTECTED]> writes: > Latest everything. bash 2.05a.0(2) Cygwin DLL v 1.3.9-1. > stephan(); Just upgraded my installaton - still no success. What OS are you using? I currenly have Windows 2000 Workstation SP2 (build 2195) > > >From a bash shell: > > [~] bash -c "d:\\

RE: unix domain socket with shared memory ?

2002-02-12 Thread Ralf Habacker
> > On Tue, Feb 12, 2002 at 02:07:52PM +0100, Ralf Habacker wrote: > > http://i30www.ira.uka.de/courses/winter00-01/Prosem_LinuxInternals/4.4ipc.ppt > > [...] > > I'm somehow involved since I'm maintaining the socket code in Cygwin. > However, I will *not* read this posting since it's unreadable.

Re: a problem with search path? (was: Multiple backslashes)

2002-02-12 Thread Dmitry Bely
Randall R Schulz <[EMAIL PROTECTED]> writes: > Did you read the manual sections I referred you to? Yes. > CYGWIN=glob (withour without ":ignorecase") vs. CYGWIN=noglob _only_ > pertains when a non-Cygwin process invokes a Cygwin binary. > > Thus, "CYGWIN=[no]glob" is irrelevant when you're inv

Is window manipulation available in perl?

2002-02-12 Thread Robert Mecklenburg
First, please excuse the newbie question. I don't think this is off-topic, but my judgement isn't the one that counts. ;-) I've done a good bit of searching with google, faqs, and posting to comp.lang.perl.misc, but can't figure this out... I'm using the most recent cygwin port of perl (revision

Re: unix domain socket with shared memory ?

2002-02-12 Thread Corinna Vinschen
On Tue, Feb 12, 2002 at 02:07:52PM +0100, Ralf Habacker wrote: > http://i30www.ira.uka.de/courses/winter00-01/Prosem_LinuxInternals/4.4ipc.ppt > [...] I'm somehow involved since I'm maintaining the socket code in Cygwin. However, I will *not* read this posting since it's unreadable. How much use

Re: More security issues

2002-02-12 Thread Corinna Vinschen
On Sun, Feb 10, 2002 at 02:34:55PM -0500, Pierre A. Humblet wrote: > I wonder what the sa in CreateProcess > really does... The only thing that has an effect is the Inherit flag. MSDN documents the SD in the lpProcessAttributes/lpThreadAttributes argument being used as the SD of the called proce

cygrunsrv does not start sshd in 1 out of 40 installs

2002-02-12 Thread Hildenbrand, Patrick
Hi, we do run some 200 systems here on which we installed part of the cygwin suite to maintain our systems. On some of them, cygrunsrv will not start the sshd (for softwareversions please see below). Playing a bit with sshd, we are able to get it started and working with invoker.exe (http://www.

Cygwin 1.3.9 resource problem?

2002-02-12 Thread Kern Sibbald
Hello, I recently upgraded from cygwin 1.3.2 to cygwin 1.3.9. Now my ./configure commands fail for several of my projects almost every time. It seems to be a resource problem. I've run these configure scripts since B20 with no problem, so it is evidently something that has changed since cygwin

Re: Updated: postgresql-7.2-2

2002-02-12 Thread Jason Tishler
Heitzso, Please keep your replies on-list... On Tue, Feb 12, 2002 at 08:59:08AM -0500, Heitzso wrote: > I just upgraded cygwin, which I do on a regular basis, > and picked up the new postgresql. Some glitches ... > > no automated version upgrade of db is provided > not certain this

bash 2.05a command completion spec bug

2002-02-12 Thread Jason Tishler
Command completion specs causes bash 2.05a specifically *and* Cygwin in general to behave "poorly." By "poorly," I mean that bash becomes unusable after attempting command completion and Cygwin cannot start new processes: $ ps C:\cygwin\bin\bash.exe: *** mount table size version mismatch detecte

[ANNOUNCEMENT] Updated: postgresql-7.2-2

2002-02-12 Thread Jason Tishler
New News: === I have updated the version of PostgreSQL in cygwin/contrib to 7.2-2. The tarballs should be available on a Cygwin mirror near you shortly. The following is a summary of the changes since the previous release, 7.1.3-2: o Upgraded to version PostgreSQL 7.2. o DLLs are re

RE: unix domain socket with shared memory ?

2002-02-12 Thread Ralf Habacker
http://i30www.ira.uka.de/courses/winter00-01/Prosem_LinuxInternals/4.4ipc.ppt > > Hi all, > > > > cfg has told me about the current process of cygwin daemon > implementation with ipc support. > > > > I initial have heard last year, that this work would be started, but > because of so much other w

Re: libtool problem

2002-02-12 Thread Daniel Glassey
*sigh*, don't you just hate it when you only manage to work out what you have been doing wrong minutes after posting to a public list (old precygwinpackages aclocal files lying around) and making a fool of yourself. Thanks for being there anyway :), Daniel p.s. I don't think aclocal should loo

Re: Access '.BAT' executables via $PATH without typing '.BAT'?

2002-02-12 Thread rotaiv
At 02/11/2002 06:22 PM, Peter Nann wrote: >Is there any way to configure Cygwin so that I >can run DOS/Windows Batch files that are in my $PATH >without typing the '.bat'? You could always compile the .BAT file into a .COM file then convert the .COM to an .EXE. I just converted a batch file u

Re: libtool problem

2002-02-12 Thread Daniel Glassey
sorry, I've just noticed I was looking at the wrong cvs file and the sed stuff is the same as in libtool cvs. it's still a mystery to me why aclocal isn't picking up the LT_AC_PROG_SED macro. I get the same problem with dllhelpers-0.4.0/cxx_autotools so I know it isn't the way my project is set

Problems linking against Mingw DLL

2002-02-12 Thread Daniel Abad
Hello all, I have build a mingw DLL. Then I have build a program using functions exported from that DLL, and linked against the import library generated by dlltool, with no problem (not using -mno-cygwin) When I run the program I get an STATUS_ACCESS_VIOLATION. On the other hand, I tried to com

libtool problem

2002-02-12 Thread Daniel Glassey
Hi, I'm new to the list so I hope I haven't missed this being discussed already. I've tried libtoolizing a project with the latest libtool-devel (20020202-1), but after running configure;make it aborts with the following error. /bin/sh ../libtool --mode=compile g++ -DGLOBCONFPATH=\"/usr/local/e

Re: Multiple backslashes

2002-02-12 Thread Dmitry Bely
"Robinow, David" <[EMAIL PROTECTED]> writes: > Have you looked into the use of the XEmacs variable setq directory-sep-char? Hmm, it might really be the solution. Thank you very much for the idea. Hope to hear from you soon, Dmitry -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-

Re: ttcp successfully compiled

2002-02-12 Thread Robert Collins
=== - Original Message - From: "Stanislav Sinyagin" <[EMAIL PROTECTED]> > > Perhaps, someday someone of the Cygwin developers team > > would create a distribution package from that... > No. All the cygwin developers are saturated. YOU can create a package and have us include it though: h

ttcp successfully compiled

2002-02-12 Thread Stanislav Sinyagin
Hi all, TTCP (TCP test utility) failed to work under Cygwin, at least the version that I could find in the Net, dated Feb 27 1997 (Revision 1.12). Put this line somewhere in main(), and it fixes the error: $ diff ttcp.c ../ttcp-orig/ttcp.c 225,227d224 < < sinme.sin_family = AF_INET; <

Re: Getting crypt to work under RedHat 7.1?

2002-02-12 Thread Corinna Vinschen
On Tue, Feb 12, 2002 at 03:40:38AM -0500, Guillermo Morales wrote: > Hi, > > I just downloaded and uncompressed crypt-1.0-1.tar.gz (I found it at >http://www.carfield.com.hk/mirror/sources.redhat.com/cygwin/latest/crypt/). > > It uncompressed all the files as expected. Then I tried to run it by