Re: Cygwin help!!!

2006-11-01 Thread Brian Dessent
Wynfield Henman wrote: > Anja, >use backquotes ` instead of quotes ' for process substitution. > > Example use: > echo Today is `date` > or even > echo "Today is `date`" > > Cheers, >Henman YSHFRTT! http://cygwin.com/ml/cygwin/2006-10/msg01002.html (And besides $(date) is better th

Re: Problem building ImageMagick 6.3.0

2006-11-01 Thread Wynfield Henman
Modifying the configure.ac file may take away the "undefined CXX" messages, but it didn't do anything else in my case. I can only get a successfull build of ImageMagick by configuring as below: ./configure --without-perl To get rid of trying to build perlmagick Because makng PerlMagick fails

Re: Cygwin help!!!

2006-11-01 Thread Wynfield Henman
Anja, use backquotes ` instead of quotes ' for process substitution. Example use: echo Today is `date` or even echo "Today is `date`" Cheers, Henman On 10/30/06, anja_22 <[EMAIL PROTECTED]> wrote: Hallo, brauche drinegnd helfe mit CYGWIN ich wollte zum test folgenden befehl auf der Shell

Re: Problem building perl module of ImageMagick 6.3.0.1 [Attn. perl maintainer]

2006-11-01 Thread Yaakov S (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Volker Quetschke wrote: | When building PerlMagick from ImageMagick 6.3.0.1 the build fails | with the errorlog shown below. | | The problem seems to stem from the wrong order of link switches | in the MakeMaker generated makefile and can be fixed wit

Re: Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Sammy Yu
Hey guys, I really appreciate all the help. I made some changes to the cygload.cc program by adding a changing the main method into a init_cygwin_lib method and building it as a shared library. My C# application now calls this init_cygwin_lib, but when it does the application just mysteriously

Re: Cygintl-3.dll was not found

2006-11-01 Thread Christopher Faylor
On Wed, Nov 01, 2006 at 03:13:21PM -0800, infoterror wrote: >Christopher Faylor-2 wrote: >>Since you haven't been able to come up with any cygwin-specific >>information (or any information really), I'm declaring this topic over. >>If you want to continue in this vein, use cygwin-talk. This is your

Re: Newbie questions: missing packages / script writing

2006-11-01 Thread Larry Hall (Cygwin)
Buchbinder, Barry (NIH/NIAID) [E] wrote: on Tuesday, October 31, 2006 4:56 PM, [EMAIL PROTECTED] wrote: If you had read the list of available lists at http://cygwin.com/lists.html, you would have found the correct list. I did read that page (amongst my other research), but I guess I'm missing s

Re: Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Larry Hall (Cygwin)
Sammy Yu wrote: Hey guys, Thanks for the quick response. I've tried calling the cygwin_dll_init method but I'm still getting the same error. I think it's because of the 4K scratch space on stack size limitation mentioned here: http://sourceware.redhat.com/cygwin/faq/faq-nochunks.html. Is th

Re: Setup.exe requirements [was RE: Cygintl-3.dll was not found]

2006-11-01 Thread infoterror
Christopher Faylor-2 wrote: > > I'm not sure if you got my point or not but if you don't develop an > installer which deals with categories and dependencies, then I don't see > how it could be considered a replacement for setup.exe. If you do this, > then you don't need to list all of the pack

RE: Setup.exe requirements [was RE: Cygintl-3.dll was not found]

2006-11-01 Thread infoterror
Tevfik Karagülle wrote: > > In the first phase, I can think of producing a monolithic > installer for the core environment performing tasks > below: > > - Create basic cygwin registry mountpoints > - untar packages > - run the postinstall script > - Create start menu items and shortcuts (optio

Re: Cygintl-3.dll was not found

2006-11-01 Thread infoterror
Christopher Faylor-2 wrote: > > Since you haven't been able to come up with any cygwin-specific > information (or any information really), I'm declaring this topic over. > If you want to continue in this vein, use cygwin-talk. This is your > only warning. > I'm sorry you're having a tantrum.

RE: Newbie questions: missing packages / script writing

2006-11-01 Thread Buchbinder, Barry \(NIH/NIAID\) [E]
on Tuesday, October 31, 2006 4:56 PM, [EMAIL PROTECTED] wrote: >> If you had read the list of available lists at >> http://cygwin.com/lists.html, you would have found the correct list. > > I did read that page (amongst my other research), but I guess I'm > missing something obvious - what list is

Re: Cygin and quality tools

2006-11-01 Thread Mike Marchywka
>development, care about providing quality tools to their users (and I've been "selling" cygwin to a not-so-technical crowd for that reason. My wireless LAN card came with a utility ( that I paid for ) that gives me cute little pictures showing green or red wires between little pictures for

Re: Cygintl-3.dll was not found

2006-11-01 Thread Christopher Faylor
On Tue, Oct 31, 2006 at 05:36:26PM -0800, infoterror wrote: >Christopher Faylor-2 wrote: >>My second paragraph was stating that I didn't understand how you could >>come to the conclusion that only schools are keeping cygwin alive since >>there are clearly many messages from companies on this mailin

Re: Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Sammy Yu
Hey guys, Thanks for the quick response. I've tried calling the cygwin_dll_init method but I'm still getting the same error. I think it's because of the 4K scratch space on stack size limitation mentioned here: http://sourceware.redhat.com/cygwin/faq/faq-nochunks.html. Is this correct? Bein

RE: Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Dave Korn
On 01 November 2006 20:10, Larry Hall (Cygwin) wrote: > Sammy Yu wrote: >> One of the >> components built is a DLL which I want to invoke from a C Sharp >> application. However, the application crashes whenever I call this DLL >> via pinvoke in C Sharp. > You need to initialize the DLL. Loa

Re: Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Larry Hall (Cygwin)
Sammy Yu wrote: Hi guys, I'm trying to port an application onto Windows that was originally developed for UNIX using rpc, pthreads, and AF_UNIX sockets. I have used cygwin to compile this application successfully. One of the components built is a DLL which I want to invoke from a C Sharp app

Possible to use pinvoke to call DLL built with cygwin

2006-11-01 Thread Sammy Yu
Hi guys, I'm trying to port an application onto Windows that was originally developed for UNIX using rpc, pthreads, and AF_UNIX sockets. I have used cygwin to compile this application successfully. One of the components built is a DLL which I want to invoke from a C Sharp application. Howeve

[ANNOUNCEMENT] Updated cygwin package: gnupg-1.4.5-1

2006-11-01 Thread Volker Quetschke
gnupg-1.4.5-1 has been uploaded to cygwin.com DESCRIPTION === GNU Privacy Guard is GNU's tool for secure communication and data storage. It can be used to encrypt data and to create digital signatures. GnuPG is a complete and free replacement for PGP. It includes an advanced key managemen

Re: [patch] One more cygport bug

2006-11-01 Thread Volker Quetschke
Eric Blake wrote: > According to Volker Quetschke on 10/30/2006 7:59 AM: >> Hi! > >> $ cygport .cygport deps > >> doesn't report the dependencies. > >> The attached patch fixes this for me. > > Duplicate of this: > http://cygwin.com/ml/cygwin/2006-10/msg00852.html > and already fixed in cygport

Problem building perl module of ImageMagick 6.3.0.1 [Attn. perl maintainer]

2006-11-01 Thread Volker Quetschke
When building PerlMagick from ImageMagick 6.3.0.1 the build fails with the errorlog shown below. The problem seems to stem from the wrong order of link switches in the MakeMaker generated makefile and can be fixed with the attached patch to /lib/perl5/5.8/ExtUtils/MM_Unix.pm . Volker Runni

away from studio

2006-11-01 Thread DE HERMAN
Greetings, I will be away from my studio until November 9th. I will reply to messages after then. De -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

[ANNOUNCEMENT] Updated: perl-Win32-GUI-1.04-1

2006-11-01 Thread Reini Urban
NEWS: = I've updated the version of perl-Win32-GUI to the new upstream release 1.04. This version is the same as it would have been installed via CPAN, since all cygwin patches are included upstream. It just installs into vendor_perl. CHANGES: Quite a lot of new sub-modules. http:/

[ANNOUNCEMENT] Updated: clisp-2.41-1 for cygwin

2006-11-01 Thread Reini Urban
I've released the new upstream clisp-2.41 for cygwin. ./configure --fsstnd=redhat --with-dynamic-ffi \ --with-module=rawsock --with-module=dirkey \ --with-module=bindings/win32 --with-module=berkeley-db \ --with-module=pcre --with-module=postgresql \ --with-modul

[ANNOUNCEMENT] Updated: mathomatic-12.6.6-1

2006-11-01 Thread Reini Urban
A new upstream release with minor feature fixes. 10/01/06 - Improve user interface of solve command. 10/01/06 - Add alternate command syntax for sum and product commands. "sum x = 0 to 10" works the same as "sum x 0 10". 10/08/06 - Add "-r" option, which disables readline input process

RE: Mapping of \device\harddisk12 and beyond

2006-11-01 Thread Dave Korn
On 01 November 2006 14:37, Loh, Joe wrote: > Thanks for the feedback Dave. > > Is there a solution to getting more devices mapped without modifying the > Cygwin source? We test with Cygwin using distributed components only. > We do develop our own test components under Cygwin, so a programmatic

RE: Mapping of \device\harddisk12 and beyond

2006-11-01 Thread Loh, Joe
Thanks for the feedback Dave. Is there a solution to getting more devices mapped without modifying the Cygwin source? We test with Cygwin using distributed components only. We do develop our own test components under Cygwin, so a programmatic recommendation is acceptable. Mapping something lik

Re: error: C compiller cannot create executables

2006-11-01 Thread Brian Dessent
aliko wrote: > " #define SDCC_VERSION_STR "2.6.1 You've got stray \r's in source files, and I can only assume (since you refuse to follow instructions and attach a cygcheck output, I can only ASSUME) that you have binary mounts. This can happen if you unpacked the source tarball using a non-Cygw

Re: error: C compiller cannot create executables

2006-11-01 Thread aliko
Eric Blake пишет: -BEGIN PGP SIGNED MESSAGE- Somewhere in config.log should be a line that includes the text 'default output file name', and that will tell you why configure thinks your C compiler doesn't work. If you can't decipher that message, then send us the output of: grep -A50 'de

Re: convert does nothing

2006-11-01 Thread Brian Dessent
Fergus Daly wrote: > On my system (complete and up-to-date) the "convert" command achieves > nothing. E.g. after > convert file1.ps file2.jpg > the prompt is almost immediately returned. No error msg. And no > file2.jpg. How is it for you? The problem is due to a packaging issue. The 6.8

Re: How do I roll back to make 3.80 ?

2006-11-01 Thread Bill Hoffman
William Deegan wrote: Angelo, Have you tried the version of Make described here http://cygwin.com/ml/cygwin/2006-10/msg00296.html ? It is a 3.81 patched version that perhaps can solve your problems. Yes. Just found that. Seems to work fine. Though my build is not yet done. I'll followup when

Re: error: C compiller cannot create executables

2006-11-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to aliko on 11/1/2006 6:39 AM: > Hi! > > Please help me to solve that problem. When I'm trying to run ./configure > for some program (SDCC) I get erroneous message "C compiller cannot > create executables". You still have the typo, but at l

error: C compiller cannot create executables

2006-11-01 Thread aliko
Hi! Please help me to solve that problem. When I'm trying to run ./configure for some program (SDCC) I get erroneous message "C compiller cannot create executables". Here is the output: [EMAIL PROTECTED] /usr/local/dists/sdcc $ ./configure checking for gawk... gaw

Re: Bash 3.1.9 and 3.2.4: igncr setting not effective for 'source'd files

2006-11-01 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to David Picton on 10/31/2006 1:12 PM: > Unfortunately I have to report that both versions of bash don't > implement the igncr setting if > commands are read from a sourced file. Thanks for the report. I'll investigate it, and hopefully bas

Re: A tale of "../libtool: fork: Resource temporarily unavailable" issue.

2006-11-01 Thread Reini Urban
Eric Blake schrieb: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Ravi V on 10/31/2006 2:50 PM: A tale of "../libtool: fork: Resource temporarily unavailable" issue (cygcheck output attached). make -j1 will also help most likely. -- Reini -- Unsubscribe info: http://cygwin.

[ANNOUNCEMENT] Updated: lilypond-2.8.8-1

2006-11-01 Thread Jan Nieuwenhuizen
I've made a new version of LilyPond available for installation. This is a bugfix release. Changes * New upstream release. * Remove /etc/hints. * Remove curr from hints. * Remove /etc/postinstall. * Remove fonts.cache-1 files. * Documentation build fixes. * Remove signature and ps

[ANNOUNCEMENT] Updated: guile-1.8.1-2

2006-11-01 Thread Jan Nieuwenhuizen
I've made a new version of guile available for installation. This is a bugfix release. Changes * Add readline as build dependency, libreadline6 as dependency for libguile17 (thanks Ted Anderson). * Remove /etc/hints. * Remove curr from hints. For a brief description of this package,

[ANNOUNCEMENT] Updated: fontconfig-2.4.1-2

2006-11-01 Thread Jan Nieuwenhuizen
I've made a new version of fontconfig available. This is a bugfix release. Changes * Remove /etc/hints. * Doc in main package. * Remove curr from hints. * Add manual pages. * Remove old symlink in postinstall script. For a brief description of this package, and a listing of the files

Re: Cygintl-3.dll was not found

2006-11-01 Thread Corinna Vinschen
On Oct 31 17:36, infoterror wrote: > [...] Oh boy, stop it. It's a nice try of trolling but eventually it's getting tiresome. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin AT cygwin DOT com Red Hat -- Unsubscribe