Re: How to start apache in cygwin

2003-03-27 Thread Ronald Landheer-Cieslak
try $ cygrunsrv.exe --help If that doesn't help, read http://cygwin.com/bugs.html and get back with details HTH rlc On Thu, 27 Mar 2003, jklcom wrote: > Hi nalin, > > I've just installed cygwin 1.3.22-1. Can you show me how to start > apache within cygwin? > > Thanks > -Jeff > > > -- > U

Re: rpm 4 cygwin

2003-03-27 Thread Ronald Landheer-Cieslak
On Thu, 27 Mar 2003, Yann Crausaz wrote: > I'm afraid I've got to make a point clearer : porting RPM-4.1 to Cygwin > wasn't thought to install *NIX binaries under MS-Windows ! I will modify > the source of the ported version of RPM to prevent installing binaries > that were not built for MS-Windows

Re: RPM-4.1 port to Cygwin available

2003-03-27 Thread Ronald Landheer-Cieslak
On Thu, 27 Mar 2003, Yann Crausaz wrote: > Your views are right, BUT poeple who were use to work under *NIX (like > me) really like to find known tools as they have to change their working > environment , and poeple trying to execute *NIX binaries under Cygwin > will always exist ! Don't you think

Re: RPM-4.1 port to Cygwin available

2003-03-27 Thread Ronald Landheer-Cieslak
On Wed, 26 Mar 2003, Shankar Unni wrote: > Yann Crausaz wrote: > > The version of setup.exe I propose must be a bit old, isn't it ? If there's > > a real interest, I'm OK to care about the latest version, but will poeple > > really use RPM under Cygwin ? > The real benefit to porting RPM or apt-ge

Re: cygwin-developers mailing list archive

2003-03-26 Thread Ronald Landheer-Cieslak
You can still get the archives by FTP e.g.: wget ftp://sources.redhat.com/pub/cygwin/mail-archives/cygwin-developers-2003-01.bz2 HTH rlc NB: I faced the same "problem" - which is why I found the solution ;) On Wed, 26 Mar 2003, Elfyn McBratney wrote: > > I used to follow Cygwin's development

Re: setup.exe beta (testing needed - really!)

2003-03-26 Thread Ronald Landheer-Cieslak
Apparently it isn't there yet (or there's a type-o somewhere) $ wget http://www.cygwin.com/setup-snapshots/setup-2.340.2.2.exe --12:35:30-- http://www.cygwin.com/setup-snapshots/setup-2.340.2.2.exe => `setup-2.340.2.2.exe' Resolving www.cygwin.com... done. Connecting to www.cygwin.com[

Re: BlueZ g21 compiler

2003-03-26 Thread Ronald Landheer-Cieslak
On Wed, 26 Mar 2003, mehdi nahal wrote: > hello! > I downloaded cygwin because I don't have access to Linux. > I want to know if a package including g21 compiler exists and then if BlueZ > ( a GPL Bluetooth project) open source code is compatible with Cygwin. > I hope my question is not too silly

Re: Bash cut and paste

2003-03-25 Thread Ronald Landheer-Cieslak
Personally, I use rxvt, which allows me to select anything in the console and paste it anywhere else (selection == copying - no hotkeys needed) and use Shift-Ins to paste.. (or the middle mouse button, of course) HTH rlc NB: rxvt is a Cygwin package, of course On Tue, 25 Mar 2003, Gary Ash wro

Re: Using a central directory for cygwin installation

2003-03-25 Thread Ronald Landheer-Cieslak
Looks like you don't have permission to do something.. if you can read the dir, my guess is you don't have write access to the registry. Try adding the -u flag to the mount command. HTH rlc On Tue, 25 Mar 2003 [EMAIL PROTECTED] wrote: > Hello, > > I am planning a centralisation of my cygwin

Re: cant run binaries in cygwin

2003-03-25 Thread Ronald Landheer-Cieslak
How do you expect anyone to know the answer to your question with so little information? Have a look at http://cygwin.com/bugs.html and come back with the information we need to figure out your problem. rlc On Tue, 25 Mar 2003, Martin Gainty wrote: > Hello > ./bin/my_print_defaults: 1: Syntax e

Re: Starting .exe: DOS prompt OK, double-click not

