Re: [chomd] does not work

2005-09-28 Thread Christian Buhtz
On Tue, 27 Sep 2005 12:28:04 -0400, Larry Hall wrote: > Understand. But how can I write an executable script? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Docume

[ANNOUNCEMENT] Updated: whois-4.7.8-1

2005-09-28 Thread Lapo Luchini
Version 4.7.8-1 of whois has been uploaded. Whois is a client for the whois directory service. It allows you to retrieve information on domains name, IP addresses, and more. If you're not sure what version do you have you can use the following command: % cygcheck -c whois Cygwin Package Informati

Subversion 1.2.3-1: Attn.: Max Bowsher: Can't checkout on Win98SE :(

2005-09-28 Thread Alexey Lyubimov
Hello Max! I have read your thread at tigris site. It seems to me that they do not want to do anything for Win98 users there :( It also seems to me, that you have not applied "your" patch (eliminating shared locking in fsfs repositories) to 1.2.3-1 Cygwin's release, have you? - I can not checkout a

Re: solution to cygwin error: Win32 error 487 bash: fork: Resource temporarily unavailable

2005-09-28 Thread PSP Blizz
On 9/27/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi, Tero, > Finally I got a solution which it works: > > rebaseall: only ash processes are allowed during rebasing > Exit all Cygwin processes and stop all Cygwin services. > Execute ash from Start/Run... or a cmd or command wind

Re: [ANNOUNCEMENT] Updated: whois-4.7.8-1

2005-09-28 Thread zzapper
On Wed, 28 Sep 2005 10:03:03 +0200, wrote: >Version 4.7.8-1 of whois has been uploaded. > >Whois is a client for the whois directory service. >It allows you to retrieve information on domains name, IP addresses, and >more. > >If you're not sure what version do you have you can use the following >

Re: Autotools\gcc: "Resource temporarily unavailable" problem

2005-09-28 Thread PSP Blizz
I've been looking at what kind of errors "Resource temporarily unavailabe" users have had. Coding the Win32 api isn't a strongpoint of mine. So I've gathered the errors here and some Microsoft Support articles here on the topics. Some seem more relavant than others. Hopefully someone smarter than

Re: a feathiable solution displaying Windows program on Linux via ssh / X?

2005-09-28 Thread Bobber Cheng
Hi, ago I use CYGWIN_NT-5.1 with gcc 3.4.4 to compile cygpeace-0.0.0. tut it failed with error: ./configure . ./make ... dll/ui.so/X11.cc: In member function `virtual HWND__* X11::GetForegroundWindow() ': dll/ui.so/

1. Problems with the installation of Haplotyper using Cygwin

2005-09-28 Thread matteo perucchini \(IAH-E\)
Hi, I'm having problems installing the program Haplotyper (http://www.people.fas.harvard.edu/~junliu/Haplo/docMain.htm) using Cygwin. I've managed to install Cygwin using Setup.exe. When I try to install Haplotyper, the software is detected by Cygwin but as soon as I start the installation the pr

Re: Strange behaviour with g++ 3.4.4-1

2005-09-28 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Andy Moreton on 9/27/2005 7:58 AM: >>> >>> #include >>> #include >>>+#undef max >>>+#undef min >>> #include >> >> > > The problem is that "windows.h" includes "windef.h" which defines the > standard macros min() and max() without chec

Re: 1. Problems with the installation of Haplotyper using Cygwin

2005-09-28 Thread Tim Prince
matteo perucchini (IAH-E) wrote: Hi, I'm having problems installing the program Haplotyper (http://www.people.fas.harvard.edu/~junliu/Haplo/docMain.htm) using Cygwin. I've managed to install Cygwin using Setup.exe. When I try to install Haplotyper, the software is detected by Cygwin but as soon

Re: 1. Problems with the installation of Haplotyper using Cygwin

2005-09-28 Thread Igor Pechtchanski
On Wed, 28 Sep 2005, matteo perucchini (IAH-E) wrote: > Hi, > > I'm having problems installing the program Haplotyper > (http://www.people.fas.harvard.edu/~junliu/Haplo/docMain.htm) using > Cygwin. I've managed to install Cygwin using Setup.exe. When I try to > install Haplotyper, the software is

workaround for fork problems?

2005-09-28 Thread Christopher Faylor
Corinna and I have been looking into the reported problems with fork ("file not found", "died waiting for longjmp", and others) for a while now but have been unable to come up with a cygwin-specific solution. Microsoft, on the other hand, seems to have a fix: http://support.microsoft.com/default.

Re: [chomd] does not work

2005-09-28 Thread Larry Hall
At 03:25 AM 9/28/2005, you wrote: >On Tue, 27 Sep 2005 12:28:04 -0400, Larry Hall wrote: >> > >Understand. But how can I write an executable script? The answer to that question depends on your configuration. Please read and follow the pr

Compiling Apache2 under Cygwin with .so support

2005-09-28 Thread Tod
I'm trying to compile Apache 2.0.54 under Cygwin. I do this because I like to keep the same configuration and file system organization to make my build as portable as possbile under the different Unices I work with. I like to compile apache with DSO support and all modules as shared objects.

make and nmake

2005-09-28 Thread Mark Beckwith
Hi, I'm trying to launch MS's nmake from a Makefile that was launched by make. Here's the basic rules: NMakefile : src.pro qmake -o NMakefile src.pro dll: NMakefile $(shell nmake /f NMakefile) when I run "make dll" from the prompt, the nmake command runs and works, but there are no c

Re: Strange behaviour with g++ 3.4.4-1

2005-09-28 Thread Larry Hall
At 08:45 AM 9/28/2005, you wrote: >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >According to Andy Moreton on 9/27/2005 7:58 AM: #include #include +#undef max +#undef min #include >>> >>> >> >> The problem is that "windows.h" includes "windef.h" which defines the

Re: make and nmake

2005-09-28 Thread Warren Young
Mark Beckwith wrote: dll: NMakefile $(shell nmake /f NMakefile) Why do you need to use $(shell)? You can call an external program directly from within a build rule. $(shell) is for instances where you need to capture the output of an external program into a variable, or something like

Re: Strange behaviour with g++ 3.4.4-1

2005-09-28 Thread Charles Wilson
Larry Hall wrote: At 08:45 AM 9/28/2005, you wrote: The correct fix, in my opinion, would be to update windef.h to not define min and max if __cplusplus is defined, since C++ is much less forgiving of min and max being macros in the first place (in other words, min and max as macros only works

Re: make and nmake

2005-09-28 Thread Mark Beckwith
On Wed, Sep 28, 2005 at 09:08:56AM -0600, Warren Young wrote: > Mark Beckwith wrote: > > > >dll: NMakefile > >$(shell nmake /f NMakefile) > > Why do you need to use $(shell)? You can call an external program > directly from within a build rule. $(shell) is for instances where you > need to

Exec and parent environment

2005-09-28 Thread Joey Mukherjee
I am having a problem with some Cygwin compiled programs and am hoping for some advice. I have a menu program which is started from the Desktop by its icon. In this menu program, I modify the environment for any child programs that it launches. This works great until the child program launch

cygblas.dll not found (lapack)

2005-09-28 Thread Andrew Schulman
I'm trying to run orpie in Cygwin. When I start it, a window pops up saying "cygblas.dll not found". orpie requires gsl, which requires lapack, which includes /usr/lib/lapack/cygblas.dll. All of these packages are installed on my host, and I do have /usr/lib/lapack/cygblas.dll. The problem seem

Re: cygblas.dll not found (lapack)

2005-09-28 Thread James R. Phillips
>(2) lapack makes some other provision for finding cygblas.dll, but it >isn't working for me. This is the right choice. lapack installs /etc/profile.d/lapack.sh, which does what you want; putting /usr/lib/lapack in your path. The default /etc/profile executes all scripts in /etc/profile.d when y

Re: cygblas.dll not found (lapack)

2005-09-28 Thread Andrew Schulman
> >(2) lapack makes some other provision for finding cygblas.dll, but it > >isn't working for me. > > This is the right choice. lapack installs /etc/profile.d/lapack.sh, which > does > what you want; putting /usr/lib/lapack in your path. > > The default /etc/profile executes all scripts in /etc

Re: Compiling Apache2 under Cygwin with .so support

2005-09-28 Thread Max Bowsher
Tod wrote: I'm trying to compile Apache 2.0.54 under Cygwin. I do this because I like to keep the same configuration and file system organization to make my build as portable as possbile under the different Unices I work with. I like to compile apache with DSO support and all modules as shared

Re: Subversion 1.2.3-1: Attn.: Max Bowsher: Can't checkout on Win98SE :(

2005-09-28 Thread Max Bowsher
Alexey Lyubimov wrote: Hello Max! I have read your thread at tigris site. It seems to me that they do not want to do anything for Win98 users there :( Careful with the frownies! :-) "they" includes me, and it's not that we hate Win98 users, it's just a pretty low priority considering Win98 is

Re: cygblas.dll not found (lapack)

2005-09-28 Thread James R. Phillips
>Is there some reason that lapack can't put cygblas.dll into /usr/bin >instead of /usr/lib/lapack? Yes, and I'm glad you asked that. The lapack package is designed to facilitate the build/installation of locally optimized lapack/blas libraries using atlas, which is included in the lapack source

Can't Seem to Make a Non-Incremental Installation of Cygwin

2005-09-28 Thread Gary Morrison
I'm attempting to install Cygwin on a (rather wimpy - slow CPU & not much disk space) PC, and I keep running into a problem: In short, somebody installed it on this machine earlier, and didn't do that installation quite right. So, I decided to delete everything on the disk I could find relatin

Re: Can't Seem to Make a Non-Incremental Installation of Cygwin

2005-09-28 Thread Larry Hall
At 03:04 PM 9/28/2005, you wrote: >I'm attempting to install Cygwin on a (rather wimpy - slow CPU & not much disk >space) PC, and I keep running into a problem: > >In short, somebody installed it on this machine earlier, and didn't do that >installation quite right. So, I decided to delete every

Re: cygwin Digest 25 Sep 2005 20:51:19 -0000 Issue 4542

2005-09-28 Thread Fred Smith
> -- Forwarded message -- > From: Jason Tishler <[EMAIL PROTECTED]> > To: cygwin@cygwin.com > Date: Sat, 24 Sep 2005 16:51:11 -0400 > Subject: Re: rebase: rebaseall growing pains > Yaakov, > > On Fri, Sep 23, 2005 at 01:34:20PM -0500, Yaakov S wrote: > > Rebaseall is subject to "gro

5.4-3 libncurses-devel header files problem

2005-09-28 Thread Pete Klosterman
Hi, Installing the 5.4-3 libncurses-devel package did not produce the associated header files - in /usr/include/, there was a symlink from curses.h to ncurses/curses.h but there was no ncurses/ directory. Installing 5.4-2 libncurses-devel worked. Pete -- Unsubscribe info: http://cygw

bug in rmdir(2)

2005-09-28 Thread Eric Blake
POSIX requires resolving a filename with a trailing slash as though . were implicitly present, and requires rmdir(2) to fail with EINVAL if the final component is '.'. Therefore, both of these cases should fail rather than removing the directory: $ mkdir a b $ rmdir a/ b/. $ ls a b # Oops, r

Re: Compiling Apache2 under Cygwin with .so support

2005-09-28 Thread Max Bowsher
Please keep replies on the mailing list. I'm taking this conversation back on-list. Tod wrote: Max Bowsher wrote: Tod wrote: I'm trying to compile Apache 2.0.54 under Cygwin. I do this because I like to keep the same configuration and file system organization to make my build as portable as

Re: bug in rmdir(2)

2005-09-28 Thread Larry Hall
At 04:31 PM 9/28/2005, you wrote: >POSIX requires resolving a filename with a trailing slash as >though . were implicitly present, and requires rmdir(2) to fail >with EINVAL if the final component is '.'. Therefore, both of >these cases should fail rather than removing the directory: > >$ mkdir a

Re: cygwin Digest 25 Sep 2005 20:51:19 -0000 Issue 4542

2005-09-28 Thread Brian Dessent
Fred Smith wrote: > Which leads me to the dumb question (patience would be appreciated :) > What is rebase? what does it do? under what circumstances would I > want/need to do it? When created, every DLL has a base address which is the location in the virtual memory space that it was intended to

Re: bug in rmdir(2)

2005-09-28 Thread Eric Blake
> At 04:31 PM 9/28/2005, you wrote: > >POSIX requires resolving a filename with a trailing slash as > >though . were implicitly present, and requires rmdir(2) to fail > >with EINVAL if the final component is '.'. Therefore, both of > >these cases should fail rather than removing the directory: > >

Re: Exec and parent environment

2005-09-28 Thread Christopher Faylor
On Wed, Sep 28, 2005 at 11:31:28AM -0500, Joey Mukherjee wrote: >I am having a problem with some Cygwin compiled programs and am hoping >for some advice. I have a menu program which is started from the >Desktop by its icon. In this menu program, I modify the environment >for any child programs

Re: bug in rmdir(2)

2005-09-28 Thread Christopher Faylor
On Wed, Sep 28, 2005 at 04:46:45PM -0400, Larry Hall wrote: >At 04:31 PM 9/28/2005, you wrote: >>POSIX requires resolving a filename with a trailing slash as >>though . were implicitly present, and requires rmdir(2) to fail >>with EINVAL if the final component is '.'. Therefore, both of >>these ca

Re: bug in rmdir(2)

2005-09-28 Thread Larry Hall
At 06:26 PM 9/28/2005, you wrote: >> At 04:31 PM 9/28/2005, you wrote: >> >POSIX requires resolving a filename with a trailing slash as >> >though . were implicitly present, and requires rmdir(2) to fail >> >with EINVAL if the final component is '.'. Therefore, both of >> >these cases should fail

Re: 5.4-3 libncurses-devel header files problem

2005-09-28 Thread Charles Wilson
Pete Klosterman wrote: Hi, Installing the 5.4-3 libncurses-devel package did not produce the associated header files - in /usr/include/, there was a symlink from curses.h to ncurses/curses.h but there was no ncurses/ directory. Installing 5.4-2 libncurses-devel worked. Aw, crap. You're ri

Re: bug in rmdir(2)

2005-09-28 Thread Larry Hall
At 07:02 PM 9/28/2005, you wrote: >On Wed, Sep 28, 2005 at 04:46:45PM -0400, Larry Hall wrote: >>At 04:31 PM 9/28/2005, you wrote: >>>POSIX requires resolving a filename with a trailing slash as >>>though . were implicitly present, and requires rmdir(2) to fail >>>with EINVAL if the final component