2003-03-24 Thread Ronald Landheer-Cieslak
On Sat, 22 Mar 2003, Kodaj Bence wrote: [sbip] > (The actual Tcl/Tk installation on my machine is ActiveTcl 8.4., but > that's not really important.) Windows doesn't understand POSIX paths.. > Now, when I double-click on OurApp.exe in Windows Explorer, I get the > following error message from wis

Re: 1.3.20: [incr Tcl/Tk] interpreters missing - second try

2003-03-20 Thread Ronald Landheer-Cieslak
Have a look here http://cygwin.com/faq/faq_4.html#SEC29 and here http://sources.redhat.com/ml/cygwin/2003-02/msg00376.html and here http://sources.redhat.com/ml/cygwin/2003-02/msg00010.html rlc On Thu, 20 Mar 2003, Jerzy Witkowski wrote: > Hello, > > (since I did not receive any answer to my pr

Re: _init() and _fini() for dynamically loaded libraries?

2003-03-19 Thread Ronald Landheer-Cieslak
gcc supports a couple of special attributes for init and fini - type functions: __attribute__((constructor)) and __attribute__((destructor)) If you add void _init() __attribute__((constructor)); void _fini() __attribute__((destructor)); somewhere to the top of mylib.c, your example will work as

Re: Can I kill the process forked by 'GNU make' in Cygwin?

2003-03-19 Thread Ronald Landheer-Cieslak
You can use ``ps'' to find out the PID and ``kill'' to kill it. For example: if I want to kill my Mozilla browser (for some reason): $ ps -W | grep ozilla 68 0 0 68?0 12:35:00 ... $ /bin/kill --force -9 68 Note that I use /bin/kill because "kill" is a built-in

Re: cygwin 1.3.21 breaks ssh terminal interaction

2003-03-14 Thread Ronald Landheer-Cieslak
y machine) > regardless of how it is compiled (with -mno-cygwin or not). > From rxvt: Niether open a new console > From cmd: Niether open a new console > From Emacs: Both open a new console > > Ronald Landheer-Cieslak wrote: > > try using an AllocConsole() in your non-Cygwi

Re: cygwin 1.3.21 breaks ssh terminal interaction

2003-03-14 Thread Ronald Landheer-Cieslak
try using an AllocConsole() in your non-Cygwin app and in your Cygwin app, like so: #include #include #include #include // STC for the phantom console 1.3.21-1 problem inline void OpenConsole(void) { int hCrt; FILE * hf; if (AllocConsole()) { #ifndef __CYGWIN__ hCrt

Problem with doxygen on text-mounted dirs (patch supplied)

2003-03-14 Thread Ronald Landheer-Cieslak
Hello all, My /home is text mounted, which seems to cause doxygen some problems: none of the generated graphics are OK, and there is a problem while reading the doxyfile. Linking to binmode.o fixes the problem - as does the patch below (which does exactly that). I don't know if the same should

Re: INETD problem

2003-03-14 Thread Ronald Landheer-Cieslak
Sure! Have a look at: http://www/cygwin.com/bugs.html http://cygwin.com/faq/faq_4.html#SEC29 /usr/doc/Cygwin/inetutils-1.3.2.README and get back to us if you can't figure it out :) rlc On Fri, 14 Mar 2003, Zeke Gomez wrote: > Ok. I'm able to telnet into my machine from my computer using my ip ad

Re: follow-up on crlf regression (was Re: regression in current CVS)

2003-03-14 Thread Ronald Landheer-Cieslak
On Fri, 14 Mar 2003, Max Bowsher wrote: > Ronald Landheer-Cieslak wrote: > > If I followed the discussion on newlib at sources dot rehat dot com > > correctly, > I'm afraid you haven't followed the discussion correctly. The patch > isn't in yet. > >

follow-up on crlf regression (was Re: regression in current CVS)

2003-03-14 Thread Ronald Landheer-Cieslak
fails (version mismatch with the installed Cygwin1 DLL) but that's to be expected (as I haven't installed the DLL I just compiled - yet). All other tests work fine. HTH rlc PS: if this is a regression, I will be happy to do some digging, if needed On Wed, 12 Mar 2003, Ronald Landhee

Weird stuff in /proc/cpuinfo

2003-03-13 Thread Ronald Landheer-Cieslak
Hi y'all, Here's a snippet from `cat /proc/cpuinfo`: vendor id : GenuntelineI This should read GenuineIntel Note the ASCII art: Genu ineI ntel |\ / | \ / | X | / \ |/ \ Genu ntel ineI Looks like a word-swap gone wrong somew

Re: [ANNOUNCEMENT] Updated: lilypond-1.6.8-1 for Cygwin

2003-03-13 Thread Ronald Landheer-Cieslak
On Wed, 26 Feb 2003, Jan Nieuwenhuizen wrote: > http://cygwin.com/faq/faq_4.html#SEC32 ^^ This no longer points to the right FAQ (unless you really want it to point to "Why is Cygwin suddenly so slow?". I *think* you mean #34, but you'd have to check t

Re: bash script ->exe

2003-03-13 Thread Ronald Landheer-Cieslak
In that case, why not write a simple C program that simply does a system()? rlc On Thu, 13 Mar 2003, Yadin Y. Goldschmidt wrote: > Well, the need really originates from making a program called xmaxima > interface with a script maxima. xmaxima is a tcl program that is looking for > a maxima.exe b

Re: Installing cygwin NOT from web

2003-03-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Mar 2003, wrote: > I am trying to install cygwin on my computer at home, but I currently > don't have an internet connection. I have been trying to work out what > files I need to download for a full installation, but the website is not > clear. > Could you possibly confirm for me wheth

Re: setup snapshot?

2003-03-13 Thread Ronald Landheer-Cieslak
m to be OK. rlc On Thu, 13 Mar 2003, Max Bowsher wrote: > Ronald Landheer-Cieslak wrote: > > On Thu, 13 Mar 2003, Max Bowsher wrote: > >> Ronald Landheer-Cieslak wrote: > >>> I've just run the Setup snapshot on a fresh NT/4 machine > >>> $ uname --all &

Re: How to use ssmtp ?

2003-03-13 Thread Ronald Landheer-Cieslak
I have a hint for you: $ man ssmtp HTH rlc - Read That Funky Manual! (my preferred version of the RTFM acronym) On Thu, 13 Mar 2003, a12 wrote: > Hi gurus, > > Pardon my ignorance but I have searched thru cygwin.com and > have not found any docs about using ssmtp. > > Any hints will be great

Re: setup snapshot?

2003-03-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Mar 2003, Max Bowsher wrote: > Ronald Landheer-Cieslak wrote: > > I've just run the Setup snapshot on a fresh NT/4 machine > > $ uname --all > > CYGWIN_NT-4.0 nt4-rlandheer 1.3.21(0.77/3/2) 2003-03-12 00:24 i686 > > unknown unknown Cygwin > > Dur

Re: JNI multiple String problem

2003-03-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Mar 2003, Nicholas Burton wrote: > Yes I am lucky that you are working on JNI at the moment :^) > Thanks very much for your prompt and very helpful reply. You're quite welcome :) > I tried the gcc -mrtd flag and it did cure the problem. Good :) > I am not sure if I am running in rxvt.

Re: cygwin gcc 3.4 and cygwin

2003-03-13 Thread Ronald Landheer-Cieslak
On Wed, 12 Mar 2003, Brian Ford wrote: > Max Bowsher wrote: > >Brian Ford wrote: > >> I thought I had a legitimate concern and question, not one that > >> deserved "just" a sarcastic response. > >Yes, it was sarcastic, but don't take it personally. Chris is *busy* and > >this is quite a minor issu

Re: setup snapshot?

2003-03-13 Thread Ronald Landheer-Cieslak
I've just run the Setup snapshot on a fresh NT/4 machine $ uname --all CYGWIN_NT-4.0 nt4-rlandheer 1.3.21(0.77/3/2) 2003-03-12 00:24 i686 unknown unknown Cygwin During the post-install scripts, I got an error # 2453 from mkpasswd. The result is: $ id uid=400(RLandheer) gid=401(mkpasswd) groups=40

Re: kpsexpand: command not found

2003-03-13 Thread Ronald Landheer-Cieslak
http://cygwin.com/cgi-bin2/package-cat.cgi?file=tetex-bin/tetex-bin-2.0.2-1&grep=kpsexpand This will tell you it is in the tetex-bin package. Apparently, on of the packages you installed is missing a dependency (perhaps the package maintainer of the package you installed forgot to put it in the

Re: JNI multiple String problem

2003-03-12 Thread Ronald Landheer-Cieslak
e as follows: $ gcc -mrtd -g -c nativ.c $ gcc -shared -g -o cygnativ.dll nativ.o which fixes the last problems. Note that it still won't work from a Cygwin terminal (and I still don't know why not) but it will work from cmd. HTH rlc On Wed, 12 Mar 2003, Ronald Landheer-Cieslak

Re: regression in current CVS

2003-03-12 Thread Ronald Landheer-Cieslak
I actually read the developers list (and the CVS list, and the patches list, and the app list, and this one) but I hadn't made the link (yet) Thanx! rlc On Wed, 12 Mar 2003, Corinna Vinschen wrote: > On Wed, Mar 12, 2003 at 04:25:41PM +0100, Ronald Landheer-Cieslak wrote: &g

Re: cygwin gcc 3.4 and cygwin

2003-03-12 Thread Ronald Landheer-Cieslak
On Wed, 12 Mar 2003, Tim Prince wrote: > On Wednesday 12 March 2003 03:20, Ronald Landheer-Cieslak wrote: > > The cygwin target is i686-pc-cygwin > > > > That, and Cygwin without gcc would be pretty useless, so I don't worry too > > much :) > > > > r

regression in current CVS

2003-03-12 Thread Ronald Landheer-Cieslak
Hi all, I just built & checked current CVS on my NT/4 machine and found crlf.c failed in execution. Its output: crlf: Error at pc=13: ftell failed, got 0x0 expected 0x645 FAIL $ uname --all: CYGWIN_NT-4.0 nt4-rlandheer 1.3.22(0.78/3/2) 2003-03-12 15:07 i686 unknown unknown Cygwin HTH rlc

Re: setup snapshot?

2003-03-12 Thread Ronald Landheer-Cieslak
On 13 Mar 2003, Robert Collins wrote: > On Wed, 2003-03-12 at 22:01, Ronald Landheer-Cieslak wrote: > > I've had no problems with it so far (NT4 box) - but I've just been > > updating and installing a few new packages. > > > > Would you like me to tes

Re: JNI multiple String problem

2003-03-12 Thread Ronald Landheer-Cieslak
On Wed, 12 Mar 2003, Nicholas Burton wrote: [snip minimal description of problem] > I am using: > gcc version 3.2 20020927 (prerelease) that came with cygwin. > (I installed cygwin from the cygwin.exe file in January 2003) ^^ Don't you mean "with the setup.ex

Re: cygwin gcc 3.4 and cygwin

2003-03-12 Thread Ronald Landheer-Cieslak
The cygwin target is i686-pc-cygwin That, and Cygwin without gcc would be pretty useless, so I don't worry too much :) rlc BTW: the FSF-provided gcc doesn't work OOTB on Cygwin, IIRC: there are a couple of patches to apply and a bit of development to be done each time. You might say that ther

Re: setup snapshot?

2003-03-12 Thread Ronald Landheer-Cieslak
I've had no problems with it so far (NT4 box) - but I've just been updating and installing a few new packages. Would you like me to test a fresh install as well? rlc On 12 Mar 2003, Robert Collins wrote: > Any other feedback on the increment setup snapshot? > > It is meant to fix the permiss

Re: Testsuite

2003-03-07 Thread Ronald Landheer-Cieslak
On Fri, 7 Mar 2003, Corinna Vinschen wrote: > On Fri, Mar 07, 2003 at 03:52:07PM +0100, Ronald Landheer-Cieslak wrote: > > The results with cygwin-1.3.20-1 and with the latest snapshot are > > attached. > > > > # of expected passes240 > > # of unex

Testsuite

2003-03-07 Thread Ronald Landheer-Cieslak
Hello all, As I suggested in http://cygwin.com/ml/cygwin/2003-03/msg00111.html that it would be a good idea to run the testsuite against snapshots, and as I said in http://cygwin.com/ml/cygwin/2003-03/msg00195.html that I would do it anyway, I have made a Makefile (attached) that downloads the

Re: sound config

2003-03-07 Thread Ronald Landheer-Cieslak
Matthias, I don't think anyone on this list will know how to answer this particular question unless you provide some more info. I suggest you read: http://cygwin.com/faq/faq_4.html#SEC29 and perhaps: http://www.cygwin.com/bugs.html and get back to us when you've done that. rlc On Thu, 6 Mar 2

Re: Using the button to "Reply" (RE: setup.exe is too small)

2003-03-07 Thread Ronald Landheer-Cieslak
On Thu, 6 Mar 2003, Hannu E K Nevalainen (garbage mail) wrote: > > Yeah, why? I'm obviously on this mailing list, since I answered your > > question, so why did you decide to reply to me off list? > > Sorry for butting in... but I have been there myself. > > IMO there is one, not so obvious, mal

Re: inetd, xinetd

2003-03-05 Thread Ronald Landheer-Cieslak
Take a look here http://www.adamswann.com/library/2001/Cygwin-Inetd.html and read the man pages for inetd and/or xinetd. If you can't figure it out with that, provide more info on what your problem is. I.e. read this: http://www.cygwin.com/bugs.html and this http://cygwin.com/faq/faq_4.html#SEC2

Re: Testsuite as a package (was: Re: Was that the sound of a snapshotgoing off?)

2003-03-04 Thread Ronald Landheer-Cieslak
On Tue, 4 Mar 2003, Max Bowsher wrote: > On Tue, 4 Mar 2003, Ronald Landheer-Cieslak wrote: > > There is no *need* for a separate package - but it would make life > > easier for those who want to help regression testing. > And it would be extra work for Chris. I don't

Re: Malloc array size limit

2003-03-04 Thread Ronald Landheer-Cieslak
See if this helps http://cygwin.com/cygwin-ug-net/setup-maxmem.html rlc On Tue, 4 Mar 2003, Fabrizio Impagnatiello wrote: > I experienced run-time array memory allocation failure using cygwin1.dll > versions 1.3.14, 1.3.17, 1.3.18, 1.3.19, 1.3.20. > This trouble does not reveals using 1.3.12. >

Re: compiling setup.exe (was Re: Distributing .ISO files.)

2003-03-04 Thread Ronald Landheer-Cieslak
Ehm.. do you really think we're interested in the output of upx --help here? I mean: "UPX - Ultimate Packer for eXecutables; see for details" would have been more than enough, don't you think? rlc On Mon, 3 Mar 2003, Randall R Schulz wrote: > Robert, > > Upx. >

Re: Testsuite as a package (was: Re: Was that the sound of a snapshotgoing off?)

2003-03-04 Thread Ronald Landheer-Cieslak
On Mon, 3 Mar 2003, Christopher Faylor wrote: [snipped Igor's reply - already replied] > A few extra observations: You can't just run the testsuite on the > installed version of cygwin. It is meant to be run against > winsup/new-cygwin1.dll. So how do you work around that? Extract the > source

Re: Testsuite as a package (was: Re: Was that the sound of a snapshotgoing off?)

2003-03-04 Thread Ronald Landheer-Cieslak
On Mon, 3 Mar 2003, Igor Pechtchanski wrote: > On Mon, 3 Mar 2003, Ronald Landheer-Cieslak wrote: > > On Sun, 2 Mar 2003, Christopher Faylor wrote: > > > Please try the latest cygwin snapshot and report any problems or successes > > > here. The latest snapshot may be cl

Testsuite as a package (was: Re: Was that the sound of a snapshotgoing off?)

2003-03-03 Thread Ronald Landheer-Cieslak
On Sun, 2 Mar 2003, Christopher Faylor wrote: > Please try the latest cygwin snapshot and report any problems or successes > here. The latest snapshot may be close to cygwin 1.3.21. I would *love* to do that, but I have a WIBGI (Wouldn't It Be Great If ...) WIBGI the testsuite for Cygwin (the on

Re: cygwin as an acronym? (Was Re: Official List of cygwin Acronyms)

2003-03-03 Thread Ronald Landheer-Cieslak
On Mon, 3 Mar 2003, Christopher Faylor wrote: > On Mon, Mar 03, 2003 at 11:27:24AM +0100, Ronald Landheer-Cieslak wrote: > >How about a recursive acronym: "Cygwin: your greatest winner in > >necessities" > >;) > It's not mean enough. Can't you get w

Re: CYGWIN as an acronym? (Was Re: Official List of Cygwin Acronyms)

2003-03-03 Thread Ronald Landheer-Cieslak
How about a recursive acronym: "Cygwin: your greatest winner in necessities" ;) rlc On Sat, 1 Mar 2003, Igor Pechtchanski wrote: > Hey, I just had a thought: if we have an expansion for ACRONYM, we should > really have an expansion for CYGWIN, something like "Coolness You Get > Where Initially

Re: Bug in dumper

2003-03-01 Thread Ronald Landheer-Cieslak
don't like being mis-quoted :| rlc On Fri, 28 Feb 2003, Christopher Faylor wrote: > On Fri, Feb 28, 2003 at 10:10:25AM +0300, Egor Duda wrote: > >Ronald Landheer-Cieslak wrote: > >>>Does dumper.exe work? > > > >Well, i should have answered this, but unfortun

Re: Official List of Cygwin Acronyms

2003-03-01 Thread Ronald Landheer-Cieslak
Way cool! Some acronyms to add: OT - "Off Topic", the most-used acronym on this list (I think) PWBTC - "Patches will Be Thoughtfully Considered" (I think you have the trademark on this one, don't you?) WJM - "We're Just Mean" I've added it to my bookmarks - this will revolutionise the terseness

RE: how to run a process from DOS within a cygwin .bat file

2003-03-01 Thread Ronald Landheer-Cieslak
on, archives, yada, > yada, yada. > > BTW...I am not bashing the documentors or anything, just sick of seeing the > RTFM response. > > TlD > > -Original Message- > From: Ronald Landheer-Cieslak [mailto:[EMAIL PROTECTED] > Sent: Friday, February 28, 2003 5:46 AM >

Re: Algum brasileiro usa Cygwin ?

2003-02-28 Thread Ronald Landheer-Cieslak
On Fri, 28 Feb 2003, Frédéric L. W. Meunier wrote: > On Fri, 28 Feb 2003, Ronald Landheer-Cieslak wrote: > > Read http://cygwin.com/faq/faq_4.html#SEC29 > > Read http://www.cygwin.com/bugs.html > > Read `man term` > > and get back to us when you've done that. &g

Re: Algum brasileiro usa Cygwin ?

2003-02-28 Thread Ronald Landheer-Cieslak
On Fri, 28 Feb 2003, Igor Pechtchanski wrote: > On Fri, 28 Feb 2003, Ronald Landheer-Cieslak wrote: > > Read `man term` > FYI, "echo `man term`" returns something quite unreadable... Be careful > to use the right quotes next time, for newbies' sake. ;-) I usually

Re: how to run a process from DOS within a cygwin .bat file

2003-02-28 Thread Ronald Landheer-Cieslak
On Fri, 28 Feb 2003, gilles bourgeois wrote: > hello again > does someone knows how to launch a cygwin shell and further commands from > DOS, e.g with a help of a .bat file. > I had a look of cygwin.bat file but I do not know the right syntax to give > the command to the bash shell DOS as in "Disk

Re: Windows kbhit() function

2003-02-28 Thread Ronald Landheer-Cieslak
On Fri, 28 Feb 2003, Stickel, Uwe wrote: > I do have a Cygwin application (Windows 2000), which includes a kbhit() > function and the Windows ethernet socket for TCP/UDP communication. But > both doesn't work together. In this case I had to link the libmoldname.a > in order to use the kbhit() funct

Re: bash's (built-in) type command can not handle spaces in paths

2003-02-28 Thread Ronald Landheer-Cieslak
On Thu, 27 Feb 2003, Curtis Siemens wrote: > How To Reproduce: > - > Install Cygwin under c:\ or c:\cygwin - some directory that doesn't NEVER DO THAT! see http://cygwin.com/faq/faq_2.html#SEC9 rlc -- Unsubscribe inf

Re: Algum brasileiro usa Cygwin ?

2003-02-28 Thread Ronald Landheer-Cieslak
Read http://cygwin.com/faq/faq_4.html#SEC29 Read http://www.cygwin.com/bugs.html Read `man term` and get back to us when you've done that. IOW: YOWTHYWT (how do you expect anyone to answer you if you just say boo-hoo! it doesn't work!) rlc (am I as mean as cgf yet?) On Thu, 27 Feb 2003, Frédé

Re: Can someone please answer this question I've posted repeatedlyeven if it is just to say slag off

2003-02-27 Thread Ronald Landheer-Cieslak
On Thu, 27 Feb 2003, Christopher Faylor wrote: > On Wed, Feb 26, 2003 at 12:02:24PM -0500, Jon A. Lambert wrote: > >Does dumper.exe work? > >I am unable to get the dumper utility to produce a core dump. > >I have read the FAQ, the webpages and searched the mailing lists. > >My cygwin.bat startup fi

Re: LD_LIBRARY_PATH not accessible through java under cygwin forJNI

2003-02-27 Thread Ronald Landheer-Cieslak
On Thu, 27 Feb 2003, gilles bourgeois wrote: > hi folks, > I am currently using my JNI so/dll library under solaris, linux and cygwin. > with solaris and linux, no problem, I bind to it using load(..) since the > LD_LIBRARY_PATH is set. > BUT, under cygwin/windows, it does not work and I shall tell

Re: Can someone please answer this question I've posted repeatedlyeven if it is just to say slag off

2003-02-27 Thread Ronald Landheer-Cieslak
Yes, dumper.exe works. On Wed, 26 Feb 2003, Jon A. Lambert wrote: > Does dumper.exe work? > > I am unable to get the dumper utility to produce a core dump. > I have read the FAQ, the webpages and searched the mailing lists. > > My cygwin.bat startup file contains the following: > set CYGWIN=e

Re: cygwin-1.3.20-1 breaks termcaps, Re: Re: cygwin-1.3.20-1 breakstermcaps

2003-02-26 Thread Ronald Landheer-Cieslak
On Wed, 26 Feb 2003 [EMAIL PROTECTED] wrote: > On Wednesday, February 26, 2003 at 13:15:54, Ronald Landheer-Cieslak wrote: > > This won't help you fix your problem, but might stop you from > > running into new ones.. (see below) > o.k. so I keep with one installation ... G

Re: Process states in cygwin ?

2003-02-26 Thread Ronald Landheer-Cieslak
Why? rlc On Wed, 26 Feb 2003, Sergey Okhapkin wrote: > Probably > > else >status = 'R'; //running > > would be a good idea then? > > Sergey Okhapkin > Somerset, NJ > - Original Message - > From: "Ronald Landheer-Cies

Re: cygwin-1.3.20-1 breaks termcaps

2003-02-26 Thread Ronald Landheer-Cieslak
BTW: does the file /usr/share/terminfo/v/vt100 exist? If your programs complain about a non-existant terminfo file, that might be it. Pure conjecture and WAGing though! rlc On Wed, 26 Feb 2003, Ronald Landheer-Cieslak wrote: > This won't help you fix your problem, but might stop

Re: cygwin-1.3.20-1 breaks termcaps

2003-02-26 Thread Ronald Landheer-Cieslak
This won't help you fix your problem, but might stop you from running into new ones.. (see below) On Tue, 25 Feb 2003 [EMAIL PROTECTED] wrote: > On Tuesday, February 18, 2003 at 17:13:20, Robert Fenk wrote: > > On Tuesday, February 18, 2003 at 10:10:47, Igor Pechtchanski wrote: > > > On Tue, 18 F

Re: Process states in cygwin ?

2003-02-26 Thread Ronald Landheer-Cieslak
"Use the Source, Duke!" if (p->process_state & PID_STOPPED) status = 'S'; else if (p->process_state & PID_TTYIN) status = 'I'; else if (p->process_state & PID_TTYOU) status = 'O'; i.e.: S is stopped, I is input, O is output. (I should say, though, that t

Re: Duplicate cygwin

2003-02-20 Thread Ronald Landheer-Cieslak
45PM +0100, Ronald Landheer-Cieslak wrote: > >On Wed, 19 Feb 2003, Christopher Faylor wrote: > >> On Wed, Feb 19, 2003 at 12:15:59PM +0100, Ronald Landheer-Cieslak wrote: > >> >As Cliff Hones suggested (also yesterday), it may well be a good idea to > >> >start sup

Re: Duplicate cygwin

2003-02-19 Thread Ronald Landheer-Cieslak
On Wed, 19 Feb 2003, Christopher Faylor wrote: > On Wed, Feb 19, 2003 at 12:15:59PM +0100, Ronald Landheer-Cieslak wrote: > >As Cliff Hones suggested (also yesterday), it may well be a good idea to > >start supporting this kind of thing. If Ben wants to put some time and &g

Re: Duplicate CygWin

2003-02-19 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Max Bowsher wrote: > Ronald Landheer-Cieslak wrote: >> On Tue, 18 Feb 2003, Ben Clewett wrote: >>> - Get the different root '/' mount points to be respected. >> yes. > No. You need a different *set* of mounts. Not just one... therefore..

Re: Duplicate CygWin

2003-02-19 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Igor Pechtchanski wrote: > On Tue, 18 Feb 2003, Ronald Landheer-Cieslak wrote: >> On Tue, 18 Feb 2003, Igor Pechtchanski wrote: >>> User mounts and separate users. Each Windows user effectively has its own >>> mount table -- use that fact. De

Re: g++ and "undefined reference to `libintl_gettext'"

2003-02-18 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Reimann, Peter wrote: > I had also tried this "-lintl" but nothing changes. Please post your link command, entirely. rlc > This e-mail and any attachments is confidential and privileged. The > information is intended to be for the use of the individual(s) or > relevant Xerox

Re: how to freeze a version of cygwin

2003-02-18 Thread Ronald Landheer-Cieslak
You can save the download dir to a CDROM if you want. You can use it as a directory to install from later. This is safe and the way I do what you're trying to do - which I only do to have two computers with the same Cygwin installation without downloading the thing twice, btw. rlc On Tue, 18

Re: g++ and "undefined reference to `libintl_gettext'"

2003-02-18 Thread Ronald Landheer-Cieslak
Your linker can't find the symbols in gettext's library - make sure you're linking to it with the proper -l options. Read the info pages for info :) $ info gettext $ gcc -o main main.c -lintl ^^ rlc NB: make sure gettext is installed: if you get linker errors, try ins

Re: Duplicate CygWin

2003-02-18 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Igor Pechtchanski wrote: > User mounts and separate users. Each Windows user effectively has its own > mount table -- use that fact. Details in the User Guide/FAQ. The way I understand what he wants to do, he will be running the two as the same user, at the same time. User m

Re: Duplicate CygWin

2003-02-18 Thread Ronald Landheer-Cieslak
As first post on this subject (but with a bogus subject line) started with: "I need to have two copies of CygWin running. Really I do!", the use of chroot never came to my mind, but you're right: one $ chroot /full/path/to/new/tree should do it :) He'll have to make sure Cygwin1.dll is always fo

Re: Duplicate CygWin

2003-02-18 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Ben Clewett wrote: > I understand the problem with the shared memory. Just the same as old > network cards with conflicting memory address I guess ? not quite, but kinda... > So, to have two running hetrogenious cygwin's, which may be different > versions, I need: > - R

Re: Duplicate CygWin

2003-02-18 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Ben Clewett wrote: > (Sorry about incorrect subject on first posting) > > Noting:- It's not a cut down version of CygWin*.DLL I need, but a cut > down version of the file system, to just a couple of dozen files in > /bin, /tmp, /usr and /etc, forming a 'mini' UNIX for a spe

Re: [Problem] mempcpy is missing? (FAQ alert)

2003-02-18 Thread Ronald Landheer-Cieslak
On Tue, 18 Feb 2003, Ben Clewett wrote: > I need to have two copies of CygWin running. Really I do! The default > one in c:\cygwin and another very cutdown version running from > c:\Progra~1\my_public_app. > If it makes things easier, the second is a bespoke and does not need to > see the OS o

Re: Adding package ???

2003-02-14 Thread Ronald Landheer-Cieslak
Use Setup, add the proper package and behold - you have whatever you just installed ;) Setup, of course, is found on the http://www.cygwin.com website with a very nice link shows as the Cygwin logo :) Ciao, rlc On Fri, 14 Feb 2003, Guillaume Devoyon wrote: > How can i add the make command ??

RE: change /usr ?

2003-02-13 Thread Ronald Landheer-Cieslak
Please keep replies on the list On Thu, 13 Feb 2003, Guillaume Devoyon wrote: > i'm doing experiments in order to do this ... I saw on the site that it > could be an bad idear.. i'll see, i explain my project: > We use webmin in order to administrate an server under apache with perl, > mysql, etc

RE: change /usr ?

2003-02-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Feb 2003, Harald Kierer wrote: > > If Cygwin doesn't need the mount table to be OK to work, *wow* ;) > Actually you dont need no registry entries. For a minimal approach > on test PCs I only move the *.exe and *.dll from /bin to the > machine and start a shell. It "mounts" the drives to

Re: Memory for large arrays in cygwin/g77

2003-02-13 Thread Ronald Landheer-Cieslak
Cool - I'll redirect to that next time :) thx! rlc On Thu, 13 Feb 2003, Christopher Faylor wrote: > On Thu, Feb 13, 2003 at 10:20:58AM +0100, Ronald Landheer-Cieslak wrote: > >This is getting to be a FAQ... > > > >There is a (configurable) limit to the amount of memo

Re: change /usr ?

2003-02-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Feb 2003, Christopher Faylor wrote: > On Thu, Feb 13, 2003 at 03:27:34PM +0100, Ronald Landheer-Cieslak wrote: > >By the way: there is no problem with changing the name of the c:\cygwin > >directory but you can't do it from within Cygwin. The best (or easiest) &

RE: change /usr ?

2003-02-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Feb 2003, Harald Kierer wrote: > > Guilaume, > > > > You should think *very* carefully before doing this, but if you are > > *really* sure you want to, you can use the mount command to > > remount /usr > > from c:\cygwin\usr to c:\usr > > $ mount c:\usr /usr > > or > > $ mount -b c

Re: change /usr ?

2003-02-13 Thread Ronald Landheer-Cieslak
Guilaume, You should think *very* carefully before doing this, but if you are *really* sure you want to, you can use the mount command to remount /usr from c:\cygwin\usr to c:\usr $ mount c:\usr /usr or $ mount -b c:\usr /usr will do this for you. I should re-iterate, though, that this is prob

Re: Hello world and documentation

2003-02-13 Thread Ronald Landheer-Cieslak
On Thu, 13 Feb 2003, Guillaume Devoyon wrote: > i'm a newbie and i would like to have the documentation of the cygwin. > The only doc i found was online, is there an printable version ?? I've never tried printing the Cygwin docs, so I can't help you there. However, you don't have to surf the inter

Re: error on running which

2003-02-13 Thread Ronald Landheer-Cieslak
Hello Paulus, You're not giving anyone much to go on, but I'll WAG a bit anyway. Check whether you actually have gzip installed. If not, install it using Setup.exe (you can have a look at which package it is in my searching for gzip.exe and http://cygwin.com/packages/) If you do have gzip inst

Re: Memory for large arrays in cygwin/g77

2003-02-13 Thread Ronald Landheer-Cieslak
This is getting to be a FAQ... There is a (configurable) limit to the amount of memory Cygwin can allocate. Charles Werner explains this pretty well in: http://sources.redhat.com/ml/cygwin/2003-02/msg00234.html he also explains how to change the settings ciao rlc On Wed, 12 Feb 2003, Charles

Re: Malloc failing too soon under XP/2000

2003-02-12 Thread Ronald Landheer-Cieslak
Charles Werner explains this pretty well in: http://sources.redhat.com/ml/cygwin/2003-02/msg00234.html he also explains how to change the settings ciao rlc On Wed, 12 Feb 2003, Kris Warkentin wrote: > I'm running Windows XP with 1/2GB RAM and 2GB swap. Running Cygwin 1.3.18. > Consider the fol

Re: Getting undefined reference to `_libiconv_open'

2003-02-12 Thread Ronald Landheer-Cieslak
Of course, I *should* point you to http://cygwin.com/bugs.html and tell you to RTFM, but I'll do a couple of WAGs in stead You didn't link to libiconv - try using -liconv on your link line You might not even have libiconv installed - try installing it with Setup.exe *now* I will point you t

Re: New install, script execution, bad interpreter

2003-02-11 Thread Ronald Landheer-Cieslak
On Tue, 11 Feb 2003, john mapoles wrote: > bash: ./testAS: /usr/local/bin/perl: bad interpreter: > No such file or directory Look whether /usr/local/bin/perl exists - I bet it doesn't (because that's what it says: /usr/local/bin/perl: (...) No such file or directory > I've check a number of thing

Re: Anomaly during update by Setup.exe (re-post with compressedattachment)

2003-02-10 Thread Ronald Landheer-Cieslak
On Mon, 10 Feb 2003, Christopher Faylor wrote: > On Mon, Feb 10, 2003 at 12:03:48PM +0100, Ronald Landheer-Cieslak wrote: > >During the daily update this morning, I saw a slight anomaly while running > >Setup. I've attached the setup log. > It's a known problem, report

Anomaly during update by Setup.exe (re-post with compressed attachment)

2003-02-10 Thread Ronald Landheer-Cieslak
Hello all, During the daily update this morning, I saw a slight anomaly while running Setup. I've attached the setup log. This is what I got: after download, during un-installation (with no Cygwin applications running) I got a message box the cygwin1.dll was missing in the PATH - which is a bit

Re: Packaging software built with cygwin

2003-02-06 Thread Ronald Landheer-Cieslak
The way I read GPL (but please correct me if I'm wrong) you should be able to write a fork off the current Setup that installs the Hercules and gets the Cygwin from one of the mirrors (of which you can download the list at the time of installing from cygwin.com). Technically, you would not be d

Re: /usr/local/lib on library path

2003-02-06 Thread Ronald Landheer-Cieslak
Ehm.. why? Try a gcc -print-search-dirs on any *NIX of GNU box and see if /usr/local/lib is in there. On my Linux box, this gives: libraries: =/usr/lib/gcc-lib/i386-redhat-linux/3.2/:/usr/lib/gcc/i386-redhat-linux/3.2/:/usr/lib/gcc-lib/i386-redhat-linux/3.2/../../../../i386-redhat-linux/lib/i38

Re: /usr/local/lib on library path

2003-02-05 Thread Ronald Landheer-Cieslak
>From the gcc info (`info gcc`), chapter "Environment variables": `LIBRARY_PATH' The value of `LIBRARY_PATH' is a colon-separated list of directories, much like `PATH'. When configured as a native compiler, GCC tries the directories thus specified when searching for special lin

Re: gzip bzip2

2003-02-04 Thread Ronald Landheer-Cieslak
On Tue, 4 Feb 2003, Randall R Schulz wrote: > And your answer is by no means correct. ... which is why I corrected myself immediatly and said "ignore my previous message" Thanx for pointing it out anyway ;) rlc -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting:

<    1   2   3   4   >